HomeSort by relevance Sort by last modified time
    Searched refs:val (Results 1 - 25 of 10618) 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/fio/lib/
pow2.h 7 static inline bool is_power_of_2(uint64_t val)
9 return (val != 0 && ((val & (val - 1)) == 0));
  /external/clang/test/CodeGen/
forwarding-blocks-if.c 6 int f0(int val) {
7 if (val == 0) {
9 } else if (val == 1) {
23 int f1(int val, int g) {
24 if (val == 0)
  /external/strace/
xlat.h 7 uint64_t val; member in struct:xlat
11 # define XLAT(val) { (unsigned)(val), #val }
12 # define XLAT_PAIR(val, str) { (unsigned)(val), str }
13 # define XLAT_TYPE(type, val) { (type)(val), #val }
14 # define XLAT_TYPE_PAIR(type, val, str) { (type)(val), str
    [all...]
  /developers/build/prebuilts/gradle/DownloadableFonts/kotlinApp/app/src/main/kotlin/com/example/android/downloadablefonts/
Constants.kt 24 val WIDTH_DEFAULT = 100
25 val WIDTH_MAX = 1000
26 val WIDTH_MIN = 0
28 val WEIGHT_DEFAULT = 400
29 val WEIGHT_MAX = 1000
30 val WEIGHT_MIN = 0
32 val ITALIC_DEFAULT = 0f
33 val ITALIC_MAX = 1f
34 val ITALIC_MIN = 0f
  /developers/samples/android/ui/fonts/DownloadableFonts/kotlinApp/app/src/main/kotlin/com/example/android/downloadablefonts/
Constants.kt 24 val WIDTH_DEFAULT = 100
25 val WIDTH_MAX = 1000
26 val WIDTH_MIN = 0
28 val WEIGHT_DEFAULT = 400
29 val WEIGHT_MAX = 1000
30 val WEIGHT_MIN = 0
32 val ITALIC_DEFAULT = 0f
33 val ITALIC_MAX = 1f
34 val ITALIC_MIN = 0f
  /frameworks/support/lifecycle/compiler/src/main/kotlin/android/arch/lifecycle/
ErrorMessages.kt 20 const val TOO_MANY_ARGS = "callback method cannot have more than 2 parameters"
21 const val TOO_MANY_ARGS_NOT_ON_ANY = "only callback annotated with ON_ANY " +
23 const val INVALID_SECOND_ARGUMENT = "2nd argument of a callback method" +
25 const val INVALID_FIRST_ARGUMENT = "1st argument of a callback method must be " +
27 const val INVALID_METHOD_MODIFIER = "method marked with OnLifecycleEvent annotation can " +
29 const val INVALID_CLASS_MODIFIER = "class containing OnLifecycleEvent methods can not be " +
31 const val INVALID_STATE_OVERRIDE_METHOD = "overridden method must handle the same " +
33 const val INVALID_ENCLOSING_ELEMENT =
35 const val INVALID_ANNOTATED_ELEMENT = "OnLifecycleEvent can only be added to methods"
  /external/v8/src/wasm/
leb-helper.h 19 static void write_u32v(uint8_t** dest, uint32_t val) {
20 while (val >= 0x80) {
21 *((*dest)++) = static_cast<uint8_t>(0x80 | (val & 0x7F));
22 val >>= 7;
24 *((*dest)++) = static_cast<uint8_t>(val & 0x7F);
29 static void write_i32v(uint8_t** dest, int32_t val) {
30 if (val >= 0) {
31 while (val >= 0x40) { // prevent sign extension.
32 *((*dest)++) = static_cast<uint8_t>(0x80 | (val & 0x7F));
33 val >>= 7
    [all...]
  /external/strace/linux/sh/
arch_getrval2.c 4 unsigned 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/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);
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
longjmp.c 17 void longjmp(jmp_buf env, int val)
19 LongJump(env, (UINTN)((val == 0) ? 1 : val));
  /external/syslinux/core/fs/xfs/
misc.h 22 static inline uint64_t be64_to_cpu(uint64_t val)
24 return (uint64_t)((((uint64_t)val & (uint64_t)0x00000000000000ffULL) << 56) |
25 (((uint64_t)val & (uint64_t)0x000000000000ff00ULL) << 40) |
26 (((uint64_t)val & (uint64_t)0x0000000000ff0000ULL) << 24) |
27 (((uint64_t)val & (uint64_t)0x00000000ff000000ULL) << 8) |
28 (((uint64_t)val & (uint64_t)0x000000ff00000000ULL) >> 8) |
29 (((uint64_t)val & (uint64_t)0x0000ff0000000000ULL) >> 24) |
30 (((uint64_t)val & (uint64_t)0x00ff000000000000ULL) >> 40) |
31 (((uint64_t)val & (uint64_t)0xff00000000000000ULL) >> 56));
35 static inline uint32_t be32_to_cpu(uint32_t val)
    [all...]
  /external/syslinux/extlinux/
misc.h 22 static inline uint64_t be64_to_cpu(uint64_t val)
24 return (uint64_t)((((uint64_t)val & (uint64_t)0x00000000000000ffULL) << 56) |
25 (((uint64_t)val & (uint64_t)0x000000000000ff00ULL) << 40) |
26 (((uint64_t)val & (uint64_t)0x0000000000ff0000ULL) << 24) |
27 (((uint64_t)val & (uint64_t)0x00000000ff000000ULL) << 8) |
28 (((uint64_t)val & (uint64_t)0x000000ff00000000ULL) >> 8) |
29 (((uint64_t)val & (uint64_t)0x0000ff0000000000ULL) >> 24) |
30 (((uint64_t)val & (uint64_t)0x00ff000000000000ULL) >> 40) |
31 (((uint64_t)val & (uint64_t)0xff00000000000000ULL) >> 56));
35 static inline uint32_t be32_to_cpu(uint32_t val)
    [all...]
  /external/clang/test/Modules/
separate_map_tree.cpp 8 const int val = common + b + c + c_; 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}} \

Completed in 3590 milliseconds

1 2 3 4 5 6 7 8 91011>>