HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 226 - 250 of 2058) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 151 int val = getArgSInt(arg_no); local
152 llvm::raw_string_ostream(pOutStr) << val;
156 unsigned int val = getArgUInt(arg_no); local
157 llvm::raw_string_ostream(pOutStr) << val;
161 unsigned long long val = getArgUInt(arg_no); local
162 llvm::raw_string_ostream(pOutStr) << val;
166 bool val = getArgBool(arg_no); local
167 if (val)
  /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/sources/third_party/googletest/googletest/include/gtest/
gtest-message.h 115 inline Message& operator <<(const T& val) {
131 *ss_ << val;
165 Message& operator <<(BasicNarrowIoManip val) {
166 *ss_ << val; local
  /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);
  /packages/apps/Camera2/src/com/android/camera/
Exif.java 40 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION); local
41 if (val == null) {
44 return ExifInterface.getRotationForOrientationValue(val.shortValue());
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Exif.java 39 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION); local
40 if (val == null) {
43 return ExifInterface.getRotationForOrientationValue(val.shortValue());
70 Integer val = exif.getTagIntValue(ExifInterface.TAG_ORIENTATION); local
71 if (val == null) {
74 return ExifInterface.getRotationForOrientationValue(val.shortValue());
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_ematch/
tc_em_cmp.h 8 __u32 val; member in struct:tcf_em_cmp
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
tea575x-tuner.h 31 void (*write)(struct snd_tea575x *tea, unsigned int val);
43 unsigned int val; /* hw value */ member in struct:snd_tea575x
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_ematch/
tc_em_cmp.h 8 __u32 val; member in struct:tcf_em_cmp
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
tea575x-tuner.h 31 void (*write)(struct snd_tea575x *tea, unsigned int val);
43 unsigned int val; /* hw value */ member in struct:snd_tea575x
  /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...]
  /art/compiler/dex/
arena_bit_vector.cc 49 unsigned int val = storage_[num >> 5] & check_masks[num & 0x1f]; local
50 return (val != 0);
  /art/test/003-omnibus-opcodes/src/
MethodCall.java 28 int val = super.tryThing(); local
29 Main.assertTrue(val == 7);
30 return val;
  /bionic/linker/
linker_environ.cpp 180 const char* val = env_match(p[0], name); local
181 if (val != NULL) {
182 if (val[0] == '\0') {
185 return 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/blktrace/btt/
unplug_hist.c 52 __u64 *val = u_iop->pdu; local
53 int idx, n_unplugs = be64_to_cpu(*val);

Completed in 2634 milliseconds

1 2 3 4 5 6 7 8 91011>>