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

1234567891011>>

/netbsd-current/external/bsd/unbound/dist/contrib/
H A Dmetrics.awk13 # 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["nu
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/nds32/lib2csrc-mculib/
H A D_clzdi2.c26 extern int __clzsi2 (int val);
28 __clzdi2 (long long val) argument
30 if (val >> 32)
32 return __clzsi2 (val >> 32);
36 return __clzsi2 (val) + 32;
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/nds32/lib2csrc-mculib/
H A D_clzdi2.c26 extern int __clzsi2 (int val);
28 __clzdi2 (long long val) argument
30 if (val >> 32)
32 return __clzsi2 (val >> 32);
36 return __clzsi2 (val) + 32;
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dbswap.c42 bswap64 (uint64_t val) argument
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) argument
71 bswap16(unsigned short val) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ada/
H A Dinfo_types.c21 do_something (int *val) argument
23 *val = *val + 1;
H A Dpp-rec-component.py21 def __init__(self, val):
22 self.val = val
25 secs = int(self.val['secs'])
29 def time_sniffer(val):
30 if val.type.tag == "pck__time_t":
31 return TimeTPrinter(val)
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.ada/
H A Dinfo_types.c21 do_something (int *val) argument
23 *val = *val + 1;
H A Dpp-rec-component.py21 def __init__(self, val):
22 self.val = val
25 secs = int(self.val["secs"])
29 def time_sniffer(val):
30 if val.type.tag == "pck__time_t":
31 return TimeTPrinter(val)
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dnextoverthrow.cc34 void function1 (int val) argument
36 throw val;
40 void function2 (int val) argument
42 function1 (val);
47 void function3 (int val) argument
52 function1 (val);
61 void rethrow (int val) argument
65 function1 (val);
73 void finish (int val) argument
79 function1 (val);
87 until(int val) argument
93 resumebpt(int val) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-plugin/
H A Dpr22983b.c1 int func_attr_used_disabled(int val){ argument
2 return val + 1;
5 int func_attr_used_enabled(int val){ argument
6 return val + 1;
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dnextoverthrow.cc34 void function1 (int val) argument
36 throw val;
40 void function2 (int val) argument
42 function1 (val);
47 void function3 (int val) argument
52 function1 (val);
61 void rethrow (int val) argument
65 function1 (val);
73 void finish (int val) argument
79 function1 (val);
87 until(int val) argument
93 resumebpt(int val) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/common/
H A Dsim-bits.c33 LSMASKED (unsigned_word val,
38 val &= LSMASK (start, stop);
39 return val;
45 MSMASKED (unsigned_word val,
50 val &= MSMASK (start, stop);
51 return val;
57 LSEXTRACTED (unsigned_word val,
63 return LSEXTRACTED64 (val, start, stop);
71 val &= LSMASK (start, 0);
72 val >>
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/common/
H A Dsim-bits.c36 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 >>
[all...]
/netbsd-current/lib/libc/gen/
H A DLint_ldexp.c12 ldexp(val, exp)
13 double val;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Ddmsym_main.c29 int val = test_minsym (); local
31 if (val != 124) /* BREAK */
H A Dwatchpoint-stops-at-right-insn.c21 set_global (int val) argument
23 global = val;
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Ddmsym_main.c29 int val = test_minsym (); local
31 if (val != 124) /* BREAK */
H A Ddebug-expr.c9 int val = 1; variable
14 return call_me (&val);
H A Dwatchpoint-stops-at-right-insn.c21 set_global (int val) argument
23 global = val;
/netbsd-current/external/bsd/ntp/dist/tests/libntp/
H A Datoint.c20 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...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
H A Dcall-no-debug-prog.f9029 integer :: val variable in program:main
31 val = some_func (1)
32 print *, val
33 val = string_func ('hello')
34 print *, val
/netbsd-current/sys/arch/hpcarm/dev/
H A Duda1341.h88 #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) ((((va
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dgdb_setjmp.h26 #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))
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dgdb_setjmp.h26 #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))
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.rust/
H A Dpp.py25 def __init__(self, val):
26 self.val = val
29 return "x(" + str(self.val["x"]) + ")"
32 def lookup_function(val):
33 "Look-up and return a pretty-printer that can print val."
36 type = val.type
45 return inner_print(val)

Completed in 400 milliseconds

1234567891011>>