Home
last modified time | relevance | path

Searched defs:Int64 (Results 1 – 25 of 267) sorted by relevance

1234567891011

/aosp_15_r20/prebuilts/go/linux-x86/test/
D64bit.go32 type Int64 struct { struct
33 hi int32
34 lo uint32
37 func (a Uint64) Int64() (c Int64) { func
210 func (a Int64) Uint64() (c Uint64) {
216 func (a Int64) Cmp(b Int64) int {
233 func (a Int64) LeftShift(b uint) (c Int64) { return a.Uint64().LeftShift(b).Int64() }
235 func (a Int64) RightShift(b uint) (c Int64) {
250 func (a Int64) LeftShift64(b Uint64) (c Int64) {
257 func (a Int64) RightShift64(b Uint64) (c Int64) {
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/sync/atomic/
Dtype.go99 type Int64 struct { struct
100 _ noCopy
101 _ align64
102 v int64
106 func (x *Int64) Load() int64 { return LoadInt64(&x.v) }
109 func (x *Int64) Store(val int64) { StoreInt64(&x.v, val) }
112 func (x *Int64) Swap(new int64) (old int64) { return SwapInt64(&x.v, new) }
115 func (x *Int64) CompareAndSwap(old, new int64) (swapped bool) {
120 func (x *Int64) Add(delta int64) (new int64) { return AddInt64(&x.v, delta) }
124 func (x *Int64) And(mask int64) (old int64) { return AndInt64(&x.v, mask) }
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/runtime/atomic/
Dtypes.go64 type Int64 struct { struct
65 noCopy noCopy
66 _ align64
67 value int64
73 func (i *Int64) Load() int64 {
80 func (i *Int64) Store(value int64) {
89 func (i *Int64) CompareAndSwap(old, new int64) bool {
97 func (i *Int64) Swap(new int64) int64 {
108 func (i *Int64) Add(delta int64) int64 {
/aosp_15_r20/build/blueprint/parser/
H A Dast.go667 type Int64 struct { struct
668 LiteralPos scanner.Position
669 Value int64
670 Token string
673 func (x *Int64) Pos() scanner.Position { return x.LiteralPos }
674 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) }
676 func (x *Int64) Copy() Expression {
681 func (x *Int64) Eval(scope *Scope) (Expression, error) {
685 func (x *Int64) PrintfInto(value string) error {
689 func (x *Int64) MarkReferencedVariables(scope *Scope) {
[all …]
/aosp_15_r20/external/golang-protobuf/internal/testprotos/required/
H A Drequired.pb.go64 type Int64 struct { struct
65 state protoimpl.MessageState
66 sizeCache protoimpl.SizeCache
67 unknownFields protoimpl.UnknownFields
69 V *int64 `protobuf:"varint,1,req,name=v" json:"v,omitempty"`
72 func (x *Int64) Reset() {
81 func (x *Int64) String() string {
85 func (*Int64) ProtoMessage() {}
87 func (x *Int64) ProtoReflect() protoreflect.Message {
100 func (*Int64) Descriptor() ([]byte, []int) {
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DMDBuilder.cpp112 Type *Int64 = Type::getInt64Ty(Context); in createCallbackEncoding() local
203 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructNode() local
217 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructTypeNode() local
239 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAStructTagNode() local
252 Type *Int64 = Type::getInt64Ty(Context); in createTBAATypeNode() local
267 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAAccessTag() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/IR/
H A DMDBuilder.cpp112 Type *Int64 = Type::getInt64Ty(Context); in createCallbackEncoding() local
228 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructNode() local
242 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructTypeNode() local
264 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAStructTagNode() local
277 Type *Int64 = Type::getInt64Ty(Context); in createTBAATypeNode() local
292 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAAccessTag() local
/aosp_15_r20/external/golang-protobuf/internal/encoding/text/
H A Ddecode_test.go176 type Int64 struct { struct
177 val int64
180 func (n Int64) checkOk(tok text.Token) string {
191 func (n Int64) checkNok(tok text.Token) string {
/aosp_15_r20/external/llvm/lib/IR/
H A DMDBuilder.cpp132 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructNode() local
146 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructTypeNode() local
168 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAStructTagNode() local
/aosp_15_r20/prebuilts/vndk/v30/arm/include/external/jsoncpp/include/json/
Dconfig.h100 typedef __int64 Int64; typedef
103 typedef long long int Int64; typedef
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/external/jsoncpp/include/json/
Dconfig.h100 typedef __int64 Int64; typedef
103 typedef long long int Int64; typedef
/aosp_15_r20/prebuilts/vndk/v30/x86/include/external/jsoncpp/include/json/
Dconfig.h100 typedef __int64 Int64; typedef
103 typedef long long int Int64; typedef
/aosp_15_r20/prebuilts/vndk/v30/arm64/include/external/jsoncpp/include/json/
Dconfig.h100 typedef __int64 Int64; typedef
103 typedef long long int Int64; typedef
/aosp_15_r20/prebuilts/vndk/v33/x86/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v31/x86_64/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v31/arm64/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v33/arm64/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/external/jsoncpp/include/json/
H A Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v32/arm64/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v31/arm/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v33/arm/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v32/x86_64/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v33/x86_64/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v31/x86/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
/aosp_15_r20/prebuilts/vndk/v34/arm64/include/external/jsoncpp/include/json/
Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable

1234567891011