HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 276 - 300 of 2707) sorted by null

<<11121314151617181920>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
inode_pool.h 36 int val = inos_.back(); local
39 return val;
  /external/chromium_org/native_client_sdk/src/libraries/sdk_util/
ref_object.h 56 Atomic32 val = AtomicAddFetch(&ref_count_, -1); local
57 if (val == 0) {
  /external/chromium_org/testing/gtest/include/gtest/
gtest-message.h 115 inline Message& operator <<(const T& val) {
131 *ss_ << val;
165 Message& operator <<(BasicNarrowIoManip val) {
166 *ss_ << val; local
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
parsing.cc 58 std::string val = elem->Attr(name); local
59 return val.empty() ? def : val;
70 std::string val = elem->Attr(name); local
71 std::transform(val.begin(), val.end(), val.begin(), tolower);
73 return val.empty() ? def : (val == kTrue || val == kOne)
78 std::string val = elem->Attr(name); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
copy_constant_to_storage_tests.cpp 33 const ir_constant *val,
69 ir_constant *val; local
70 generate_data(mem_ctx, GLSL_TYPE_INT, 1, rows, val);
72 const unsigned red_zone_size = Elements(storage) - val->type->components();
74 val->type->components(),
78 val,
79 val->type->base_type,
80 val->type->components());
82 verify_data(storage, 0, val, red_zone_size);
88 ir_constant *val; local
107 ir_constant *val; local
126 ir_constant *val; local
150 ir_constant *val; local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/windows/
profilew.cpp 74 DWORD val = 1L; local
75 LONG res = RegQueryValueEx(hKey, key, 0L, NULL, (BYTE *)&val, &size);
80 *value = (val == 0L) ? FALSE : TRUE;
88 DWORD val = value ? 1L : 0L; local
89 LONG res = RegSetValueEx(hKey, key, 0L, REG_DWORD, (const BYTE *)&val, size);
  /external/chromium_org/third_party/opus/src/celt/
laplace.c 54 int val = *value; local
56 if (val)
60 s = -(val<0);
61 val = (val+s)^s;
65 for (i=1; fs > 0 && i < val; i++)
78 di = IMIN(val - i, ndi_max - 1);
96 int val=0; local
103 val++;
113 val++
    [all...]
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_laplace.c 59 int val[10000], decay[10000]; local
64 val[0] = 3; decay[0] = 6000;
65 val[1] = 0; decay[1] = 5800;
66 val[2] = -1; decay[2] = 5600;
69 val[i] = rand()%15-7;
73 ec_laplace_encode(&enc, &val[i],
84 if (d != val[i])
86 fprintf (stderr, "Got %d instead of %d\n", d, val[i]);
  /external/chromium_org/third_party/webrtc/base/
stringencode.h 82 char hex_encode(unsigned char val);
84 bool hex_decode(char ch, unsigned char* val);
188 static inline std::string ToString(const T& val) {
189 std::string str; ToString(val, &str); return str;
194 T val; FromString(str, &val); return val; local
199 T val(defaultValue); FromString(str, &val); return val;
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
byte_io_unittest.cc 29 T val = 0; local
31 val = (val << 8) + (negative ? (0xFF - i) : (i + 1));
34 val |= static_cast<T>(-1) << (8 * num_bytes);
36 return val;
  /external/chromium_org/third_party/zlib/
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:__anon111
  /external/chromium_org/tools/clang/blink_gc_plugin/
JsonWriter.h 42 void Write(const size_t val) {
44 os_ << val; local
46 void Write(const std::string val) {
48 os_ << "\"" << val << "\""; local
50 void Write(const std::string key, const size_t val) {
52 os_ << "\"" << key << "\":" << val; local
54 void Write(const std::string key, const std::string val) {
56 os_ << "\"" << key << "\":\"" << val << "\""; local
  /external/clang/test/CodeGenCXX/
throw-expressions.cpp 3 int val = 42; variable
5 return throw val, val;
9 return val ? throw val : val;
19 return 1 ? throw val : val;
97 cond ? throw test7 : val;
112 // CHECK: ret i32* @val
    [all...]
  /external/clang/test/Sema/
warn-char-subscripts.c 6 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local
12 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} local
18 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local
24 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} local
30 int val = array[returnsChar()]; // expected-warning{{array subscript is of type 'char'}} local
36 int val = array[subscript]; // no warning for explicit signed char local
42 int val = array[subscript]; // no warning for unsigned char local
49 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local
56 int val = array[subscript]; // no warning for explicit signed char local
63 int val = array[subscript]; // no warning for unsigned cha local
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_asm_test.cc 23 template<typename T> void asm_write(T *ptr, T val);
35 template<> void asm_write<Type>(Type *ptr, Type val) { \
37 Mov " %[val], (%[ptr]) \n\t" \
39 : [ptr] "r" (ptr), [val] Reg (val) \
68 template<> void asm_write<Type>(Type *ptr, Type val) { \
70 Mov " %[val], (%[ptr]) \n\t" \
72 : [ptr] "r" (ptr), [val] Reg (val) \
122 __m128i val = _mm_set1_epi16(0x1234) local
145 __m128i val = _mm_set1_epi16(0x1234); local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_atomic_test.cc 33 ValAndMagic<T> val; local
35 ValAndMagic<T>::sink = &val;
37 val.magic0 = val.magic1 = (Type)-3;
44 val.a.val_dont_use = (Type)v;
45 EXPECT_EQ(atomic_load(&val.a, load_mo), (Type)v);
46 val.a.val_dont_use = (Type)-1;
47 atomic_store(&val.a, (Type)v, store_mo);
48 EXPECT_EQ(val.a.val_dont_use, (Type)v);
50 EXPECT_EQ(val.magic0, (Type)-3)
    [all...]
  /external/deqp/framework/delibs/debase/
deInt32Test.c 46 deUint32 val = (1u << RCP_LUT_BITS) | ndx; local
47 deUint32 rcp = (int)((1u << DE_RCP_FRAC_BITS) / ((double)val / (1<<RCP_LUT_BITS)));
107 deUint32 val = (1u<<numBits); local
108 deRcp32(val, &rcp, &exp);
124 deUint32 val = (deRandom_getUint32(&rnd) & ((1u<<numBits)-1)) | (1u<<numBits); local
125 deUint32 ref = (deUint32)(((1.0f / (double)val) * (double)(1<<DE_RCP_FRAC_BITS)) * (double)(1u<<numBits));
127 deRcp32(val, &rcp, &exp);
  /external/deqp/framework/delibs/depool/
dePoolHash.c 51 const int* val = deTestHash_find(hash, (deInt16)i); local
52 DE_TEST_ASSERT(!val);
64 const int* val = deTestHash_find(hash, (deInt16)i); local
65 DE_TEST_ASSERT(val && (*val == -i));
75 const int* val = deTestHash_find(hash, (deInt16)i); local
77 DE_TEST_ASSERT(val && (*val == -i));
79 DE_TEST_ASSERT(!val);
88 const int* val = deTestHash_find(hash, (deInt16)i) local
103 int val = deTestHashIter_getValue(&testIter); local
135 int val = deTestIntArray_get(valueArray, ndx); local
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialUtils.h 30 T val=poly[poly.size()-1]; local
32 val = val*x + poly[i]; }
33 return val;
54 T val=poly[0]; local
57 val = val*inv_x + poly[i]; }
59 return std::pow(x,(T)(poly.size()-1)) * val;
  /external/elfutils/0.153/libdw/
dwarf_func_inline.c 93 Dwarf_Word val; local
96 &val) == 0)
97 switch (val)
  /external/fio/lib/
zipf.c 57 unsigned long long val; local
66 val = 1;
68 val = 2;
70 val = 1 + (unsigned long long)(n * pow(eta*rand_uni - eta + 1.0, alpha));
72 return (__hash_u64(val - 1) + zs->rand_off) % zs->nranges;
  /external/fio/t/
axmap.c 38 uint64_t val; local
40 if (lfsr_next(&lfsr, &val, osize)) {
45 if (axmap_isset(map, val)) {
50 axmap_set(map, val);
51 if (!axmap_isset(map, val)) {
76 uint64_t val = bit_off; local
83 while (val + 128 <= map_size) {
85 for (i = val; i < val + 128; i++) {
86 if (axmap_isset(map, val + i))
    [all...]
  /external/gtest/include/gtest/
gtest-message.h 115 inline Message& operator <<(const T& val) {
131 *ss_ << val;
165 Message& operator <<(BasicNarrowIoManip val) {
166 *ss_ << val; local
  /external/iproute2/include/linux/tc_ematch/
tc_em_cmp.h 8 __u32 val; member in struct:tcf_em_cmp
  /external/kernel-headers/original/uapi/linux/tc_ematch/
tc_em_cmp.h 8 __u32 val; member in struct:tcf_em_cmp

Completed in 1093 milliseconds

<<11121314151617181920>>