HomeSort by relevance Sort by last modified time
    Searched defs:bits (Results 101 - 125 of 396) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/webkit/glue/
webcursor_gtk.cc 34 GdkPixmap* source = gdk_bitmap_create_from_data(NULL, custom.bits,
55 const char bits[] = { 0 }; local
57 GdkPixmap* bitmap = gdk_bitmap_create_from_data(NULL, bits, 1, 1);
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 103 unsigned bits = Ctx.getTypeSize(T); local
104 llvm::APSInt V(bits,
  /external/clang/test/CodeGenCXX/
2007-01-06-PtrMethodInit.cpp 57 PRUint8 bits; member in struct:EventDispatchData
  /external/dropbear/libtomcrypt/src/ciphers/
rc2.c 75 int i, bits; local
99 /* Phase 2 - reduce effective key size to "bits" */
100 bits = keylen<<3;
101 T8 = (unsigned)(bits+7)>>3;
102 TM = (255 >> (unsigned)(7 & -bits));
  /external/flac/libFLAC/
fixed.c 58 /* rbps stands for residual bits per sample
67 unsigned bits; /* the number of bits required to represent a number */ local
68 int fracbits; /* the number of bits of rbps that comprise the fractional part */
78 * The above two things tell us 1) n fits in 16 bits; 2) err/n > 1.
87 /* err now holds err/n with fracbits fractional bits */
90 * Whittle err down to 16 bits max. 16 significant bits is enough for
94 bits = FLAC__bitmath_ilog2(err)+1;
95 if(bits > 16)
146 unsigned bits; \/* the number of bits required to represent a number *\/ local
    [all...]
  /external/icu4c/i18n/
decNumber.h 41 /* Bit settings for decNumber.bits */
46 /* The remaining bits are reserved; they must be 0 */
85 uint8_t bits; /* Indicator bits (see above) */ member in struct:__anon6254
184 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)
185 #define decNumberIsInfinite(dn) (((dn)->bits&DECINF)!=0)
186 #define decNumberIsNaN(dn) (((dn)->bits&(DECNAN|DECSNAN))!=0)
187 #define decNumberIsNegative(dn) (((dn)->bits&DECNEG)!=0)
188 #define decNumberIsQNaN(dn) (((dn)->bits&(DECNAN))!=0)
189 #define decNumberIsSNaN(dn) (((dn)->bits&(DECSNAN))!=0
    [all...]
  /external/icu4c/test/perf/unisetperf/draft/
bitset.cpp 86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) {
133 // Set bits for the start of the range.
150 bits=(int64_t *)uprv_malloc(bitHash->countKeys()*8);
152 if(bits!=NULL) {
153 bitHash->invert(bits);
155 bits=shortBits;
160 latin1Set[0]=(uint32_t)bits[0];
161 latin1Set[1]=(uint32_t)(bits[0]>>32);
162 latin1Set[2]=(uint32_t)bits[1];
163 latin1Set[3]=(uint32_t)(bits[1]>>32)
192 int64_t *bits; member in class:BitSet
    [all...]
  /external/ipsec-tools/src/racoon/
plainrsa-gen.c 74 fprintf(stderr, " -b bits Generate <bits> long RSA key (default=1024)\n");
134 fprintf(fp, "\t# RSA %d bits\n", BN_num_bits(key->n));
203 gen_rsa_key(FILE *fp, size_t bits, unsigned long exp)
208 key = RSA_generate_key(bits, exp, NULL, NULL);
224 size_t bits = 1024; local
241 bits = atoi(optarg);
300 gen_rsa_key(fp, bits, pubexp);
  /external/openssl/apps/
dh.c 282 int len,l,bits; local
285 bits=BN_num_bits(dh->p);
293 printf("static unsigned char dh%d_p[]={",bits);
302 printf("static unsigned char dh%d_g[]={",bits);
310 printf("DH *get_dh%d()\n\t{\n",bits);
314 bits,bits);
316 bits,bits);
  /external/openssl/crypto/bn/
bn_exp2.c 122 int i,j,bits,b,bits1,bits2,ret=0,wpos1,wpos2,window1,window2,wvalue1,wvalue2; local
149 bits=(bits1 > bits2)?bits1:bits2;
244 for (b=bits-1; b>=0; b--)
255 /* consider bits b-window1+1 .. b for this window */
272 /* consider bits b-window2+1 .. b for this window */
  /external/qemu/distrib/zlib-1.2.3/
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...]
  /external/skia/src/core/
SkBlitBWMaskTemplate.h 49 const uint8_t* bits = srcMask.getAddr1(cx, cy); local
58 U8CPU mask = *bits++;
97 U8CPU mask = *bits & left_mask;
99 bits += mask_rowBytes;
108 const uint8_t* b = bits;
125 bits += mask_rowBytes;
  /external/skia/src/effects/
SkLayerDrawLooper.cpp 77 BitFlags bits = info.fPaintBits; local
80 if (0 == bits) {
83 if (kEntirePaint_Bits == bits) {
94 if (bits & kStyle_Bit) {
102 if (bits & kTextSkewX_Bit) {
106 if (bits & kPathEffect_Bit) {
109 if (bits & kMaskFilter_Bit) {
112 if (bits & kShader_Bit) {
115 if (bits & kColorFilter_Bit) {
118 if (bits & kXfermode_Bit)
    [all...]
  /external/srtp/test/
lfsr.c 293 int bits = 8; local
295 for (y=0; y < (1 << bits); y++) {
297 u32_bit_string(y,bits), weight(y), period(y));
  /external/v8/src/
safepoint-table.h 44 SafepointEntry(unsigned info, uint8_t* bits) : info_(info), bits_(bits) {
79 uint8_t* bits() { function in class:v8::internal::BASE_EMBEDDED
87 // Reserve 13 bits for the gap code size. On ARM a constant pool can be
89 // than what can be represented in 12 bits, so 13 bits gives room for having
132 uint8_t* bits = &Memory::uint8_at(entries_ + (index * entry_size_));
133 return SafepointEntry(info, bits);
237 // Emit the safepoint table after the body. The number of bits per
  /external/webkit/Source/JavaScriptCore/wtf/
Bitmap.h 59 FixedArray<WordType, words> bits; member in class:WTF::Bitmap
71 return !!(bits[n / wordSize] & (one << (n % wordSize)));
77 bits[n / wordSize] |= (one << (n % wordSize));
85 bool result = bits[index] & mask;
86 bits[index] |= mask;
93 bits[n / wordSize] &= ~(one << (n % wordSize));
99 memset(bits.data(), 0, sizeof(bits));
105 if (!~bits[start / wordSize])
139 result += WTF::bitCount(bits[i])
    [all...]
  /external/webp/src/enc/
bit_writer.c 46 const int32_t bits = bw->value_ >> s; local
48 bw->value_ -= bits << s;
50 if ((bits & 0xff) != 0xff) {
57 if (bits & 0x100) { // overflow -> propagate carry over pending 0xff's
61 const int value = (bits & 0x100) ? 0x00 : 0xff;
64 bw->buf_[pos++] = bits;
107 if (bw->range_ < 127) { // emit 'shift' bits out and renormalize
  /external/webrtc/src/common_audio/signal_processing_library/main/interface/
spl_inl.h 235 int bits; local
237 if ((0xFFFF0000 & n)) bits = 16; else bits = 0;
238 if ((0x0000FF00 & (n >> bits))) bits += 8;
239 if ((0x000000F0 & (n >> bits))) bits += 4;
240 if ((0x0000000C & (n >> bits))) bits += 2;
241 if ((0x00000002 & (n >> bits))) bits += 1
    [all...]
  /external/zlib/contrib/masmx64/
inffas8664.c 57 state->bits < 8
67 - The maximum input bits used by a length/distance pair is 15 bits for the
68 length code, 5 bits for the length extra, 15 bits for the distance code,
69 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
95 /* 88 44 */ unsigned bits; /* ebx rbx local strm->bits */ member in struct:inffast_ar
136 ar.bits = state->bits;
    [all...]
  /external/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...]
  /frameworks/base/include/surfaceflinger/
Surface.h 121 void* bits; member in struct:android::Surface::SurfaceInfo
  /libcore/luni/src/main/java/java/util/
Random.java 83 * the number of bits specified by the argument {@code bits} as
89 protected synchronized int next(int bits) {
91 return (int) (seed >>> (48 - bits));
180 int bits, val; local
182 bits = next(31);
183 val = bits % n;
184 } while (bits - val + (n - 1) < 0);
  /system/core/init/
logo.c 43 unsigned short *bits; member in struct:FB
65 fb->bits = mmap(0, fb_size(fb), PROT_READ | PROT_WRITE,
67 if (fb->bits == MAP_FAILED)
79 munmap(fb->bits, fb_size(fb));
109 unsigned short *data, *bits, *ptr; local
136 bits = fb.bits;
141 android_memset16(bits, ptr[1], n << 1);
142 bits += n;
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 33 const int bits = addr.size; local
35 switch (bits) {
41 // 24 bits formats are a little special and used only for RGB
70 const int bits = addr.size; local
72 switch (bits) {
78 // 24 bits formats are a little special and used only for RGB
109 void GGLAssembler::extract(integer_t& d, int s, int h, int l, int bits)
118 if ((h == bits) && !l && (s != d.reg)) {
120 } else if ((h == bits) && l) {
130 if (h != bits) {
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 146 int bits = readInt(nBytes); local
148 bits <<= bytesToMove;
149 return Float.intBitsToFloat(bits);
173 long bits = readLong(nBytes); local
175 bits <<= bytesToMove;
176 return Double.longBitsToDouble(bits);

Completed in 1621 milliseconds

1 2 3 45 6 7 8 91011>>