HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 176 - 200 of 868) sorted by null

1 2 3 4 5 6 78 91011>>

  /cts/tools/vm-tests/src/dot/junit/opcodes/monitor_enter/
Test_monitor_enter.java 165 private int val; field in class:TestRunnable2
166 TestRunnable2(T_monitor_enter_2 t2, int val) {
168 this.val = val;
173 t2.run(val);
  /dalvik/vm/
Hash.c 294 int i, val; local
300 val = (*func)(pEnt->data);
301 if (val == 1) {
306 else if (val != 0) {
307 return val;
322 int i, val; local
328 val = (*func)(pEnt->data, arg);
329 if (val != 0)
330 return val;
Properties.c 272 JValue val;
273 dvmCallMethod(dvmThreadSelf(), getProp, NULL, &val, keyObj); local
274 valueObj = (StringObject*) val.l;
  /dalvik/vm/hprof/
HprofStack.c 118 StackTraceEntry *val; local
134 val = dvmHashTableLookup(gStackTraceHashTable, hashValue, (void *)stackTrace,
136 if (val == NULL) {
141 val = dvmHashTableLookup(gStackTraceHashTable, hashValue,
143 assert(val != NULL);
147 val->live = 1;
150 serial = val->trace.serialNumber;
  /development/ndk/platforms/android-3/arch-arm/include/asm/
posix_types.h 48 int val[2]; member in struct:__anon811
  /development/ndk/platforms/android-3/include/linux/
ppdev.h 24 unsigned char val; member in struct:ppdev_frob_struct
  /development/ndk/platforms/android-5/arch-x86/include/asm/
posix_types_32.h 48 int val[2]; member in struct:__anon1217
  /development/simulator/app/
Preferences.cpp 344 printf("SimPref: evaluating as bool name='%s' val='%s'\n",
356 int val; local
357 if (pElem != NULL && pElem->Attribute(kValue, &val) != NULL) {
358 *pInt = val;
366 double val; local
367 if (pElem != NULL && pElem->Attribute(kValue, &val) != NULL) {
368 *pDouble = val;
376 const char* val; local
378 val = pElem->Attribute(kValue);
379 if (val != NULL)
    [all...]
  /device/samsung/crespo/alsa-lib/src/control/
tlv.c 226 double val = (double)(volume - rangemin) / local
229 *db_gain = (long)(100.0 * 20.0 * log10(val)) +
235 val = (lmax - lmin) * val + lmin;
236 *db_gain = (long)(100.0 * 20.0 * log10(val));
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_misc.c 78 int val; local
80 val = snd_pcm_format_signed(format);
81 if (val < 0)
82 return val;
83 return !val;
166 int val; local
168 val = snd_pcm_format_little_endian(format);
169 if (val < 0)
170 return val;
171 return !val;
    [all...]
  /external/bluetooth/bluez/src/
main.c 94 int val; local
102 val = g_key_file_get_integer(config, "General",
108 DBG("discovto=%d", val);
109 main_opts.discovto = val;
113 val = g_key_file_get_integer(config, "General",
119 DBG("pairto=%d", val);
120 main_opts.pairto = val;
123 val = g_key_file_get_integer(config, "General", "PageTimeout", &err);
128 DBG("pageto=%d", val);
129 main_opts.pageto = val;
    [all...]
  /external/bluetooth/glib/glib/
gtimer.c 305 long val; local
322 val = strtoul (iso_date, (char **)&iso_date, 10);
326 tm.tm_year = val - 1900;
338 tm.tm_mday = val % 100;
339 tm.tm_mon = (val % 10000) / 100 - 1;
340 tm.tm_year = val / 10000 - 1900;
346 val = strtoul (iso_date, (char **)&iso_date, 10);
350 tm.tm_hour = val;
362 tm.tm_sec = val % 100;
363 tm.tm_min = (val % 10000) / 100
    [all...]
  /external/bluetooth/glib/tests/
timeloop-basic.c 81 int val = 1; local
85 write_all (out_fd, (char *)&val, sizeof (val));
86 read_all (in_fd, (char *)&val, sizeof (val));
89 val = 0;
90 write_all (out_fd, (char *)&val, sizeof (val));
98 int val; local
100 if (!read_all (source, (char *)&val, sizeof(val))
    [all...]
timeloop-closure.c 81 int val = 1; local
86 write_all (out_channel, (char *)&val, sizeof (val));
87 read_all (in_channel, (char *)&val, sizeof (val));
90 val = 0;
91 write_all (out_channel, (char *)&val, sizeof (val));
93 val = g_timer_elapsed (timer, NULL) * 1000;
95 write_all (out_channel, (char *)&val, sizeof (val))
106 int val; local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERBitString.java 24 int val = 0; local
35 val = (bitString >> (i * 8)) & 0xFF;
43 val = bitString & 0xFF;
49 if (val == 0)
57 while (((val <<= 1) & 0xFF) != 0)
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/encodings/
ISO9796d1Encoding.java 165 byte val = block[block.length - t + i / 2];
167 block[i] = (byte)((shadows[(val & 0xff) >>> 4] << 4)
168 | shadows[val & 0x0f]);
169 block[i + 1] = val;
220 int val = ((shadows[(block[i] & 0xff) >>> 4] << 4) local
223 if (((block[i - 1] ^ val) & 0xff) != 0)
228 r = (block[i - 1] ^ val) & 0xff;
  /external/chromium/third_party/icu/source/common/
rbbirb.h 47 RBBINode *val; member in class:RBBISymbolTableEntry
80 virtual void addEntry (const UnicodeString &key, RBBINode *val, UErrorCode &err);
172 // been encountered. The val Node will be of nodetype uset
181 // the key strings. It does NOT own the val nodes.
186 RBBINode *val; member in struct:RBBISetTableEl
  /external/dbus/bus/
main.c 376 long val; local
378 if (!_dbus_string_parse_int (&addr_fd, 0, &val, &end) ||
380 val < 0 || val > _DBUS_INT_MAX)
387 print_addr_fd = val;
398 long val; local
400 if (!_dbus_string_parse_int (&pid_fd, 0, &val, &end) ||
402 val < 0 || val > _DBUS_INT_MAX)
409 print_pid_fd = val;
    [all...]
  /external/dropbear/
svr-main.c 116 int val; local
194 val = select(maxsock+1, &fds, NULL, NULL, &seltimeout);
201 if (val == 0) {
206 if (val < 0) {
  /external/e2fsprogs/intl/
plural-exp.h 65 } val; member in struct:expression
  /external/e2fsprogs/lib/ext2fs/
dirhash.c 144 __u32 pad, val; local
152 val = pad;
157 val = pad;
163 val = c + (val << 8);
165 *buf++ = val;
166 val = pad;
171 *buf++ = val;
  /external/e2fsprogs/misc/
util.c 81 int val; local
85 val = stat64(device, &s);
89 val = stat(device, &s);
92 if(val == -1) {
  /external/freetype/src/sfnt/
ttmtx.c 214 FT_Short val = (*shorts)[num_shorts_checked - 1]; local
219 *cur = val;
  /external/grub/netboot/
misc.c 227 int val; local
232 val = getdec (&p);
234 if (val < 0 || val > 255)
240 ip = (ip << 8) | val;
  /external/icu4c/common/
rbbirb.h 47 RBBINode *val; member in class:RBBISymbolTableEntry
80 virtual void addEntry (const UnicodeString &key, RBBINode *val, UErrorCode &err);
172 // been encountered. The val Node will be of nodetype uset
181 // the key strings. It does NOT own the val nodes.
186 RBBINode *val; member in struct:RBBISetTableEl

Completed in 3292 milliseconds

1 2 3 4 5 6 78 91011>>