Searched refs:val (Results 1 - 25 of 3136) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D921104-1.c3 unsigned long val = 1; local
5 if (val > (unsigned long) ~0)
H A D20020413-1.c1 void test(long double val, int *eval) argument
6 if (val < 0.0l)
7 val = -val;
9 if (val >= tmp)
10 while (tmp < val)
16 else if (val != 0.0l)
17 while (val < tmp)
H A D990827-1.c3 unsigned val= bit & 1; local
6 val++;
7 return zero + ( val>> 1 );
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20000614-1.c8 static inline void foo (unsigned long base, unsigned char val) argument
10 val ^= (1<<2);
11 bar (val & (1<<5) ? "1" : "2");
12 bar (val & (1<<4) ? "1" : "2");
13 bar (val & (1<<3) ? "1" : "2");
14 bar (val & (1<<2) ? "1" : "2");
15 bar (val & (1<<1) ? "1" : "2");
16 bar (val & (1<<0) ? "1" : "2");
17 asm volatile ("": :"a" (val), "d" (base));
H A Dultrasp10.c15 unsigned int val = 1; variable
22 val = shift(32, val);
H A D20010423-1.c7 bar (volatile unsigned int *mem, unsigned int val) argument
9 return __sync_fetch_and_add_si((int *)mem, (int)val);
/openbsd-current/sys/dev/pci/drm/radeon/
H A Ddevlist.awk6 val = substr($0, 3, 14);
7 printf("\t{ " val " },\n");
/openbsd-current/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDefines.h21 const char *DW_TAG_value_to_name(uint32_t val);
23 const char *DW_AT_value_to_name(uint32_t val);
25 const char *DW_FORM_value_to_name(uint32_t val);
27 const char *DW_OP_value_to_name(uint32_t val);
29 const char *DW_ATE_value_to_name(uint32_t val);
31 const char *DW_LANG_value_to_name(uint32_t val);
33 const char *DW_LNS_value_to_name(uint32_t val);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.niklas/
H A Dt140.C3 int val = 1; variable
5 void f () { printf ("PASS\n"); val = 0; }
10 return val;
/openbsd-current/lib/libc/arch/hppa/gen/
H A Dfabs.c11 fabs(double val) argument
14 __asm__ volatile("fabs,dbl %0,%0" : "+f" (val));
15 return (val);
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Ddie_except.t16 my($val, $err);
19 $val = eval {
23 is($val, 1, "true return value from successful eval block");
27 $val = eval {
34 is($val, undef, "undefined return value from eval block with 'die'");
38 $val = eval {
43 is($val, 1, "true return value from successful eval block with localized \$@");
47 $val = eval {
55 is($val, undef,
61 $val
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb82.C4 double val <int> () function
11 printf ("%d\n", val<(int)3> ());
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Dhash.h12 hash_32(uint32_t val, unsigned int bits) argument
14 return (val * GOLDEN_RATIO_32) >> (32 - bits);
21 hash_64(uint64_t val, unsigned int bits) argument
23 return (val * GOLDEN_RATIO_64) >> (64 - bits);
27 #define hash_long(val, bits) hash_64(val, bits)
29 #define hash_long(val, bits) hash_32(val, bits)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dtemps5.C12 C(int i) : val(i) { ; }
13 C(const C& c) : val(c.val) { ; }
14 ~C(void) { val = 999; }
15 C& operator = (const C& c) { val = c.val; return *this; }
17 C& inc(int i) { val += i; return *this; }
19 int val; member in class:C
37 if (f (2).val != 5)
H A Dinit7.C8 test (int val) { x = val; y = 0;} argument
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D950613-1.c15 float val; local
16 val = *(float *) sp;
17 val = -val;
18 *(float *) sp = val;
H A D20030125-1.c4 int val, locked = 0; local
6 while ((val = *valp) != 0) {
23 return val;
/openbsd-current/regress/lib/libpthread/semaphore/sem_getvalue/
H A Dsem_getvalue.c15 int val; local
18 CHECKe(sem_getvalue(&sem, &val));
19 ASSERT(val == 0);
22 CHECKe(sem_getvalue(&sem, &val));
23 ASSERT(val == 1);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash10.C6 enum { val = (N == 0) ? M : GCD<N, M % N>::val }; // ERROR - division enumerator in enum:GCD::__anon6750
10 GCD< 1, 0 >::val; // ERROR - instantiated member in class:GCD
H A Dcrash35.C6 Str(int& val= (*new int()));
10 Str<O>::Str(int& val) {} argument
H A Denum.C6 enum { val = 0 }; enumerator in enum:templ::__anon6752
12 len = templ<int>::val
/openbsd-current/regress/lib/libc/qsort/
H A Dantiqsort.c16 static int *val; /* item values */ variable
22 #define freeze(x) (val[(x)] = nsolid++)
31 if (val[x] == gas && val[y] == gas) {
37 if (val[x] == gas)
39 else if (val[y] == gas)
41 return val[x] > val[y] ? 1 : val[x] < val[
[all...]
/openbsd-current/gnu/gcc/gcc/config/
H A Dmemset.c5 memset (void *dest, int val, size_t len) argument
9 *ptr++ = val;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/execute/
H A D980520-1.f5 values(i,j) = val((i-1)*n+j)
/openbsd-current/sys/dev/pci/drm/i915/
H A Di915_fixed.h15 u32 val; member in struct:__anon650
18 #define FP_16_16_MAX ((uint_fixed_16_16_t){ .val = UINT_MAX })
20 static inline bool is_fixed16_zero(uint_fixed_16_16_t val) argument
22 return val.val == 0;
25 static inline uint_fixed_16_16_t u32_to_fixed16(u32 val) argument
27 uint_fixed_16_16_t fp = { .val = val << 16 };
29 WARN_ON(val > U16_MAX);
36 return DIV_ROUND_UP(fp.val,
60 clamp_u64_to_fixed16(u64 val) argument
69 div_round_up_fixed16(uint_fixed_16_16_t val, uint_fixed_16_16_t d) argument
75 mul_round_up_u32_fixed16(u32 val, uint_fixed_16_16_t mul) argument
86 mul_fixed16(uint_fixed_16_16_t val, uint_fixed_16_16_t mul) argument
97 div_fixed16(u32 val, u32 d) argument
107 div_round_up_u32_fixed16(u32 val, uint_fixed_16_16_t d) argument
118 mul_u32_fixed16(u32 val, uint_fixed_16_16_t mul) argument
[all...]

Completed in 516 milliseconds

1234567891011>>