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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/
separate_map_tree.cpp 8 const int val = common + b + c + c_; // expected-error {{undeclared identifier}} variable
modular_maps.cpp 19 const int val = a + b + c + x; // expected-error {{undeclared identifier}} variable
  /external/compiler-rt/test/BlocksRuntime/
goto.c 21 __block int val = 0; local
23 ^{ val = 1; }();
25 if (val == 0) {
26 goto out_bad; // error: local byref variable val is in the scope of this goto
32 printf("%s: val not updated!\n", argv[0]);
  /external/libunwind/src/unwind/
GetBSP.c 32 unw_word_t val; local
34 unw_get_reg (&context->cursor, UNW_IA64_BSP, &val);
35 return val;
GetCFA.c 31 unw_word_t val; local
33 unw_get_reg (&context->cursor, UNW_REG_SP, &val);
34 return val;
GetGR.c 31 unw_word_t val; local
38 unw_get_reg (&context->cursor, index, &val);
39 return val;
GetIP.c 31 unw_word_t val; local
33 unw_get_reg (&context->cursor, UNW_REG_IP, &val);
34 return val;
GetIPInfo.c 34 unw_word_t val; local
36 unw_get_reg (&context->cursor, UNW_REG_IP, &val);
38 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;
  /external/v8/test/mjsunit/regress/
regress-crbug-571370.js 5 var val = [0.5]; variable
8 arr[i] = val;
10 assertEquals(val, arr[-1]);
  /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;
  /art/test/435-new-instance/src/
TestClass.java 19 public int val; field in class:TestClass
  /bionic/libc/kernel/uapi/asm-mips/asm/
posix_types.h 27 long val[2]; member in struct:__anon238
  /development/ndk/platforms/android-21/arch-mips/include/asm/
posix_types.h 27 long val[2]; member in struct:__anon1402
  /development/ndk/platforms/android-21/arch-mips64/include/asm/
posix_types.h 27 long val[2]; member in struct:__anon1414
  /external/clang/test/CodeGen/
2003-08-21-StmtExpr.c 5 unsigned long val; member in struct:__anon7144
  /external/clang/test/Parser/
cxx-ambig-init-templ.cpp 3 template<int> struct c { c(int) = delete; typedef void val; operator int() const; }; typedef in struct:c
5 int val; variable
8 int k1 = a < b < c, d > ::val, e1;
9 int k2 = a < b, c < d > ::val, e2;
10 int k3 = b < a < c, d > ::val, e3;
11 int k4 = b < c, x, y = d > ::val, e4;
13 int k6 = T2 < b, &S::operator= >::val;
15 int k8 = T2 < b, &S::operator> >::val;
24 int k1 = a < b < c, d > ::val,
25 int k2 = b < a < c, d > ::val,
    [all...]
  /external/compiler-rt/test/asan/TestCases/Helpers/
initialization-nobug-extra.cc 9 static int val = getStructWithDtorValue(); variable
  /external/kernel-headers/original/uapi/asm-mips/asm/
posix_types.h 25 long val[2]; member in struct:__anon12864
  /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);
  /external/mesa3d/src/mesa/drivers/dri/common/
mmio.h 43 uint32_t val; local
46 : "=r" (val)
48 return val;

Completed in 427 milliseconds

1 2 3 4 5 6 7 8 91011>>