/frameworks/base/core/java/android/util/ |
SparseArray.java | 131 Object val = values[i]; local 133 if (val != DELETED) { 136 values[o] = val;
|
/frameworks/base/media/jni/ |
android_media_MediaCodecList.cpp | 172 jint val = colorFormats.itemAt(i); local 173 env->SetIntArrayRegion(colorFormatsArray, i, 1, &val);
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiSsid.java | 68 int val; local 70 val = Integer.parseInt(hexStr.substring(i, i + 2), HEX_RADIX); 72 val = 0; 74 a.octets.write(val); 83 int val = 0; local 117 val = Integer.parseInt(asciiEncoded.substring(i, i + 2), HEX_RADIX); 119 val = -1; 121 if (val < 0) { 122 val = Character.digit(asciiEncoded.charAt(i), HEX_RADIX); 123 if (val < 0) break [all...] |
/frameworks/compile/libbcc/lib/Renderscript/ |
RSInfoExtractor.cpp | 213 llvm::StringRef val = getStringFromOperand(node->getOperand(1)); local 220 writeString(val, result->mStringPool, &cur_string_pool_offset))); 347 llvm::StringRef val = getStringFromOperand(node->getOperand(0)); local 348 if (val.empty()) { 353 if (val.getAsInteger(10, slot)) { 354 ALOGE("Non-integer object slot value '%s' in %s!", val.str().c_str(),
|
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/ |
sparse_weight_vector.h | 85 // True if there is a bound with val containing the bound. false otherwise. 86 bool GetElementMinBound(const Key &fname, double *val) const { 87 return GetValue(wmin_, fname, val); 89 bool GetElementMaxBound(const Key &fname, double *val) const { 90 return GetValue(wmax_, fname, val); 100 double val = 0; local 101 GetValue(w_, fname, &val); 102 return val; 104 void SetElement(const Key &fname, const double val) { 105 //DCHECK(!isnan(val)); [all...] |
/frameworks/native/libs/utils/ |
Debug.cpp | 59 static inline char makehexdigit(uint32_t val) 61 return "0123456789abcdef"[val&0xF]; 64 static char* appendhexnum(uint32_t val, char* out) 67 *out++ = makehexdigit( val>>i ); 73 static inline char makeupperhexdigit(uint32_t val) 75 return "0123456789ABCDEF"[val&0xF]; 78 static char* appendupperhexnum(uint32_t val, char* out) 81 *out++ = makeupperhexdigit( val>>i ); 253 const unsigned char val = *(pos+startIndex+(index*dir)); local 254 *c++ = makehexdigit(val>>4) 270 const unsigned char val = *(pos+startIndex+(index*dir)); local 288 const unsigned char val = pos[index]; local [all...] |
/frameworks/native/libs/utils/tests/ |
LruCache_test.cpp | 195 const char *val = cache.get(key); local 196 if (val != NULL) { 197 EXPECT_EQ(strings[index], val);
|
/hardware/ti/wlan/mac80211/ti-utils/ |
ini.c | 120 #define COMPARE_N_ADD(temp, str, val, ptr, size) \ 125 *p = strtol(val, NULL, 16); \ 127 val += 3; p++; \ 133 #define DBG_COMPARE_N_ADD(temp, str, val, ptr, size) \ 138 *p = strtol(val, NULL, 16); \ 140 val += 3; p++; \ 153 #define COMPARE_N_ADD2(temp, str, val, ptr, size) \ 158 *p = strtol(val, NULL, 16); \ 160 val += 5; p++; \ 166 #define DBG_COMPARE_N_ADD2(temp, str, val, ptr, size) 189 char *name, *val; local 243 char *name, *val; local 310 char *name, *val; local 335 char *name, *val; local 355 char *name, *val; local 380 char *name, *val; local 400 char *name, *val; local 461 char *name, *val; local 530 char *name, *val; local 591 char *name, *val; local 660 char *name, *val; local 717 char *name, *val; local 782 char *name, *val; local [all...] |
/libcore/luni/src/main/java/java/lang/ |
CaseMapper.java | 186 char val = upperValues[target]; local 187 output[i++] = val; 188 val = upperValues[target + 1]; 189 output[i++] = val;
|
/libcore/luni/src/main/java/javax/xml/datatype/ |
DatatypeFactory.java | 403 long val = _durationInMilliseconds; local 404 int milliseconds = (int) (val % 60000L); // 60000 milliseconds per minute 410 val = val / 60000L; 411 int minutes = (int) (val % 60L); // 60 minutes per hour 412 val = val / 60L; 413 int hours = (int) (val % 24L); // 24 hours per day 414 long days = val / 24L; 427 val = val / 60000L [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
limits_test.cpp | 88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) { 89 if (!test_integral_limits_base(val, unknown_sign, is_signed)) 173 _Tp val = lim::max(); local 174 val *= 2; 178 CHECK_COND(test_float_values(val, infinity)); 182 str << "lim::max() = " << lim::max() << ", val = " << val << ", infinity = " << infinity; 189 str << "val in hexa: " << showbase << hex << *((const unsigned int*)&val); 195 str << "val in hexa: " << showbase << hex << *((const unsigned _STLP_LONG_LONG*)&val) [all...] |
/ndk/tests/device/test-stlport/unit/ |
limits_test.cpp | 88 bool test_integral_limits(const _Tp &val, bool unknown_sign = true, bool is_signed = true) { 89 if (!test_integral_limits_base(val, unknown_sign, is_signed)) 173 _Tp val = lim::max(); local 174 val *= 2; 178 CHECK_COND(test_float_values(val, infinity)); 182 str << "lim::max() = " << lim::max() << ", val = " << val << ", infinity = " << infinity; 189 str << "val in hexa: " << showbase << hex << *((const unsigned int*)&val); 195 str << "val in hexa: " << showbase << hex << *((const unsigned _STLP_LONG_LONG*)&val) [all...] |
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/ |
Visualization3RS.java | 103 int val = val1 * val1 + val2 * val2; local 104 short newval = (short)(val * (i/16+1)); 122 float val = mAnalyzer[srcidx] / 8; local 123 if (val < 1f && val > -1f) val = 1; 124 mPointData[(i + skip) * 8 + 1] = val; 125 mPointData[(i + skip) * 8 + 5] = -val;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/ |
posix_types_32.h | 43 int val[2]; member in struct:__anon26099
|
posix_types_64.h | 36 int val[2]; member in struct:__anon26100
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
connector.h | 50 * idx and val are unique identifiers which 57 __u32 val; member in struct:cb_id 73 * registering/unregistering idx/val in range [first, first+range].
|
ppdev.h | 32 unsigned char val; member in struct:ppdev_frob_struct
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
posix_types_32.h | 43 int val[2]; member in struct:__anon27689
|
posix_types_64.h | 36 int val[2]; member in struct:__anon27690
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
connector.h | 50 * idx and val are unique identifiers which 57 __u32 val; member in struct:cb_id 73 * registering/unregistering idx/val in range [first, first+range].
|
ppdev.h | 32 unsigned char val; member in struct:ppdev_frob_struct
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
posix_types_32.h | 43 int val[2]; member in struct:__anon29204
|
posix_types_64.h | 36 int val[2]; member in struct:__anon29205
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
connector.h | 50 * idx and val are unique identifiers which 57 __u32 val; member in struct:cb_id 73 * registering/unregistering idx/val in range [first, first+range].
|
ppdev.h | 32 unsigned char val; member in struct:ppdev_frob_struct
|