HomeSort by relevance Sort by last modified time
    Searched refs:uint128_t (Results 1 - 7 of 7) sorted by null

  /external/valgrind/memcheck/tests/vbit-test/
vbits.h 33 typedef uint64_t uint128_t[2]; typedef
44 uint128_t u128;
58 uint128_t u128;
  /frameworks/av/media/mtp/
MtpDataPacket.h 54 bool getUInt128(uint128_t& value);
55 inline bool getInt128(int128_t& value) { return getUInt128((uint128_t&)value); }
76 void putUInt128(const uint128_t& value);
MtpTypes.h 27 typedef uint32_t uint128_t[4]; typedef in namespace:android
MtpProperty.h 37 uint128_t u128;
MtpDataPacket.cpp 90 bool MtpDataPacket::getUInt128(uint128_t& value) {
312 void MtpDataPacket::putUInt128(const uint128_t& value) {
  /external/boringssl/src/crypto/ec/
p256-64.c 40 typedef __uint128_t uint128_t; typedef
89 typedef uint128_t limb;
423 a = ((uint128_t)small[0]) * small[0];
429 a = ((uint128_t)small[0]) * small[1];
436 a = ((uint128_t)small[0]) * small[2];
443 a = ((uint128_t)small[0]) * small[3];
449 a = ((uint128_t)small[1]) * small[2];
456 a = ((uint128_t)small[1]) * small[1];
462 a = ((uint128_t)small[1]) * small[3];
469 a = ((uint128_t)small[2]) * small[3]
    [all...]
  /external/boringssl/src/crypto/poly1305/
poly1305_vec.c 36 typedef unsigned __int128 uint128_t; typedef
44 static uint128_t INLINE add128(uint128_t a, uint128_t b) { return a + b; }
46 static uint128_t INLINE add128_64(uint128_t a, uint64_t b) { return a + b; }
48 static uint128_t INLINE mul64x64_128(uint64_t a, uint64_t b) {
49 return (uint128_t)a * b;
52 static uint64_t INLINE lo128(uint128_t a) { return (uint64_t)a; }
54 static uint64_t INLINE shr128(uint128_t v, const int shift)
    [all...]

Completed in 103 milliseconds