/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 | 795 class Uint32 { 800 Uint32() { data_ = 0; } in Uint32() function 801 explicit Uint32(uint32_t data) : data_(data) {} in Uint32() function 802 inline explicit Uint32(Uint64 data); 809 Uint32 operator~() const { return Uint32(~data_); } 810 Uint32 operator-() const { return Uint32(-data_); } 811 bool operator==(Uint32 value) const { return data_ == value.data_; } 812 bool operator!=(Uint32 value) const { return data_ != value.data_; } 813 bool operator>(Uint32 value) const { return data_ > value.data_; } 814 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/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/boringssl/src/util/fipstools/acvp/acvptool/subprocess/ |
D | subprocess.go | 98 numResults := binary.LittleEndian.Uint32(buf) 110 resultsLength += uint64(binary.LittleEndian.Uint32(buf[4*i:])) 125 length := binary.LittleEndian.Uint32(buf[4*i:])
|
/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]),
|
D | frameheader.go | 43 StreamID: StreamID(binary.BigEndian.Uint32(b[5:9]) & 0x7fffffff),
|
D | settings.go | 82 Value: binary.BigEndian.Uint32(raw[i+2 : i+6]),
|
/external/v8/src/codegen/ |
D | interface-descriptors.h | 1425 DEFINE_PARAMETER_TYPES(MachineType::Uint32(), // kLow 1426 MachineType::Uint32()) // kHigh 1443 DEFINE_RESULT_AND_PARAMETER_TYPES(MachineType::Uint32(), // result 1 1444 MachineType::Uint32(), // result 2 1453 DEFINE_RESULT_AND_PARAMETER_TYPES(MachineType::Uint32(), // result 1 1454 MachineType::Uint32(), // kAddress 1456 MachineType::Uint32(), // kTimeoutLow 1457 MachineType::Uint32()) // kTimeoutHigh 1468 MachineType::Uint32(), // result 1 1469 MachineType::Uint32(), // kAddress [all …]
|
D | machine-type.h | 123 return (kSystemPointerSize == 4) ? Uint32() : Uint64(); in UintPtr() 144 constexpr static MachineType Uint32() { in Uint32() function 207 return isSigned ? MachineType::Int32() : MachineType::Uint32();
|
/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/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/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)}},
|
D | table_merge.go | 194 case reflect.Int32, reflect.Uint32, reflect.Float32: 304 case reflect.Uint32: 323 *dfpp = Uint32(**sfpp)
|
/external/tensorflow/tensorflow/go/ |
D | tensor.go | 42 Uint32 DataType = C.TF_UINT32 const 317 …16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, r… 335 …16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, r… 364 …16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, r… 376 …16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, r…
|
/external/perfetto/src/trace_processor/importers/fuchsia/ |
D | fuchsia_trace_utils.h | 76 static ArgValue Uint32(uint32_t value) { in Uint32() function 139 uint32_t Uint32() const { in Uint32() function
|
/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/v8/src/compiler/ |
D | access-builder.cc | 55 MaybeHandle<Map>(), TypeCache::Get()->kInt32, MachineType::Uint32(), in ForBigIntBitfield() 65 MaybeHandle<Map>(), TypeCache::Get()->kInt32, MachineType::Uint32(), in ForBigIntOptionalPadding() 358 MaybeHandle<Map>(), TypeCache::Get()->kUint8, MachineType::Uint32(), in ForJSArrayBufferBitField() 686 Type::Unsigned32(), MachineType::Uint32(), in ForNameHashField() 698 MachineType::Uint32(), in ForStringLength() 1080 Type::Unsigned32(), MachineType::Uint32(), in ForTypedArrayElement() 1278 MaybeHandle<Map>(), TypeCache::Get()->kUint32, MachineType::Uint32(), in ForFeedbackVectorFlags()
|
/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>;
|