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

1 2 3 4 5 6 7 8 91011>>

  /external/libunwind/tests/
ident.c 2 f (long val)
4 return val;
  /external/u-boot/arch/x86/include/asm/
control_regs.h 24 unsigned long val; local
26 asm volatile ("movl %%cr0, %0" : "=r" (val) : : "memory");
27 return val;
30 static inline void write_cr0(unsigned long val)
32 asm volatile ("movl %0, %%cr0" : : "r" (val) : "memory");
37 unsigned long val; local
39 asm volatile("mov %%cr2,%0\n\t" : "=r" (val) : : "memory");
40 return val;
45 unsigned long val; local
47 asm volatile("mov %%cr3,%0\n\t" : "=r" (val) : : "memory")
53 unsigned long val; local
61 unsigned long val = 0; \/* Damn you, gcc! *\/ local
    [all...]
  /external/u-boot/include/
bcd.h 13 static inline unsigned int bcd2bin(unsigned int val)
15 return ((val) & 0x0f) + ((val & 0xff) >> 4) * 10;
18 static inline unsigned int bin2bcd(unsigned int val)
20 return (((val / 10) << 4) | (val % 10));
  /art/test/434-invoke-direct/src/
InvokeDirectSuper.java 18 public int val; field in class:InvokeDirectSuper
21 return val;
  /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)
  /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
  /external/libcxx/test/support/
truncate_fp.h 10 inline long double truncate_fp(long double val) {
11 volatile long double sink = val;
15 inline double truncate_fp(double val) {
16 volatile double sink = val;
20 inline float truncate_fp(float val) {
21 volatile float sink = val;
  /external/strace/linux/sh/
arch_getrval2.c 4 unsigned long val; local
5 if (upeek(tcp, 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 )
  /external/u-boot/arch/microblaze/include/asm/
asm.h 9 #define NGET(val, fslnum) \
10 __asm__ __volatile__ ("nget %0, rfsl" #fslnum :"=r" (val));
12 #define GET(val, fslnum) \
13 __asm__ __volatile__ ("get %0, rfsl" #fslnum :"=r" (val));
15 #define NCGET(val, fslnum) \
16 __asm__ __volatile__ ("ncget %0, rfsl" #fslnum :"=r" (val));
18 #define CGET(val, fslnum) \
19 __asm__ __volatile__ ("cget %0, rfsl" #fslnum :"=r" (val));
21 #define NPUT(val, fslnum) \
22 __asm__ __volatile__ ("nput %0, rfsl" #fslnum ::"r" (val));
    [all...]
  /external/clang/test/CodeGenCXX/
switch-case-folding-2.cpp 5 int test(int val){
6 switch (val) {
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/arm/cryptocell/
util.h 24 #define UTIL_INVERSE_UINT32_BYTES(val) (val)
26 #define UTIL_INVERSE_UINT32_BYTES(val) \
27 (((val) >> 24) | (((val) & 0x00FF0000) >> 8) | (((val) & 0x0000FF00) << 8) | (((val) & 0x000000FF) << 24))
32 #define UTIL_REVERT_UINT32_BYTES(val) \
33 (((val) >> 24) | (((val) & 0x00FF0000) >> 8) | (((val) & 0x0000FF00) << 8) | (((val) & 0x000000FF) << 24)
    [all...]
  /external/strace/
negated_errno.h 37 is_negated_errno(kernel_ulong_t val)
42 if (current_klongsize < sizeof(val)) {
43 val = (uint32_t) val;
48 return val >= max;
  /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/u-boot/include/bedbug/
regs.h 169 #define SET_REGISTER( str, val ) \
170 ({ unsigned long __value = (val); \
180 #define SET_CR(val) SET_REGISTER( "mtcr %0", val )
182 #define SET_MSR(val) SET_REGISTER( "mtmsr %0", val )
184 #define SET_XER(val) SET_REGISTER( "mtspr 1,%0", val )
186 #define SET_LR(val) SET_REGISTER( "mtspr 8,%0", val )
    [all...]
  /external/v8/src/wasm/
leb-helper.h 23 static void write_u32v(uint8_t** dest, uint32_t val) {
24 while (val >= 0x80) {
25 *((*dest)++) = static_cast<uint8_t>(0x80 | (val & 0x7F));
26 val >>= 7;
28 *((*dest)++) = static_cast<uint8_t>(val & 0x7F);
33 static void write_i32v(uint8_t** dest, int32_t val) {
34 if (val >= 0) {
35 while (val >= 0x40) { // prevent sign extension.
36 *((*dest)++) = static_cast<uint8_t>(0x80 | (val & 0x7F));
37 val >>= 7
    [all...]
  /developers/build/prebuilts/gradle/JobScheduler/kotlinApp/app/src/main/java/com/example/android/jobscheduler/
Constants.kt 22 @JvmField val MSG_UNCOLOR_START = 0
23 @JvmField val MSG_UNCOLOR_STOP = 1
24 @JvmField val MSG_COLOR_START = 2
25 @JvmField val MSG_COLOR_STOP = 3
27 @JvmField val MESSENGER_INTENT_KEY = "${BuildConfig.APPLICATION_ID}.MESSENGER_INTENT_KEY"
28 @JvmField val WORK_DURATION_KEY = "${BuildConfig.APPLICATION_ID}.WORK_DURATION_KEY"
  /developers/samples/android/background/JobScheduler/kotlinApp/app/src/main/java/com/example/android/jobscheduler/
Constants.kt 22 @JvmField val MSG_UNCOLOR_START = 0
23 @JvmField val MSG_UNCOLOR_STOP = 1
24 @JvmField val MSG_COLOR_START = 2
25 @JvmField val MSG_COLOR_STOP = 3
27 @JvmField val MESSENGER_INTENT_KEY = "${BuildConfig.APPLICATION_ID}.MESSENGER_INTENT_KEY"
28 @JvmField val WORK_DURATION_KEY = "${BuildConfig.APPLICATION_ID}.WORK_DURATION_KEY"
  /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/capstone/
SStream.c 56 void printInt64Bang(SStream *O, int64_t val)
58 if (val >= 0) {
59 if (val > HEX_THRESHOLD)
60 SStream_concat(O, "#0x%"PRIx64, val);
62 SStream_concat(O, "#%"PRIu64, val);
64 if (val <- HEX_THRESHOLD)
65 SStream_concat(O, "#-0x%"PRIx64, -val);
67 SStream_concat(O, "#-%"PRIu64, -val);
71 void printUInt64Bang(SStream *O, uint64_t val)
73 if (val > HEX_THRESHOLD
    [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}} \
  /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);

Completed in 3543 milliseconds

1 2 3 4 5 6 7 8 91011>>