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

1 23 4 5 6 7 8 91011>>

  /hardware/bsp/intel/peripheral/libmraa/examples/
helloedison.c 60 int val = mraa_gpio_read(gpio182); local
61 printf("GPIO%d (mraa pin %d) was: %d, will set to %d\n", 182, mraa_gpio_get_pin(gpio182), val, !val);
62 mraa_gpio_write(gpio182, !val);
  /hardware/bsp/intel/peripheral/libupm/examples/java/
ADC121C021Sample.java 46 int val = adc.value(); local
48 System.out.println("ADC value: " + val + "Volts = " + adc.valueToVolts(val));
MMA7455Sample.java 40 short[] val; local
43 val = sensor.readData();
44 System.out.println("Accelerometer X: " + val[0] + ", Y: " + val[1] + ", Z: " + val[2]);
MQ303ASample.java 52 int val = mq303a.value(); local
53 System.out.println("Alcohol detected (higher means stronger alcohol): " + val);
  /hardware/bsp/intel/peripheral/libupm/src/loudness/
loudness.cxx 45 int val = m_aio.read(); local
47 return(val * (m_aref / float(1 << m_aRes)));
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/
run-ie.c 19 int val; local
21 val = get_ie ();
22 if (val != 4)
25 val = *get_iep ();
26 if (val != 4)
29 printf ("IE: %d\n", val);
  /bootable/recovery/minui/
mkfont.c 33 unsigned val = (*x ? 0 : 255); local
35 if((val == run_val) && (run_count < 127)) {
40 run_val = val;
  /device/google/marlin/dataservices/datatop/src/
datatop_str.h 45 * Number of key/val pairs in dictionary.
48 * @var dt_procdict::val
54 char *val[DTOP_DICT_SIZE]; member in struct:dt_procdict
  /external/avahi/avahi-common/
utf8.c 44 val <<= 6; \
45 val |= (*(const unsigned char *)p) & 0x3f; \
53 unsigned val = 0; local
76 val = *(const unsigned char *)p & 0x0f;
82 val = *(const unsigned char *)p & 0x07;
95 if ( (val < min))
98 if ( (!UNICODE_VALID(val)))
  /external/clang/test/CodeGen/
arm-asm-warn.c 21 int64x2_t val[4]; member in struct:int64x2x4_t
26 : [r0] "=r"(r.val[0]), // expected-warning {{value size does not match register size specified by the constraint and modifier}}
27 [r1] "=r"(r.val[1]), // expected-warning {{value size does not match register size specified by the constraint and modifier}}
28 [r2] "=r"(r.val[2]), // expected-warning {{value size does not match register size specified by the constraint and modifier}}
29 [r3] "=r"(r.val[3]) // expected-warning {{value size does not match register size specified by the constraint and modifier}}
  /external/clang/test/PCH/
captured-stmt.cpp 18 int val; member in struct:C
20 explicit C(int v) : val(v) { }
26 x += val;
  /external/clang/test/SemaCXX/
warn-char-subscripts.cpp 7 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local
14 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} local
  /external/compiler-rt/test/asan/TestCases/
use-after-scope-temp.cc 10 explicit IntHolder(int val) : val(val) {
11 printf("IntHolder: %d\n", val);
13 int val; member in struct:IntHolder
24 int x = saved->val; // BOOM
  /external/compiler-rt/test/safestack/
pthread.c 21 int val = ptr_test * 5; local
25 memset(buffer, val, sizeof (buffer));
  /external/libcxx/test/std/containers/sequences/list/
db_iterators_9.pass.cpp 24 struct S { int val; }; member in struct:S
54 try { (void) i->val; } catch (int) { ++lib_asserts; }
55 try { (void) ci->val; } catch (int) { ++lib_asserts; }
  /external/libcxx/test/support/
private_constructor.hpp 18 int get () const { return val; }
20 PrivateConstructor ( int v ) : val(v) {}
21 int val; member in struct:PrivateConstructor
  /external/lzma/CPP/Windows/
PropVariantConv.cpp 10 #define UINT_TO_STR_2(c, val) { s[0] = (c); s[1] = (char)('0' + (val) / 10); s[2] = (char)('0' + (val) % 10); s += 3; }
20 unsigned val = st.wYear; local
21 if (val >= 10000)
23 *s++ = (char)('0' + val / 10000);
24 val %= 10000;
27 s[3] = (char)('0' + val % 10); val /= 10;
28 s[2] = (char)('0' + val % 10); val /= 10;
    [all...]
  /external/mdnsresponder/Clients/
ClientCommon.c 60 int val = v0 * 100 + v1 * 10 + v2; local
64 if (val == 0) val = '-';
65 if (val <= 255) { c = (char)val; cstr += 2; }
  /external/mesa3d/src/egl/main/
eglimage.c 58 EGLint val = attrib_list[i]; local
63 attrs->ImagePreserved = val;
68 attrs->GLTextureLevel = val;
71 attrs->GLTextureZOffset = val;
76 attrs->Width = val;
79 attrs->Height = val;
82 attrs->DRMBufferFormatMESA = val;
85 attrs->DRMBufferUseMESA = val;
88 attrs->DRMBufferStrideMESA = val;
93 attrs->PlaneWL = val;
    [all...]
eglsync.c 49 EGLint val = attrib_list[i]; local
53 (void) val;
  /external/mesa3d/src/glsl/
ir_builder.h 39 operand(ir_rvalue *val)
40 : val(val)
47 val = new(mem_ctx) ir_dereference_variable(var);
50 ir_rvalue *val; member in class:ir_builder::operand
59 deref(ir_dereference *val)
60 : val(val)
67 val = new(mem_ctx) ir_dereference_variable(var);
71 ir_dereference *val; member in class:ir_builder::deref
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/block/
scan.hpp 79 T val = smem[tid]; local
82 smem[tid] = warpScanExclusive(val, smem, tid);
  /external/opencv3/modules/cudev/include/opencv2/cudev/warp/
scan.hpp 71 const T val = shfl_up(data, i); local
73 data += val;
  /external/v8/test/unittests/base/
bits-unittest.cc 163 int32_t val = 0; local
164 EXPECT_FALSE(SignedAddOverflow32(0, 0, &val));
165 EXPECT_EQ(0, val);
167 SignedAddOverflow32(std::numeric_limits<int32_t>::max(), 1, &val));
168 EXPECT_EQ(std::numeric_limits<int32_t>::min(), val); local
170 SignedAddOverflow32(std::numeric_limits<int32_t>::min(), -1, &val));
171 EXPECT_EQ(std::numeric_limits<int32_t>::max(), val); local
173 std::numeric_limits<int32_t>::max(), &val)); local
174 EXPECT_EQ(-2, val);
177 EXPECT_FALSE(SignedAddOverflow32(i, j, &val));
185 int32_t val = 0; local
190 EXPECT_EQ(std::numeric_limits<int32_t>::max(), val); local
193 EXPECT_EQ(std::numeric_limits<int32_t>::min(), val); local
259 uint32_t val = 0; local
264 EXPECT_EQ(std::numeric_limits<uint32_t>::min(), val); local
267 &val)); local
    [all...]
  /frameworks/base/libs/androidfw/tests/
TestHelpers.cpp 26 Res_value val; local
27 ssize_t block = table.getResource(resourceId, &val, MAY_NOT_BE_BAG);
32 if (val.dataType != Res_value::TYPE_STRING) {
41 const String8 actual = pool->string8ObjectAt(val.data);

Completed in 885 milliseconds

1 23 4 5 6 7 8 91011>>