HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 676 - 700 of 1212) sorted by null

<<21222324252627282930>>

  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteStatementTest.java 313 int val; local
318 val = (val1 << 4) | val2;
319 result[i] = (byte)val;
  /cts/tests/tests/media/libmediandkjni/
codec-utils-jni.cpp 317 uint8_t val = ix == 0 ? y : ix == 1 ? u : v; local
322 *col = val;
  /dalvik/tools/hprof-conv/
HprofConv.c 286 uint16_t val; local
288 val = (buf[0] << 8) | buf[1];
289 return val;
297 uint32_t val; local
299 val = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
300 return val;
306 static void set4BE(unsigned char* buf, uint32_t val)
308 buf[0] = val >> 24;
309 buf[1] = val >> 16;
310 buf[2] = val >> 8
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Delaunay.cpp 504 double val = (ax - cx)*(by - cy) - (bx - cx)*(ay - cy); local
505 if ( val > 0.0) {
  /device/generic/goldfish/audio/
audio_hw.c 129 long val; local
138 val = strtol(value, &end, 10);
139 if (errno == 0 && (end != NULL) && (*end == '\0') && ((int)val == val)) {
140 out->device = (int)val;
285 long val; local
294 val = strtol(value, &end, 10);
295 if ((errno == 0) && (end != NULL) && (*end == '\0') && ((int)val == val)) {
296 in->device = (int)val;
    [all...]
  /device/generic/goldfish/camera/
EmulatedCamera.cpp 53 * val - Value to add.
59 static char* AddValue(const char* param, const char* val);
990 static char* AddValue(const char* param, const char* val)
993 const size_t len2 = strlen(val);
1021 char* val = strchr(tmp, '='); local
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
DemoKitActivity.java 252 int val = (int) hi & 0xff; local
253 val *= 256;
254 val += (int) lo & 0xff;
255 return val;
  /device/moto/shamu/camera/QCamera2/HAL3/
QCamera3HWI.h 186 cam_cds_mode_type_t val; member in struct:qcamera::QCamera3HardwareInterface::__anon4172
  /external/aac/libFDK/src/
fixpoint_math.cpp 429 FIXP_DBL val = op ; local
432 if (val == FL2FXCONST_DBL(0.0)) {
439 FDK_ASSERT(val > FL2FXCONST_DBL(0.0));
440 *shift = fNormz(val) - 1; /* CountLeadingBits() is not necessary here since test value is always > 0 */
441 val <<=*shift ; /* normalized input V */
445 reg1 = invSqrtTab[ (INT)(val>>(DFRACT_BITS-1-(SQRT_BITS+1))) & SQRT_BITS_MASK ];
449 regtmp= reg2 - fMultDiv2(regtmp, val); /* b = 0.5 - 2 * V * Q^2 */
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 783 String val = getData(j, counts[j]); local
784 buf.append(name).append('=').append(val).append(",");
787 String val = getData(j, counts[j]); local
788 buf.append(name).append('=').append(val);
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 738 String val = getConfigurationValue(key); local
739 if (val == null)
741 return Boolean.valueOf(val).booleanValue();
    [all...]
  /external/bison/lib/
quotearg.c 721 char *val; member in struct:slotvec
737 free (sv[i].val);
738 if (sv[0].val != slot0)
740 free (sv[0].val);
742 slotvec0.val = slot0;
794 char *val = sv[n].val; local
797 size_t qsize = quotearg_buffer_restyled (val, size, arg, argsize,
806 if (val != slot0)
807 free (val);
    [all...]
  /external/bluetooth/bluedroid/bta/hf_client/
bta_hf_client_int.h 134 tBTA_HF_CLIENT_DATA_VAL val; member in union:__anon5232
257 extern void bta_hf_client_send_at_btrh(BOOLEAN query, UINT32 val);
  /external/bluetooth/bluedroid/btif/src/
btif_core.c 368 char val[256]; local
374 if (property_get(PROPERTY_BT_BDADDR_PATH, val, NULL))
378 BTIF_TRACE_DEBUG("local bdaddr is stored in %s", val);
380 if ((addr_fd = open(val, O_RDONLY)) != -1)
382 memset(val, 0, sizeof(val));
383 read(addr_fd, val, FACTORY_BT_BDADDR_STORAGE_LEN);
384 str2bd(val, local_addr);
400 val_size = sizeof(val);
401 if(btif_config_get_str("Local", "Adapter", "Address", val, &val_size)
    [all...]
  /external/chromium_org/net/socket/
tcp_socket_win.cc 71 BOOL val = disable ? TRUE : FALSE; local
73 reinterpret_cast<const char*>(&val),
74 sizeof(val));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 197 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
200 new (NotNull, dst) T(val);
209 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
215 memset(dst, val, dstEnd - dst);
275 static void uninitializedFill(T* dst, T* dstEnd, const T& val)
277 VectorFiller<VectorTraits<T>::canFillWithMemset, T>::uninitializedFill(dst, dstEnd, val);
677 template<typename U> void uncheckedAppend(const U& val);
697 Vector(size_t size, const T& val)
701 TypeOperations::uninitializedFill(begin(), end(), val);
705 void fill(const T& val) { fill(val, size());
862 std::fill(begin(), end(), val); local
    [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
t1_enc.c 1227 unsigned char *val = NULL; local
    [all...]
  /external/chromium_org/third_party/gtk+/gtk/
compose-parse.py 512 (seq, val ) = split(':', line)
514 val = val.strip() variable
516 values = split('\s+', val)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
nfrule.cpp 262 int64_t val = 0; local
274 val = val * ll_10 + (int32_t)(c - gZero);
290 setBaseValue(val, status);
297 val = 0;
303 val = val * ll_10 + (int32_t)(c - gZero);
320 radix = (int32_t)val;
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnmdptst.c 200 static const double val[] = { 0.01234, 123456789, 1.23e75, -3.141592653e-78 }; local
202 static const double val[] = { 0.01234, 123456789, 1.23e300, -3.141592653e-271 }; local
247 val_length = sizeof(val) / sizeof(val[0]);
267 lneed=unum_formatDouble(fmt, val[v], NULL, lneed, NULL, &status);
271 unum_formatDouble(fmt, val[v], str, lneed+1, NULL, &status);
836 "UGX", "USD", "USN", "USS", "UYF", "UYP", "UYU", "UZC", "UZS", "VAL", "VDD",
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/ubrkperf/
ubrkperfold.cpp 82 unsigned long val = t.tv_sec * 1000; // Let it overflow. Who cares. local
83 val += t.tv_usec / 1000;
84 return val;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.cc 358 int val = port->SetOption(it->first, it->second); local
359 if (val < 0) {
808 int val = ports_[i]->SetOption(opt, value); local
809 if (val < 0) {
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
jquant1.c 283 int i,j,k, nci, blksize, blkdist, ptr, val; local
314 val = output_value(cinfo, i, j, nci-1);
319 colormap[i][ptr+k] = (JSAMPLE) val;
342 int i,j,k, nci, blksize, val, pad; local
374 /* in loop, val = index of current output value, */
375 /* and k = largest j that maps to current val */
377 val = 0;
380 while (j > k) /* advance val if past boundary */
381 k = largest_input_value(cinfo, i, ++val, nci-1);
383 indexptr[j] = (JSAMPLE) (val * blksize)
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/
core.c 942 uint16_t val; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
SAX2.c 570 int val; local
578 val = xmlParseCtxtExternalEntity(ctxt, ret->URI,
580 if (val == 0) {
1143 xmlChar *val; local
1147 val = xmlStringDecodeEntities(ctxt, value, XML_SUBSTITUTE_REF,
1151 val = (xmlChar *) value;
1154 if (val[0] != 0) {
1157 uri = xmlParseURI((const char *)val);
1161 "xmlns: %s not a valid URI\n", val);
1197 xmlChar *val; local
1320 xmlChar *val; local
    [all...]

Completed in 1061 milliseconds

<<21222324252627282930>>