HomeSort by relevance Sort by last modified time
    Searched defs:bits (Results 51 - 75 of 1014) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstLiteral64.java 24 /** the value as {@code long} bits */
25 private final long bits; field in class:CstLiteral64
30 * @param bits the value as {@code long} bits
32 /*package*/ CstLiteral64(long bits) {
33 this.bits = bits;
41 bits == ((CstLiteral64) other).bits;
47 return (int) bits ^ (int) (bits >> 32)
    [all...]
CstLiteralBits.java 36 * Gets the value as {@code int} bits. If this instance contains
37 * more bits than fit in an {@code int}, then this returns only
38 * the low-order bits.
40 * @return the bits
45 * Gets the value as {@code long} bits. If this instance contains
46 * fewer bits than fit in a {@code long}, then the result of this
49 * @return the bits
54 * Returns true if this value can fit in 16 bits with sign-extension.
56 * @return true if the sign-extended lower 16 bits are the same as
64 int bits = getIntBits() local
79 int bits = getIntBits(); local
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstDouble.java 39 * @param bits the {@code double} value as {@code long} bits
41 public static CstDouble make(long bits) {
46 return new CstDouble(bits);
52 * @param bits the {@code double} value as {@code long} bits
54 private CstDouble(long bits) {
55 super(bits);
61 long bits = getLongBits(); local
62 return "double{0x" + Hex.u8(bits) + " / "
    [all...]
CstFloat.java 40 * @param bits the {@code float} value as {@code int} bits
42 public static CstFloat make(int bits) {
47 return new CstFloat(bits);
53 * @param bits the {@code float} value as {@code int} bits
55 private CstFloat(int bits) {
56 super(bits);
62 int bits = getIntBits(); local
63 return "float{0x" + Hex.u4(bits) + " / "
    [all...]
CstLiteral32.java 24 /** the value as {@code int} bits */
25 private final int bits; field in class:CstLiteral32
30 * @param bits the value as {@code int} bits
32 /*package*/ CstLiteral32(int bits) {
33 this.bits = bits;
41 bits == ((CstLiteral32) other).bits;
47 return bits;
    [all...]
CstLiteral64.java 24 /** the value as {@code long} bits */
25 private final long bits; field in class:CstLiteral64
30 * @param bits the value as {@code long} bits
32 /*package*/ CstLiteral64(long bits) {
33 this.bits = bits;
41 bits == ((CstLiteral64) other).bits;
47 return (int) bits ^ (int) (bits >> 32)
    [all...]
CstLiteralBits.java 36 * Gets the value as {@code int} bits. If this instance contains
37 * more bits than fit in an {@code int}, then this returns only
38 * the low-order bits.
40 * @return the bits
45 * Gets the value as {@code long} bits. If this instance contains
46 * fewer bits than fit in a {@code long}, then the result of this
49 * @return the bits
54 * Returns true if this value can fit in 16 bits with sign-extension.
56 * @return true if the sign-extended lower 16 bits are the same as
64 int bits = getIntBits() local
79 int bits = getIntBits(); local
    [all...]
  /development/ndk/platforms/android-14/include/android/
native_window.h 52 // The actual bits.
53 void* bits; member in struct:ANativeWindow_Buffer
  /development/ndk/platforms/android-9/include/android/
native_window.h 52 // The actual bits.
53 void* bits; member in struct:ANativeWindow_Buffer
  /external/aac/libMpegTPEnc/src/
tpenc_adts.cpp 101 int mBits /*!< number of bits in crc region */
124 int bits = 0; local
127 /* Static and variable header bits */
128 bits = 56;
130 /* Add header/ single raw data block CRC bits */
131 bits += 16;
133 /* Add bits of raw data block position markers */
134 bits += (hAdts->num_raw_blocks)*16;
139 /* Add raw data block CRC bits. Not really part of the header, put they cause bit overhead to be accounted. */
140 bits += 16
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RC2Parameters.java 9 private int bits; field in class:RC2Parameters
19 int bits)
22 this.bits = bits;
34 return bits;
  /external/chromium_org/crypto/
p224_spake_unittest.cc 99 const size_t bits = m->size() * 8; local
100 const size_t bit_to_corrupt = (rand >> 3) % bits;
  /external/chromium_org/media/cast/rtp_receiver/rtp_parser/
rtp_parser.cc 45 uint8 bits; local
46 if (!reader.ReadU8(&bits))
48 const uint8 version = bits >> 6;
51 if (bits & kRtpExtensionBitMask)
53 if (!reader.ReadU8(&bits))
55 header->marker = !!(bits & kRtpMarkerBitMask);
56 header->payload_type = bits & ~kRtpMarkerBitMask;
70 if (!reader.ReadU8(&bits))
72 header->is_key_frame = !!(bits & kCastKeyFrameBitMask);
74 !!(bits & kCastReferenceFrameIdBitMask)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
event_emitter.cc 54 uint32_t bits = it->second & event_bits; local
55 if (0 != bits)
56 it->first->ReceiveEvents(this, bits);
  /external/chromium_org/printing/
image_win.cc 69 unsigned char* bits = NULL; local
72 reinterpret_cast<void**>(&bits), NULL, 0));
84 data_.assign(bits, bits + bytes);
  /external/chromium_org/third_party/libwebp/utils/
bit_reader_inl.h 38 #if (BITS > 32)
40 #elif (BITS > 16)
42 #elif (BITS > 8)
57 // makes sure br->value_ has at least BITS bits worth of data
60 // Read 'BITS' bits at a time if possible.
63 bit_t bits; local
84 br->buf_ += BITS >> 3;
86 #if (BITS > 32
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
prime.c 66 int bits=0; local
85 else if(!strcmp(*argv,"-bits"))
89 bits=atoi(*++argv);
127 if(!bits)
129 BIO_printf(bio_err,"Specifiy the number of bits.\n");
133 BN_generate_prime_ex(bn,bits,safe,NULL,NULL,NULL);
  /external/chromium_org/third_party/skia/bench/
PathUtilsBench.cpp 20 static void fillRandomBits( int chars, char* bits ){
24 bits[i] = rand.nextU();
28 static void path_proc(char* bits, SkPath* path) {
29 SkPathUtils::BitsToPath_Path(path, bits, H, W, STRIDE);
32 static void region_proc(char* bits, SkPath* path) {
33 SkPathUtils::BitsToPath_Region(path, bits, H, W, STRIDE);
42 char* bits[H * STRIDE]; member in class:PathUtilsBench
59 fillRandomBits(H * STRIDE, (char*) &bits);
63 fProc( (char*) &bits, &path);
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/include/
spl_inl.h 49 int bits; local
52 bits = 16;
54 bits = 0;
56 if (0x0000FF00 & (n >> bits)) bits += 8;
57 if (0x000000F0 & (n >> bits)) bits += 4;
58 if (0x0000000C & (n >> bits)) bits += 2;
59 if (0x00000002 & (n >> bits)) bits += 1
    [all...]
  /external/chromium_org/third_party/zlib/
inftrees.h 14 table that indexes more bits of the code. op indicates whether
17 pointer, the low four bits of op is the number of index bits of
18 that table. For a length or distance, the low four bits of op
19 is the number of extra bits to get after the code. bits is
20 the number of bits in this code or part of the code to drop off
25 unsigned char op; /* operation, extra bits, table bits */
26 unsigned char bits; /* bits in this part of the code * member in struct:__anon20310
    [all...]
  /external/chromium_org/v8/src/arm64/
utils-arm64.h 27 uint32_t bits = 0; local
28 memcpy(&bits, &value, 4);
29 return bits;
34 uint64_t bits = 0; local
35 memcpy(&bits, &value, 8);
36 return bits;
40 static inline float rawbits_to_float(uint32_t bits) {
42 memcpy(&value, &bits, 4);
47 static inline double rawbits_to_double(uint64_t bits) {
49 memcpy(&value, &bits, 8)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstDouble.java 39 * @param bits the {@code double} value as {@code long} bits
41 public static CstDouble make(long bits) {
46 return new CstDouble(bits);
52 * @param bits the {@code double} value as {@code long} bits
54 private CstDouble(long bits) {
55 super(bits);
61 long bits = getLongBits(); local
62 return "double{0x" + Hex.u8(bits) + " / "
    [all...]
CstFloat.java 40 * @param bits the {@code float} value as {@code int} bits
42 public static CstFloat make(int bits) {
47 return new CstFloat(bits);
53 * @param bits the {@code float} value as {@code int} bits
55 private CstFloat(int bits) {
56 super(bits);
62 int bits = getIntBits(); local
63 return "float{0x" + Hex.u4(bits) + " / "
    [all...]
CstLiteral32.java 24 /** the value as {@code int} bits */
25 private final int bits; field in class:CstLiteral32
30 * @param bits the value as {@code int} bits
32 /*package*/ CstLiteral32(int bits) {
33 this.bits = bits;
41 bits == ((CstLiteral32) other).bits;
47 return bits;
    [all...]
CstLiteral64.java 24 /** the value as {@code long} bits */
25 private final long bits; field in class:CstLiteral64
30 * @param bits the value as {@code long} bits
32 /*package*/ CstLiteral64(long bits) {
33 this.bits = bits;
41 bits == ((CstLiteral64) other).bits;
47 return (int) bits ^ (int) (bits >> 32)
    [all...]

Completed in 1699 milliseconds

1 23 4 5 6 7 8 91011>>