HomeSort by: relevance | last modified time | path
    Searched refs:val (Results 1 - 25 of 8010) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/unbound/dist/contrib/
metrics.awk 13 # everything like total.num.queries=value is put in val["total.num.queries"]
15 val[$1]=$2;
21 print "unbound_hits_queries{type=\"total.num.queries\"} " val["total.num.queries"];
23 if(val["thread" $x ".num.queries"] != "") {
24 print "unbound_hits_queries{type=\"thread" $x ".num.queries\"} " val["thread" $x ".num.queries"];
27 print "unbound_hits_queries{type=\"total.num.cachehits\"} " val["total.num.cachehits"];
28 print "unbound_hits_queries{type=\"total.num.prefetch\"} " val["total.num.prefetch"];
29 print "unbound_hits_queries{type=\"num.query.tcp\"} " val["num.query.tcp"];
30 print "unbound_hits_queries{type=\"num.query.tcpout\"} " val["num.query.tcpout"];
31 print "unbound_hits_queries{type=\"num.query.udpout\"} " val["num.query.udpout"]
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/nds32/lib2csrc-mculib/
_clzdi2.c 26 extern int __clzsi2 (int val);
28 __clzdi2 (long long val)
30 if (val >> 32)
32 return __clzsi2 (val >> 32);
36 return __clzsi2 (val) + 32;
  /src/external/gpl3/gcc.old/dist/libgcc/config/nds32/lib2csrc-mculib/
_clzdi2.c 26 extern int __clzsi2 (int val);
28 __clzdi2 (long long val)
30 if (val >> 32)
32 return __clzsi2 (val >> 32);
36 return __clzsi2 (val) + 32;
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
bswap.c 42 bswap64 (uint64_t val)
45 (val & 0xffULL) << 56 |
46 (val & 0xff00ULL) << 40 |
47 (val & 0xff0000ULL) << 24 |
48 (val & 0xff000000ULL) << 8 |
49 (val & 0xff00000000ULL) >> 8 |
50 (val & 0xff0000000000ULL) >> 24 |
51 (val & 0xff000000000000ULL) >> 40 |
52 (val & 0xff00000000000000ULL) >> 56 ;
59 bswap32 (unsigned int val)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
errno_.c 21 int setErrno( int val )
23 errno = val;
24 return val;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.ada/
info_types.c 21 do_something (int *val)
23 *val = *val + 1;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ada/
info_types.c 21 do_something (int *val)
23 *val = *val + 1;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
nextoverthrow.cc 34 void function1 (int val)
36 throw val;
40 void function2 (int val)
42 function1 (val);
47 void function3 (int val)
52 function1 (val);
61 void rethrow (int val)
65 function1 (val);
73 void finish (int val)
79 function1 (val);
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
nextoverthrow.cc 34 void function1 (int val)
36 throw val;
40 void function2 (int val)
42 function1 (val);
47 void function3 (int val)
52 function1 (val);
61 void rethrow (int val)
65 function1 (val);
73 void finish (int val)
79 function1 (val);
    [all...]
  /src/external/gpl3/gdb/dist/sim/common/
sim-bits.c 36 LSMASKED (unsigned_word val,
41 val &= LSMASK (start, stop);
42 return val;
48 MSMASKED (unsigned_word val,
53 val &= MSMASK (start, stop);
54 return val;
60 LSEXTRACTED (unsigned_word val,
66 return LSEXTRACTED64 (val, start, stop);
74 val &= LSMASK (start, 0);
75 val >>= stop
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-bits.c 36 LSMASKED (unsigned_word val,
41 val &= LSMASK (start, stop);
42 return val;
48 MSMASKED (unsigned_word val,
53 val &= MSMASK (start, stop);
54 return val;
60 LSEXTRACTED (unsigned_word val,
66 return LSEXTRACTED64 (val, start, stop);
74 val &= LSMASK (start, 0);
75 val >>= stop
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
debug-expr.c 9 int val = 1; variable
14 return call_me (&val);
dmsym_main.c 29 int val = test_minsym (); local
31 if (val != 124) /* BREAK */
watchpoint-stops-at-right-insn.c 21 set_global (int val)
23 global = val;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
debug-expr.c 9 int val = 1; variable
14 return call_me (&val);
dmsym_main.c 29 int val = test_minsym (); local
31 if (val != 124) /* BREAK */
watchpoint-stops-at-right-insn.c 21 set_global (int val)
23 global = val;
  /src/external/bsd/ntp/dist/tests/libntp/
atoint.c 20 long val; local
22 TEST_ASSERT_TRUE(atoint(str, &val));
23 TEST_ASSERT_EQUAL(17, val);
28 long val; local
30 TEST_ASSERT_TRUE(atoint(str, &val));
31 TEST_ASSERT_EQUAL(-20, val);
36 long val; local
38 TEST_ASSERT_FALSE(atoint(str, &val));
43 long val; local
45 TEST_ASSERT_FALSE(atoint(str, &val));
50 long val; local
57 long val; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
call-no-debug-prog.f90 29 integer :: val variable in program:main
31 val = some_func (1)
32 print *, val
33 val = string_func ('hello')
34 print *, val
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
call-no-debug-prog.f90 29 integer :: val variable in program:main
31 val = some_func (1)
32 print *, val
33 val = string_func ('hello')
34 print *, val
  /src/sys/arch/hpcarm/dev/
uda1341.h 88 #define DATA0_VC(val) (63 - (((val)+1) * 63) / 100)
89 /* Volume control val=(0<->100) */
92 #define DATA1_BB(val) (((((val)+1) * 15) / 100) << 3)
93 /* Bass Boost control val=(0<->100) */
94 #define DATA1_TR(val) ((((val)+1) * 3) / 100)
95 /* Treble control val=(0<->100) */
115 #define DATA_E0_MA(val) ((((val) + 1) * 31) / 100
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
gdb_setjmp.h 26 #define SIGSETJMP(buf,val) sigsetjmp((buf), val)
27 #define SIGLONGJMP(buf,val) siglongjmp((buf), (val))
30 /* We ignore val here because that's safer and avoids having to check
32 #define SIGSETJMP(buf,val) setjmp(buf)
33 #define SIGLONGJMP(buf,val) longjmp((buf), (val))
  /src/external/gpl3/gdb.old/dist/gdbsupport/
gdb_setjmp.h 26 #define SIGSETJMP(buf,val) sigsetjmp((buf), val)
27 #define SIGLONGJMP(buf,val) siglongjmp((buf), (val))
30 /* We ignore val here because that's safer and avoids having to check
32 #define SIGSETJMP(buf,val) setjmp(buf)
33 #define SIGLONGJMP(buf,val) longjmp((buf), (val))
  /src/external/mit/isl/dist/
isl_test_imath.c 29 mpz_t val; local
39 retval = mp_int_init_value(&val, 0);
41 assert(val.alloc >= val.used);
42 assert(val.used == 1);
43 assert(val.sign == MP_ZPOS);
44 assert(val.digits[0] == 0);
46 retval = mp_int_set_value(&val, -1);
48 assert(val.alloc >= val.used)
    [all...]
  /src/lib/libc/arch/hppa/gen/
fabs.c 18 fabs(double val)
21 __asm volatile("fabs,dbl %0,%0" : "+f" (val));
22 return (val);

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>