HomeSort by relevance Sort by last modified time
    Searched full:bits (Results 1176 - 1200 of 15847) sorted by null

<<41424344454647484950>>

  /development/ndk/platforms/android-9/include/EGL/
egl.h 146 /* Config attribute mask bits */
147 #define EGL_PBUFFER_BIT 0x0001 /* EGL_SURFACE_TYPE mask bits */
148 #define EGL_PIXMAP_BIT 0x0002 /* EGL_SURFACE_TYPE mask bits */
149 #define EGL_WINDOW_BIT 0x0004 /* EGL_SURFACE_TYPE mask bits */
150 #define EGL_VG_COLORSPACE_LINEAR_BIT 0x0020 /* EGL_SURFACE_TYPE mask bits */
151 #define EGL_VG_ALPHA_FORMAT_PRE_BIT 0x0040 /* EGL_SURFACE_TYPE mask bits */
152 #define EGL_MULTISAMPLE_RESOLVE_BOX_BIT 0x0200 /* EGL_SURFACE_TYPE mask bits */
153 #define EGL_SWAP_BEHAVIOR_PRESERVED_BIT 0x0400 /* EGL_SURFACE_TYPE mask bits */
155 #define EGL_OPENGL_ES_BIT 0x0001 /* EGL_RENDERABLE_TYPE mask bits */
156 #define EGL_OPENVG_BIT 0x0002 /* EGL_RENDERABLE_TYPE mask bits */
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SystemUIModes.java 118 final int bits = WindowManager.LayoutParams.FLAG_FULLSCREEN; local
120 winParams.flags |= bits;
122 winParams.flags &= ~bits;
130 final int bits = WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN; local
132 winParams.flags |= bits;
134 winParams.flags &= ~bits;
142 final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS; local
144 winParams.flags |= bits;
146 winParams.flags &= ~bits;
154 final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION local
    [all...]
  /device/asus/fugu/original-kernel-headers/linux/
psb_drm.h 83 uint32_t depth; /* Buffer depth in bits (NOT) bpp */
391 uint16_t Panel_Backlight_Inverter_Descriptor;/* 16 bits, as follows */
392 /* Bit 0, Frequency, 15 bits,0 - 32767Hz */
395 /*16 bits, Defined as follows: */
397 /* Bit 0, Type, 2 bits, */
402 /* Bit 2, Pixel Format, 4 bits */
407 /* Bit 6, Reserved, 2 bits, 00b */
408 /* Bit 8, Minimum Supported Frame Rate, 6 bits, 0 - 63Hz */
409 /* Bit 14, Reserved, 2 bits, 00b */
420 uint16_t Panel_Backlight_Inverter_Descriptor;/*16 bits, as follows*
    [all...]
  /external/aac/libSBRenc/src/
bit_sbr.cpp 168 returns: number of bits written
215 returns: number of bits written
286 int bits; local
288 bits = encodeSbrHeaderData (&sbrEncoder->sbrElement[element_index]->sbrHeaderData, hBs);
303 returns: number of bits written
336 returns: number of bits written
396 returns: number of bits written
441 returns: number of bits written
455 payloadBits += FDKwriteBits (hBitStream, 0, SI_SBR_DATA_EXTRA_BITS); /* no reserved bits */
510 payloadBits += FDKwriteBits (hBitStream, 0, SI_SBR_DATA_EXTRA_BITS); /* no reserved bits */
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
MersenneTwister.java 30 * bits accuracy. The home page for this generator is located at <a
112 * @param seed the initial seed (32 bits integer)
120 * @param seed the initial seed (32 bits integers array), if null
129 * @param seed the initial seed (64 bits integer)
139 * @param seed the initial seed (32 bits integer)
157 * @param seed the initial seed (32 bits integers array), if null
206 * @param seed the initial seed (64 bits integer)
219 * @param bits number of random bits to produce
220 * @return random bits generate
    [all...]
  /external/bison/src/
Sbitset.h 61 /* NBITS is the size of the bitset. More than NBITS bits might be reset. */
67 /* NBITS is the size of the bitset. More than NBITS bits might be set. */
73 /* NBITS is the size of every bitset. More than NBITS bits might be set. */
  /external/boringssl/src/crypto/bn/
bn.c 182 /* BN_num_bits_word returns the minimum number of bits needed to represent the
185 static const unsigned char bits[256] = { local
202 return (bits[(int)(l >> 56)] + 56);
204 return (bits[(int)(l >> 48)] + 48);
208 return (bits[(int)(l >> 40)] + 40);
210 return (bits[(int)(l >> 32)] + 32);
218 return (bits[(int)(l >> 24L)] + 24);
220 return (bits[(int)(l >> 16L)] + 16);
224 return (bits[(int)(l >> 8)] + 8);
226 return (bits[(int)(l)])
    [all...]
random.c 118 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) {
126 if (bits == 0) {
131 bytes = (bits + 7) / 8;
132 bit = (bits - 1) % 8;
141 /* Make a random number and set the top and bottom bits. */
147 if (top && bits > 1) {
180 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) {
181 return BN_rand(rnd, bits, top, bottom);
202 if (!BN_rand(r, n + 1, -1 /* don't set most significant bits */,
203 0 /* don't set least significant bits */)) {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DHParameters.java 134 * @return the minimum length of the private value in bits.
142 * Return the private value length in bits - if set, zero otherwise
144 * @return the private value length in bits, zero otherwise.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafL2RMultiplier.java 89 * @param bits the bit-length of the scalar to multiply by
92 protected int getWindowSize(int bits)
94 return WNafUtil.getWindowSize(bits);
  /external/clang/include/clang/Basic/
LangOptions.def 39 # define COMPATIBLE_LANGOPT(Name, Bits, Default, Description) \
40 LANGOPT(Name, Bits, Default, Description)
44 # define BENIGN_LANGOPT(Name, Bits, Default, Description) \
45 COMPATIBLE_LANGOPT(Name, Bits, Default, Description)
49 # define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
50 LANGOPT(Name, Bits, Default, Description)
54 # define COMPATIBLE_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
55 ENUM_LANGOPT(Name, Type, Bits, Default, Description)
59 # define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
60 COMPATIBLE_ENUM_LANGOPT(Name, Type, Bits, Default, Description
    [all...]
  /external/clang/test/Sema/
aarch64-neon-vector-types.c 48 // The total vector size must be 64 or 128 bits.
49 typedef __attribute__((neon_vector_type(1))) int int32x1_t; // expected-error{{Neon vector size must be 64 or 128 bits}}
50 typedef __attribute__((neon_vector_type(3))) int int32x3_t; // expected-error{{Neon vector size must be 64 or 128 bits}}
transparent-union.c 58 char c; // expected-note{{size of first field is 8 bits}}
84 struct { // expected-note {{alignment of first field is 32 bits}}
88 struct { // expected-warning {{alignment of field '' (64 bits) does not match the alignment of the first field in transparent union; transparent_union attribute ignored}}
  /external/compiler-rt/test/asan/
CMakeLists.txt 6 macro(get_bits_for_arch arch bits)
8 set(${bits} 32)
10 set(${bits} 64)
  /external/conscrypt/src/main/java/org/conscrypt/
ChainStrengthAnalyzer.java 57 "RSA modulus is < " + MIN_RSA_MODULUS_LEN_BITS + " bits");
64 "EC key field size is < " + MIN_EC_FIELD_SIZE_BITS + " bits");
72 + ") bits");
  /external/deqp/framework/opengl/
gluRenderContext.hpp 91 ApiType (deUint32 bits) : m_bits(bits) {}
92 static ApiType fromBits (deUint32 bits) { return ApiType(bits); }
113 deUint32 bits = 0; local
119 bits |= deUint32(major) << MAJOR_SHIFT;
120 bits |= deUint32(minor) << MINOR_SHIFT;
121 bits |= deUint32(profile) << PROFILE_SHIFT;
123 return bits;
177 deUint32 bits = apiBits local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form11x.java 76 BitSet bits = new BitSet(1); local
78 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
79 return bits;
Form21t.java 81 BitSet bits = new BitSet(1); local
83 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
84 return bits;
Form31t.java 80 BitSet bits = new BitSet(1); local
82 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
83 return bits;
  /external/elfutils/src/backends/
aarch64_regs.c 45 int *bits, int *typep)
68 *bits = 64;
93 *bits = 128;
  /external/elfutils/src/libdwfl/
dwfl_module_report_build_id.c 34 const unsigned char *bits, size_t len,
47 && !memcmp (bits, mod->build_id_bits, len))
69 memcpy (copy, bits, len);
  /external/elfutils/src/libelf/
exttypes.h 52 #define START(Bits, Name, EName) typedef struct {
53 #define END(Bits, Name) } ElfW2(Bits, Name)
  /external/guava/guava/src/com/google/common/hash/
HashCode.java 43 * Returns the number of bits in this hash code; a positive multiple of 8.
45 public abstract int bits(); method in class:HashCode
51 * @throws IllegalStateException if {@code bits() < 32}
59 * @throws IllegalStateException if {@code bits() < 64}
64 * If this hashcode has enough bits, returns {@code asLong()}, otherwise returns a {@code long}
90 maxLength = Ints.min(maxLength, bits() / 8);
125 public int bits() { method in class:HashCode.IntHashCode
145 throw new IllegalStateException("this HashCode only has 32 bits; cannot create a long");
181 public int bits() { method in class:HashCode.LongHashCode
250 public int bits() { method in class:HashCode.BytesHashCode
    [all...]
  /external/harfbuzz_ng/
Makefile.am 62 dist-hook: dist-clear-sticky-bits
63 # Clean up any sticky bits we may inherit from parent dir
64 dist-clear-sticky-bits:
  /external/icu/icu4c/source/common/
uelement.h 31 * The void* pointer may be smaller than 32 bits (e.g. 24 bits)
32 * or may be larger (e.g. 64 bits).

Completed in 527 milliseconds

<<41424344454647484950>>