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

1 2 3 4 56 7 8 91011>>

  /external/wpa_supplicant/
asn1.c 93 unsigned long val; local
112 val = 0;
118 val = (val << 7) | (tmp & 0x7f);
131 oid->oid[0] = val / 40;
134 oid->oid[1] = val - oid->oid[0] * 40;
137 oid->oid[oid->len++] = val;
186 unsigned long val = 0; local
194 val |= rotate_bits(*pos++);
196 val |= ((unsigned long) rotate_bits(*pos++)) << 8
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
asn1.c 93 unsigned long val; local
112 val = 0;
118 val = (val << 7) | (tmp & 0x7f);
131 oid->oid[0] = val / 40;
134 oid->oid[1] = val - oid->oid[0] * 40;
137 oid->oid[oid->len++] = val;
186 unsigned long val = 0; local
194 val |= rotate_bits(*pos++);
196 val |= ((unsigned long) rotate_bits(*pos++)) << 8
    [all...]
  /external/wpa_supplicant_8/src/tls/
asn1.c 88 unsigned long val; local
97 val = 0;
103 val = (val << 7) | (tmp & 0x7f);
116 oid->oid[0] = val / 40;
119 oid->oid[1] = val - oid->oid[0] * 40;
122 oid->oid[oid->len++] = val;
191 unsigned long val = 0; local
199 val |= rotate_bits(*pos++);
201 val |= ((unsigned long) rotate_bits(*pos++)) << 8
    [all...]
  /external/zlib/contrib/infback9/
inftree9.h 21 of the bit buffer. val is the actual byte to output in the case
27 unsigned short val; /* offset in table or code value */ member in struct:__anon14456
  /external/zlib/contrib/iostream/
zfstream.h 95 gzomanip(gzofstream &(*f)(gzofstream &, T), T v) : func(f), val(v) { } function in class:gzomanip
98 T val; member in class:gzomanip
103 return (*m.func)(s, m.val);
  /external/zlib/
inftrees.h 21 of the bit buffer. val is the actual byte to output in the case
27 unsigned short val; /* offset in table or code value */ member in struct:__anon14472
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_seek_synch.cpp 133 uint16 val; local
215 val = (tmp1 << 3);
216 val |= (tmp2 >> 5);
221 val = 0; // force mismatch
224 if (val == SYNC_WORD)
284 uint16 val; local
290 val = (uint16)getUpTo17bits(inputStream, SYNC_WORD_LNGTH);
292 while (((val&SYNC_WORD) != SYNC_WORD) && (inputStream->usedBits < availableBits))
294 val <<= 8;
295 val |= getUpTo9bits(inputStream, 8)
    [all...]
  /frameworks/compile/libbcc/tests/data/src/
brackets.c 27 int val = ar2D[x][y]; local
28 if (val != expected) {
29 printf("error: [%d][%d] %d != %d\n", x, y, val, expected);
  /frameworks/media/libvideoeditor/vss/src/
M4AD_Null.c 161 M4OSA_Int16 val; local
165 val = (M4OSA_Int16)((M4OSA_UInt8)(pInputBuffer->m_dataAddress[i]) - 128);
167 pDecodedPCMBuffer->m_dataAddress[i*2] = (M4OSA_Int8)(val>>8);
168 pDecodedPCMBuffer->m_dataAddress[i*2+1] = (M4OSA_Int8)(val&0x00ff);
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/
miniopt.h 47 bool good_int; /* 'val' member is the result of a sucessful
57 int val; /* strtol translation of valstr */ member in struct:miniopt
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
miniopt.h 47 bool good_int; /* 'val' member is the result of a sucessful
57 int val; /* strtol translation of valstr */ member in struct:miniopt
  /hardware/ti/omap4xxx/libtiutils/
Semaphore.cpp 170 int val; local
179 sem_getvalue(mSemaphore, &val);
181 return val;
  /ndk/tests/device/test-gnustl-full/unit/
config_test.cpp 55 int val = 0x01020304; local
56 char *ptr = (char*)(&val);
  /ndk/tests/device/test-stlport/unit/
config_test.cpp 55 int val = 0x01020304; local
56 char *ptr = (char*)(&val);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
getopt.h 96 to the value given in the field `val' when the option is found, but
101 option's `flag' field to zero and its `val' field to a nonzero
104 returns the contents of the `val' field. */
113 int val; member in struct:option
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_ematch/
tc_em_cmp.h 8 __u32 val; member in struct:tcf_em_cmp
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
PortFieldEditor.java 38 int val; local
40 val = Integer.parseInt(getStringValue());
43 val = -1;
45 return val;
58 int val = getCurrentValue(); local
59 if (val < 1024 || val > 32767) {
  /system/core/include/cutils/
sockets.h 50 const char *val; local
65 val = getenv(key);
66 if (!val)
70 fd = strtol(val, NULL, 10);
  /libcore/luni/src/main/java/java/math/
BitLevel.java 41 static int bitLength(BigInteger val) {
42 val.prepareJavaRepresentation();
43 if (val.sign == 0) {
46 int bLength = (val.numberLength << 5);
47 int highDigit = val.digits[val.numberLength - 1];
49 if (val.sign < 0) {
50 int i = val.getFirstNonzeroDigit();
52 if (i == val.numberLength - 1) {
62 static int bitCount(BigInteger val) {
117 int val = source[i]; local
    [all...]
  /bionic/linker/
linker_environ.c 130 char* val = env_match(readp[0], name); local
131 if (val != NULL) {
133 if (val[0] == '\0')
134 val = NULL;
135 return val;
  /cts/apps/CtsVerifier/jni/audioquality/
OverflowCheck.cpp 58 float val = data[i + frame]; local
59 sum += (val * val);
  /dalvik/libdex/
ZipArchive.h 140 off_t val = 0; local
141 dexZipGetEntryInfo(pArchive, entry, NULL, NULL, NULL, &val, NULL, NULL);
142 return (long) val;
147 size_t val = 0; local
148 dexZipGetEntryInfo(pArchive, entry, NULL, &val, NULL, NULL, NULL, NULL);
149 return val;
154 long val = 0; local
155 dexZipGetEntryInfo(pArchive, entry, NULL, NULL, NULL, NULL, &val, NULL);
156 return val;
161 long val = 0 local
    [all...]
  /dalvik/tests/003-omnibus-opcodes/src/
MethodCall.java 28 int val = super.tryThing(); local
29 assert(val == 7);
30 return val;
  /dalvik/vm/hprof/
HprofClass.cpp 75 void *val; local
89 val = dvmHashTableLookup(gClassHashTable, computeClassHash(clazz),
91 assert(val != NULL);
  /external/astl/tests/
test_list.cpp 125 list<int>::iterator val = l.erase(l.begin()); local
127 EXPECT_TRUE(*val == 1);
135 val = l.erase(--l.end());
139 EXPECT_TRUE(val == l.end());

Completed in 940 milliseconds

1 2 3 4 56 7 8 91011>>