/external/boringssl/src/ssl/test/runner/poly1305/ |
D | sum_ref.go | 18 r0 = uint64(binary.LittleEndian.Uint32(key[0:]) & 0x3ffffff) 19 r1 = uint64((binary.LittleEndian.Uint32(key[3:]) >> 2) & 0x3ffff03) 20 r2 = uint64((binary.LittleEndian.Uint32(key[6:]) >> 4) & 0x3ffc0ff) 21 r3 = uint64((binary.LittleEndian.Uint32(key[9:]) >> 6) & 0x3f03fff) 22 r4 = uint64((binary.LittleEndian.Uint32(key[12:]) >> 8) & 0x00fffff) 28 h0 += binary.LittleEndian.Uint32(msg[0:]) & 0x3ffffff 29 h1 += (binary.LittleEndian.Uint32(msg[3:]) >> 2) & 0x3ffffff 30 h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 0x3ffffff 31 h3 += (binary.LittleEndian.Uint32(msg[9:]) >> 6) & 0x3ffffff 32 h4 += (binary.LittleEndian.Uint32(msg[12:]) >> 8) | (1 << 24) [all …]
|
/external/vixl/src/ |
D | utils-vixl.h | 789 class Uint32 { 794 Uint32() { data_ = 0; } in Uint32() function 795 explicit Uint32(uint32_t data) : data_(data) {} in Uint32() function 796 inline explicit Uint32(Uint64 data); 803 Uint32 operator~() const { return Uint32(~data_); } 804 Uint32 operator-() const { return Uint32(-data_); } 805 bool operator==(Uint32 value) const { return data_ == value.data_; } 806 bool operator!=(Uint32 value) const { return data_ != value.data_; } 807 bool operator>(Uint32 value) const { return data_ > value.data_; } 808 Uint32 operator+(Uint32 value) const { return Uint32(data_ + value.data_); } [all …]
|
/external/skqp/tools/sk_app/ios/ |
D | Window_ios.h | 40 static const Uint32& GetKey(const Window_ios& w) { in GetKey() 44 static uint32_t Hash(const Uint32& winID) { in Hash() 53 static SkTDynamicHash<Window_ios, Uint32> gWindowMap; 56 Uint32 fWindowID;
|
/external/skia/tools/sk_app/ios/ |
D | Window_ios.h | 40 static const Uint32& GetKey(const Window_ios& w) { in GetKey() 44 static uint32_t Hash(const Uint32& winID) { in Hash() 53 static SkTDynamicHash<Window_ios, Uint32> gWindowMap; 56 Uint32 fWindowID;
|
/external/boringssl/src/ssl/test/runner/ |
D | chacha20_poly1305.go | 86 state[4+i] = binary.LittleEndian.Uint32(key[i*4 : i*4+4]) 91 state[14] = binary.LittleEndian.Uint32(nonce[0:4]) 92 state[15] = binary.LittleEndian.Uint32(nonce[4:8]) 94 state[13] = binary.LittleEndian.Uint32(nonce[0:4]) 95 state[14] = binary.LittleEndian.Uint32(nonce[4:8]) 96 state[15] = binary.LittleEndian.Uint32(nonce[8:12])
|
D | ticket.go | 139 s.ticketFlags = binary.BigEndian.Uint32(data) 141 s.ticketAgeAdd = binary.BigEndian.Uint32(data)
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Ability.lua | 19 return self.view:Get(flatbuffers.N.Uint32, self.view.pos + 0) 22 return self.view:Get(flatbuffers.N.Uint32, self.view.pos + 4)
|
/external/grpc-grpc/tools/http2_interop/ |
D | goaway.go | 39 StreamID: StreamID(binary.BigEndian.Uint32(raw[0:4]) & 0x7fffffff), 40 Code: binary.BigEndian.Uint32(raw[4:8]),
|
/external/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 16 local Uint32 = N.Uint32 231 self:Prep(Uint32.bytewidth, elemSize * numElements) 323 function mt:PrependUint32Slot(...) self:PrependSlot(Uint32, ...) end 352 function mt:PrependUint32(x) self:Prepend(Uint32, x) end
|
/external/libchrome/mojo/public/js/lib/ |
D | codec.js | 489 var payloadInterfaceIds = decoder.decodeArrayPointer(Uint32); 523 encoder.encodeArray(Uint32, payloadInterfaceIds); 672 this.encoder.encodeArrayPointer(Uint32, 784 function Uint32() { class 787 Uint32.encodedSize = 4; 789 Uint32.decode = function(decoder) { 793 Uint32.encode = function(encoder, val) { 1112 internal.Uint32 = Uint32;
|
/external/syzkaller/vendor/github.com/golang/protobuf/proto/ |
D | lib.go | 409 func Uint32(v uint32) *uint32 { func 658 case reflect.Uint32: 833 case reflect.Uint32: 864 case reflect.Uint32, reflect.Uint64: 895 case reflect.Uint32, reflect.Uint64:
|
D | clone.go | 148 reflect.String, reflect.Uint32, reflect.Uint64: 221 reflect.String, reflect.Uint32, reflect.Uint64:
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
D | frame.go | 245 StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1), 742 return binary.BigEndian.Uint32(buf[2:6]), true 757 binary.BigEndian.Uint32(buf[2:6]), 849 LastStreamID: binary.BigEndian.Uint32(p[:4]) & (1<<31 - 1), 850 ErrCode: ErrCode(binary.BigEndian.Uint32(p[4:8])), 895 inc := binary.BigEndian.Uint32(p[:4]) & 0x7fffffff // mask off high reserved bit 1100 v := binary.BigEndian.Uint32(payload[:4]) 1147 return &RSTStreamFrame{fh, ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil 1328 return p[4:], binary.BigEndian.Uint32(p[:4]), nil
|
/external/golang-protobuf/proto/ |
D | lib.go | 447 func Uint32(v uint32) *uint32 { func 696 case reflect.Uint32: 871 case reflect.Uint32: 902 case reflect.Uint32, reflect.Uint64: 933 case reflect.Uint32, reflect.Uint64:
|
D | all_test.go | 109 pb.F_Fixed32Defaulted = Uint32(Default_GoTest_F_Fixed32Defaulted) 111 pb.F_Uint32Defaulted = Uint32(Default_GoTest_F_Uint32Defaulted) 128 pb.F_Fixed32Required = Uint32(32) 130 pb.F_Uint32Required = Uint32(3232) 504 pb.F_Fixed32Defaulted = Uint32(32000) 506 pb.F_Uint32Defaulted = Uint32(323232) 592 pb.F_Fixed32Defaulted = Uint32(320) 594 pb.F_Uint32Defaulted = Uint32(3200) 653 pb.F_Fixed32Optional = Uint32(3232) 655 pb.F_Uint32Optional = Uint32(323232) [all …]
|
D | clone.go | 148 reflect.String, reflect.Uint32, reflect.Uint64: 221 reflect.String, reflect.Uint32, reflect.Uint64:
|
D | size_test.go | 98 {"fixed32", &pb.Defaults{F_Fixed32: Uint32(71)}}, 100 {"uint32", &pb.Defaults{F_Uint32: Uint32(123)}},
|
/external/gemmlowp/internal/ |
D | allocator.h | 46 enum class TypeId : std::uint8_t { Uint8, Int8, Uint16, Int16, Uint32, Int32 }; enumerator 69 GEMMLOWP_REGISTER_TYPEID(std::uint32_t, Uint32)
|
/external/tensorflow/tensorflow/go/ |
D | tensor.go | 42 Uint32 DataType = C.TF_UINT32 const 312 …16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, r… 330 …16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, r… 359 …16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, r… 371 …16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, r…
|
/external/v8/src/builtins/ |
D | builtins-sharedarraybuffer-gen.cc | 55 MachineType::Uint32()); in ValidateSharedTypedArray() 185 Return(ChangeUint32ToTagged(AtomicLoad(MachineType::Uint32(), backing_store, in TF_BUILTIN() 311 AtomicExchange(MachineType::Uint32(), backing_store, in TF_BUILTIN() 393 MachineType::Uint32(), backing_store, WordShl(index_word, 2), in TF_BUILTIN() 486 (this->*function)(MachineType::Uint32(), backing_store, in BINOP_BUILTIN()
|
/external/v8/src/ |
D | machine-type.h | 102 return (kPointerSize == 4) ? Uint32() : Uint64(); in UintPtr() 123 constexpr static MachineType Uint32() { in Uint32() function 210 return isSigned ? MachineType::Int32() : MachineType::Uint32();
|
/external/v8/src/wasm/ |
D | function-body-decoder-impl.h | 64 V(I32AtomicLoad, Uint32) \ 70 V(I64AtomicLoad32U, Uint32) \ 71 V(I32AtomicAdd, Uint32) \ 77 V(I64AtomicAdd32U, Uint32) \ 78 V(I32AtomicSub, Uint32) \ 84 V(I64AtomicSub32U, Uint32) \ 85 V(I32AtomicAnd, Uint32) \ 91 V(I64AtomicAnd32U, Uint32) \ 92 V(I32AtomicOr, Uint32) \ 98 V(I64AtomicOr32U, Uint32) \ [all …]
|
/external/vixl/src/aarch32/ |
D | disasm-aarch32.cc | 48 using internal::Uint32; 7092 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x2)) && in DecodeT32() 7102 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x2)) && in DecodeT32() 7112 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x0)) && in DecodeT32() 7121 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x0)) && in DecodeT32() 7130 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x1)) && in DecodeT32() 7140 if (((Uint32((instr >> 27)) & Uint32(0x3)) == Uint32(0x1)) && in DecodeT32() 8298 (BitCount(Uint32(mask)) != 1))) { in DecodeT32() 9200 if (((((Uint32((instr >> 26)) & Uint32(0x1)) in DecodeT32() 9202 ((Uint32((instr >> 12)) & Uint32(0x7)) in DecodeT32() [all …]
|
/external/syzkaller/pkg/serializer/ |
D | serializer.go | 55 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: 175 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
|
/external/libcxx/benchmarks/ |
D | algorithms.bench.cpp | 17 enum class ValueType { Uint32, String }; enumerator 24 std::conditional_t<V() == ValueType::Uint32, uint32_t, std::string>;
|