HomeSort by relevance Sort by last modified time
    Searched defs:bits (Results 126 - 150 of 1549) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/okhttp/okio/okio/src/main/java/okio/
Base64.java 48 int bits; local
53 bits = c - 65;
58 bits = c - 71;
63 bits = c + 4;
65 bits = 62;
67 bits = 63;
74 // Append this char's 6 bits to the word.
75 word = (word << 6) | (byte) bits;
77 // For every 4 chars of input, we accumulate 24 bits of output. Emit 3 bytes.
88 // We read 1 char followed by "===". But 6 bits is a truncated byte! Fail
    [all...]
  /external/skia/tests/
SRGBTest.cpp 37 union { float flt; uint32_t bits; } pun = { f }; member in union:__anon34320
38 pun.bits++;
39 SkDEBUGCODE(pun.bits += 127);
  /external/skqp/tests/
SRGBTest.cpp 37 union { float flt; uint32_t bits; } pun = { f }; member in union:__anon34989
38 pun.bits++;
39 SkDEBUGCODE(pun.bits += 127);
  /external/toybox/toys/posix/
du.c 63 int bits = 10; local
65 if (toys.optflags & FLAG_K) bits = 9;
66 else if (toys.optflags & FLAG_m) bits = 20;
68 printf("%llu", (size>>bits)+!!(size&((1<<bits)-1)));
  /external/v8/src/arm64/
utils-arm64.h 21 uint32_t bits = 0; local
22 memcpy(&bits, &value, 4);
23 return bits;
28 uint64_t bits = 0; local
29 memcpy(&bits, &value, 8);
30 return bits;
34 static inline float rawbits_to_float(uint32_t bits) {
36 memcpy(&value, &bits, 4);
41 static inline double rawbits_to_double(uint64_t bits) {
43 memcpy(&value, &bits, 8)
    [all...]
  /external/webp/src/utils/
huffman_utils.h 34 uint8_t bits; // number of bits used for this symbol member in struct:__anon43783
40 int bits; // number of bits used for this symbol, member in struct:__anon43784
66 // table mapping input bits to a packed values, or escape case to literal code
  /frameworks/base/tools/bit/
adb.cpp 87 uint32_t bits = 0; local
98 result |= uint64_t(byte & 0x7F) << bits;
102 bits += 7;
103 if (bits > 64) {
  /frameworks/native/libs/nativewindow/include/android/
native_window.h 47 /** Red: 8 bits, Green: 8 bits, Blue: 8 bits, Alpha: 8 bits. **/
49 /** Red: 8 bits, Green: 8 bits, Blue: 8 bits, Unused: 8 bits. **/
51 /** Red: 5 bits, Green: 6 bits, Blue: 5 bits. **
102 void* bits; member in struct:ANativeWindow_Buffer
    [all...]
  /prebuilts/go/darwin-x86/test/
float_lit2.go 43 bits uint64 // keep us honest
67 // These are required to work: according to the Go spec, the internal float mantissa must be at least 256 bits,
102 // The mantissas are exactly 256 bits.
135 if bits(c.exact) != c.bits {
137 fmt.Printf("%s: inconsistent table: bits=%#x (%g) but exact=%g (%#x)\n", c.text, c.bits, fromBits(c.bits, c.exact), c.exact, bits(c.exact))
139 if c.approx != c.exact || bits(c.approx) != c.bits
146 func bits(x interface{}) interface{} { func
    [all...]
  /prebuilts/go/linux-x86/test/
float_lit2.go 43 bits uint64 // keep us honest
67 // These are required to work: according to the Go spec, the internal float mantissa must be at least 256 bits,
102 // The mantissas are exactly 256 bits.
135 if bits(c.exact) != c.bits {
137 fmt.Printf("%s: inconsistent table: bits=%#x (%g) but exact=%g (%#x)\n", c.text, c.bits, fromBits(c.bits, c.exact), c.exact, bits(c.exact))
139 if c.approx != c.exact || bits(c.approx) != c.bits
146 func bits(x interface{}) interface{} { func
    [all...]
  /bionic/libm/
fpmath.h 33 // - android uses 128 bits long doubles for LP64, so the structure and macros
46 } bits; member in union:IEEEf2bits
59 } bits; member in union:IEEEd2bits
71 } bits; member in union:IEEEl2bits
87 (a)[0] = (uint32_t)(u).bits.manl; \
88 (a)[1] = (uint32_t)((u).bits.manl >> 32); \
89 (a)[2] = (uint32_t)(u).bits.manh; \
90 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form21h.java 88 // Where the high bits are depends on the category of the target.
90 int bits = cb.getIntBits(); local
91 return ((bits & 0xffff) == 0);
93 long bits = cb.getLongBits(); local
94 return ((bits & 0xffffffffffffL) == 0);
109 short bits; local
111 // Where the high bits are depends on the category of the target.
113 bits = (short) (cb.getIntBits() >>> 16);
115 bits = (short) (cb.getLongBits() >>> 48);
118 write(out, opcodeUnit(insn, regs.get(0).getReg()), bits);
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java 93 BitSet bits = new BitSet(1); local
95 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg()));
96 return bits;
Form12x.java 114 BitSet bits = new BitSet(2); local
120 bits.set(0, unsignedFitsInNibble(r0));
121 bits.set(1, unsignedFitsInNibble(r1));
126 bits.set(0, false);
127 bits.set(1, false);
130 bits.set(0, dstRegComp);
131 bits.set(1, dstRegComp);
134 bits.set(2, unsignedFitsInNibble(regs.get(2).getReg()));
142 return bits;
Form21c.java 127 BitSet bits = new BitSet(sz); local
131 bits.set(0, compat);
134 bits.set(0, compat);
135 bits.set(1, compat);
139 return bits;
Form21h.java 89 // Where the high bits are depends on the category of the target.
91 int bits = cb.getIntBits(); local
92 return ((bits & 0xffff) == 0);
94 long bits = cb.getLongBits(); local
95 return ((bits & 0xffffffffffffL) == 0);
103 BitSet bits = new BitSet(1); local
105 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
106 return bits;
114 short bits; local
116 // Where the high bits are depends on the category of the target
    [all...]
Form21s.java 92 BitSet bits = new BitSet(1); local
94 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
95 return bits;
Form22b.java 94 BitSet bits = new BitSet(2); local
96 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
97 bits.set(1, unsignedFitsInByte(regs.get(1).getReg()));
98 return bits;
Form22s.java 94 BitSet bits = new BitSet(2); local
96 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg()));
97 bits.set(1, unsignedFitsInNibble(regs.get(1).getReg()));
98 return bits;
Form31c.java 118 BitSet bits = new BitSet(sz); local
122 bits.set(0, compat);
125 bits.set(0, compat);
126 bits.set(1, compat);
130 return bits;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inffast.c 46 state->bits < 8
56 - The maximum input bits used by a length/distance pair is 15 bits for the
57 length code, 5 bits for the length extra, 15 bits for the distance code,
58 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
85 unsigned bits; /* local strm->bits */ local
91 unsigned op; /* code bits, operation, extra bits, or */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inffast.c 46 state->bits < 8
56 - The maximum input bits used by a length/distance pair is 15 bits for the
57 length code, 5 bits for the length extra, 15 bits for the distance code,
58 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
85 unsigned bits; /* local strm->bits */ local
91 unsigned op; /* code bits, operation, extra bits, or */
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inffast.c 29 state->bits < 8
39 - The maximum input bits used by a length/distance pair is 15 bits for the
40 length code, 5 bits for the length extra, 15 bits for the distance code,
41 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
68 unsigned bits; /* local strm->bits */ local
74 unsigned op; /* code bits, operation, extra bits, or *
    [all...]
  /external/ImageMagick/coders/
wbmp.c 326 bits,
338 bits=28;
342 octet=(unsigned char) ((value >> bits) & 0x7f);
349 bits-=7;
321 bits, local
  /external/aac/libFDK/src/
FDK_crc.cpp 322 * \brief Calculate crc bits.
331 * \param nBits Number of processing bits.
333 * \return Number of processed bits.
373 * \return Number of processed bits.
383 INT bits; local
395 bits = (nBytes & 3) << 3;
396 if (bits > 0) {
397 data = (ULONG)FDKreadBits(hBs, bits);
398 for (bits -= 8; bits >= 0; bits -= 8
442 int bits, rBits; local
    [all...]

Completed in 916 milliseconds

1 2 3 4 56 7 8 91011>>