HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 26 - 50 of 1600) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget/d/
T_sget_2.java 21 public static float val = 123.0f; field in class:T_sget_2
24 return val;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget_wide/d/
T_sget_wide_2.java 21 public static double val = 123.0d; field in class:T_sget_wide_2
24 return val;
  /development/ndk/platforms/android-3/include/
getopt.h 60 /* if not NULL, set *flag to val when option found */
63 int val; member in struct:option
  /development/ndk/platforms/android-3/include/linux/
swap.h 32 unsigned long val; member in struct:__anon1144
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncRound.java 46 final double val= obj.num(); local
47 if (val >= -0.5 && val < 0) return new XNumber(-0.0);
48 if (val == 0.0) return new XNumber(val);
49 return new XNumber(java.lang.Math.floor(val
  /external/chromium/testing/gtest/include/gtest/
gtest-message.h 120 inline Message& operator <<(const T& val) {
121 ::GTestStreamToHelper(ss_.get(), val);
155 Message& operator <<(BasicNarrowIoManip val) {
156 *ss_ << val; local
  /external/clang/test/CodeGen/
aarch64-inline-asm.c 53 int val; local
54 asm("ldxr %0, %1" : "=r"(val) : "Q"(var));
atomic.c 6 int val = 1; local
13 old = __sync_fetch_and_add(&val, 1);
14 // CHECK: atomicrmw add i32* %val, i32 1 seq_cst
19 old = __sync_fetch_and_min(&val, 3);
20 // CHECK: atomicrmw min i32* %val, i32 3 seq_cst
22 old = __sync_fetch_and_max(&val, 4);
23 // CHECK: atomicrmw max i32* %val, i32 4 seq_cst
31 old = __sync_lock_test_and_set(&val, 7);
32 // CHECK: atomicrmw xchg i32* %val, i32 7 seq_cst
34 old = __sync_swap(&val, 8)
    [all...]
x86_32-inline-asm.c 13 uint64_t val = 0; local
17 "a" ((val & 0xFFFFFFFFUL)), // expected-error {{invalid input size for constraint 'a'}}
18 "d" (((val >> 32) & 0xFFFFFFFFUL)));
  /external/clang/test/CodeGenCXX/
2006-09-12-OpaqueStructCrash.cpp 9 ~B () { delete [] val; }
11 Ty* val; member in struct:B
  /external/clang/test/Parser/
cxx-reference.cpp 6 int val; variable
16 int & const X = val; // expected-error {{'const' qualifier may not be applied to a reference}}
17 int & volatile Y = val; // expected-error {{'volatile' qualifier may not be applied to a reference}}
18 int & const volatile Z = val; /* expected-error {{'const' qualifier may not be applied}} \
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_printf_test.cc 70 uptr val; local
71 if (sizeof(val) == 4) {
72 val = (uptr)0x12345678;
74 val = (uptr)0x123456789ULL;
76 internal_snprintf(buf, 4, "a%zx", val); // NOLINT
  /external/dhcpcd/
platform-bsd.c 60 int val; local
64 size = sizeof(val);
65 if (sysctl(mib, sizeof(mib)/sizeof(mib[0]), &val, &size, NULL, 0) == -1)
67 return val;
  /external/e2fsprogs/include/nonunix/
getopt.h 73 to the value given in the field `val' when the option is found, but
78 option's `flag' field to zero and its `val' field to a nonzero
81 returns the contents of the `val' field. */
94 int val; member in struct:option
  /external/grub/lib/
getopt.h 71 to the value given in the field `val' when the option is found, but
76 option's `flag' field to zero and its `val' field to a nonzero
79 returns the contents of the `val' field. */
92 int val; member in struct:option
  /external/gtest/include/gtest/
gtest-message.h 120 inline Message& operator <<(const T& val) {
121 ::GTestStreamToHelper(ss_.get(), val);
155 Message& operator <<(BasicNarrowIoManip val) {
156 *ss_ << val; local
  /external/libsepol/src/
symtab.c 18 unsigned int val; local
20 val = 0;
24 val =
25 (val << 4 | (val >> (8 * sizeof(unsigned int) - 4))) ^ (*p);
26 return val & (h->size - 1);
  /external/libvorbis/lib/
lookup.c 65 long val=INVSQ_LOOKUP_I[i]- /* 1.16 */ local
70 if(e&1)val=(val*5792)>>13; /* multiply val by 1/sqrt(2) */
73 return(val>>e);
tone.c 37 float val=0; local
40 val+=amp[j]*sin(i/44100.f*f[j]*2*M_PI);
41 ival=rint(val);
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-message.h 120 inline Message& operator <<(const T& val) {
121 ::GTestStreamToHelper(ss_.get(), val);
155 Message& operator <<(BasicNarrowIoManip val) {
156 *ss_ << val; local
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-message.h 120 inline Message& operator <<(const T& val) {
121 ::GTestStreamToHelper(ss_.get(), val);
155 Message& operator <<(BasicNarrowIoManip val) {
156 *ss_ << val; local
  /external/openssl/crypto/x509v3/
v3_bitst.c 108 CONF_VALUE *val; local
117 val = sk_CONF_VALUE_value(nval, i);
119 if(!strcmp(bnam->sname, val->name) ||
120 !strcmp(bnam->lname, val->name) ) {
133 X509V3_conf_err(val);
  /external/qemu/distrib/zlib-1.2.3/
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:__anon13548
  /external/regex-re2/util/
thread.cc 36 void *val; local
37 pthread_join(pid_, &val);
  /external/webkit/Source/WebCore/platform/graphics/transforms/
PerspectiveTransformOperation.cpp 59 double val = -1.0 / decomp.perspectiveZ; local
60 return PerspectiveTransformOperation::create(Length(clampToPositiveInteger(val), Fixed));

Completed in 728 milliseconds

12 3 4 5 6 7 8 91011>>