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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/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/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
PerspectiveTransformOperation.cpp 60 double val = -1.0 / decomp.perspectiveZ; local
61 return PerspectiveTransformOperation::create(Length(clampToPositiveInteger(val), Fixed));
  /external/chromium_org/third_party/libjingle/source/talk/base/
atomicops_unittest.cc 51 int val; local
52 EXPECT_FALSE(queue.PopFront(&val));
59 int val; local
60 EXPECT_FALSE(queue.PopFront(&val));
73 int val; local
74 EXPECT_TRUE(queue.PopFront(&val));
75 EXPECT_EQ(1, val);
77 EXPECT_TRUE(queue.PopFront(&val));
78 EXPECT_EQ(2, val);
80 EXPECT_FALSE(queue.PopFront(&val));
94 int val; local
    [all...]
linuxfdwalk.c 43 int val = 0; local
50 val = val * 10 + digit;
52 return val;
  /external/chromium_org/third_party/mesa/src/src/getopt/
getopt.h 55 /* if not NULL, set *flag to val when option found */
58 int val; member in struct:option
  /external/chromium_org/third_party/mesa/src/src/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/chromium_org/third_party/openssl/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/chromium_org/third_party/re2/util/
thread.cc 36 void *val; local
37 pthread_join(pid_, &val);
  /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/mesa3d/src/getopt/
getopt.h 55 /* if not NULL, set *flag to val when option found */
58 int val; member in struct:option
  /external/mesa3d/src/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

Completed in 1167 milliseconds

1 23 4 5 6 7 8 91011>>