HomeSort by relevance Sort by last modified time
    Searched refs:val (Results 1 - 25 of 8216) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libunwind/tests/
ident.c 2 f (long val)
4 return val;
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue5740a.c 5 static int volatile val = 2; variable
8 return val;
issue5740b.c 5 static int volatile val = 3; variable
8 return val;
  /prebuilts/go/linux-x86/misc/cgo/test/
issue5740a.c 5 static int volatile val = 2; variable
8 return val;
issue5740b.c 5 static int volatile val = 3; variable
8 return val;
  /art/test/434-invoke-direct/src/
InvokeDirectSuper.java 18 public int val; field in class:InvokeDirectSuper
21 return val;
  /external/strace/linux/sh/
arch_getrval2.c 4 long val; local
5 if (upeek(tcp->pid, 4*(REG_REG0+1), &val) < 0)
7 return val;
  /art/test/435-new-instance/src/
TestClass.java 19 public int val; field in class:TestClass
  /external/clang/test/SemaCXX/
PR9884.cpp 5 Base(int val);
11 Derived(int val);
15 Derived::Derived(int val)
16 : Base( val )
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xmd.h 149 # define cvtINT8toInt(val) (((val) & 0x00000080) ? ((val) | 0xffffffffffffff00) : (val))
150 # define cvtINT16toInt(val) (((val) & 0x00008000) ? ((val) | 0xffffffffffff0000) : (val))
151 # define cvtINT32toInt(val) (((val) & 0x80000000) ? ((val) | 0xffffffff00000000) : (val)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xmd.h 149 # define cvtINT8toInt(val) (((val) & 0x00000080) ? ((val) | 0xffffffffffffff00) : (val))
150 # define cvtINT16toInt(val) (((val) & 0x00008000) ? ((val) | 0xffffffffffff0000) : (val))
151 # define cvtINT32toInt(val) (((val) & 0x80000000) ? ((val) | 0xffffffff00000000) : (val)
    [all...]
  /external/clang/test/CodeGenCXX/
switch-case-folding-2.cpp 5 int test(int val){
6 switch (val) {
  /external/webp/src/dsp/
neon.h 26 v.val[0] = a; \
27 v.val[1] = b; \
31 v.val[0] = a; \
32 v.val[1] = b; \
33 v.val[2] = c; \
37 v.val[0] = a; \
38 v.val[1] = b; \
39 v.val[2] = c; \
40 v.val[3] = d; \
53 row01.val[0] = vreinterpretq_u64_s32(rows.val[0])
    [all...]
  /external/testng/src/test/java/test/preserveorder/
TestClass.java 21 private final int val; field in class:TestClass
23 public TestClass(final int val) {
24 this.val = val;
30 Assert.assertTrue(this.val != 0);
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Matrix4.java 74 public final float val[] = new float[16]; field in class:Matrix4
78 val[M00] = 1f;
79 val[M11] = 1f;
80 val[M22] = 1f;
81 val[M33] = 1f;
117 return this.set(matrix.val);
127 System.arraycopy(values, 0, val, 0, val.length);
175 val[M00] = (1.0f - (yy + zz));
176 val[M01] = (xy - wz);
    [all...]
  /external/opencv3/modules/core/misc/java/src/java/
core+Scalar.java 6 public double val[]; field in class:Scalar
9 val = new double[] { v0, v1, v2, v3 };
13 val = new double[] { v0, v1, v2, 0 };
17 val = new double[] { v0, v1, 0, 0 };
21 val = new double[] { v0, 0, 0, 0 };
26 val = vals.clone();
28 val = new double[4];
35 val[0] = vals.length > 0 ? vals[0] : 0;
36 val[1] = vals.length > 1 ? vals[1] : 0;
37 val[2] = vals.length > 2 ? vals[2] : 0
    [all...]
  /external/dbus/dbus/
dbus-marshal-basic.h 44 #define DBUS_UINT16_SWAP_LE_BE_CONSTANT(val) bswap_16(val)
45 #define DBUS_UINT32_SWAP_LE_BE_CONSTANT(val) bswap_32(val)
48 #define DBUS_UINT16_SWAP_LE_BE_CONSTANT(val) ((dbus_uint16_t) ( \
49 (dbus_uint16_t) ((dbus_uint16_t) (val) >> 8) | \
50 (dbus_uint16_t) ((dbus_uint16_t) (val) << 8)))
52 #define DBUS_UINT32_SWAP_LE_BE_CONSTANT(val) ((dbus_uint32_t) ( \
53 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x000000ffU) << 24) | \
54 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x0000ff00U) << 8) |
    [all...]
  /external/libgdx/gdx/jni/
com.badlogic.gdx.math.Matrix4.cpp 47 static inline float matrix4_det(float* val) {
48 return val[M30] * val[M21] * val[M12] * val[M03] - val[M20] * val[M31] * val[M12] * val[M03] - val[M30] * val[M11
    [all...]
  /external/clang/test/Modules/
separate_map_tree.cpp 8 const int val = common + b + c + c_; // expected-error {{undeclared identifier}} variable
  /external/clang/test/Parser/
cxx-reference.cpp 8 int val; variable
18 int & const X = val; // expected-error {{'const' qualifier may not be applied to a reference}}
19 int & volatile Y = val; // expected-error {{'volatile' qualifier may not be applied to a reference}}
20 int & const volatile Z = val; /* expected-error {{'const' qualifier may not be applied}} \
  /external/llvm/test/tools/dsymutil/Inputs/
basic3.c 3 volatile int val; variable
8 return foo(val);
12 return ++val;
19 return foo(val + arg);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget/d/
T_iget_2.java 21 public float val = 123.0f; field in class:T_iget_2
24 return val;
T_iget_9.java 21 public float val = 123.0f; field in class:T_iget_9
24 return val;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_wide/d/
T_iget_wide_2.java 21 public double val = 123.0d; field in class:T_iget_wide_2
24 return val;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/
T_invoke_static_4.java 21 static long val = 123456789l; field in class:T_invoke_static_4
24 return val;

Completed in 892 milliseconds

1 2 3 4 5 6 7 8 91011>>