Searched refs:base (Results 26 - 50 of 1414) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/mips/nlm/hal/
H A Dfmn.c73 * Calculates the base, start & end and returns the same for a
116 * | base ptr |
139 void nlm_cms_setup_credits(uint64_t base, int destid, int srcid, int credit) argument
144 nlm_write_cms_reg(base, CMS_OUTPUTQ_CREDIT_CFG, val);
149 * base - CMS module base address for this node.
156 int nlm_cms_alloc_spill_q(uint64_t base, int qid, uint64_t spill_base, argument
166 queue_config = nlm_read_cms_reg(base,(CMS_OUTPUTQ_CONFIG(qid)));
175 nlm_write_cms_reg(base,(CMS_OUTPUTQ_CONFIG(qid)),queue_config);
180 uint64_t nlm_cms_get_onchip_queue (uint64_t base, in argument
185 nlm_cms_set_onchip_queue(uint64_t base, int qid, uint64_t val) argument
194 nlm_cms_per_queue_level_intr(uint64_t base, int qid, int sub_type, int intr_val) argument
209 nlm_cms_per_queue_timer_intr(uint64_t base, int qid, int sub_type, int intr_val) argument
225 nlm_cms_outputq_intr_check(uint64_t base, int qid) argument
233 nlm_cms_outputq_clr_intr(uint64_t base, int qid) argument
241 nlm_cms_illegal_dst_error_intr(uint64_t base, int en) argument
250 nlm_cms_timeout_error_intr(uint64_t base, int en) argument
259 nlm_cms_biu_error_resp_intr(uint64_t base, int en) argument
268 nlm_cms_spill_uncorrectable_ecc_error_intr(uint64_t base, int en) argument
277 nlm_cms_spill_correctable_ecc_error_intr(uint64_t base, int en) argument
286 nlm_cms_outputq_uncorrectable_ecc_error_intr(uint64_t base, int en) argument
295 nlm_cms_outputq_correctable_ecc_error_intr(uint64_t base, int en) argument
304 nlm_cms_network_error_status(uint64_t base) argument
331 nlm_cms_trace_setup(uint64_t base, int en, uint64_t trace_base, uint64_t trace_limit, int match_dstid_en, int dst_id, int match_srcid_en, int src_id, int wrap) argument
351 nlm_cms_endian_byte_swap(uint64_t base, int en) argument
[all...]
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dbasename.c45 const char *base; local
53 for (base = name; *name; name++)
57 base = name + 1;
60 return (char *) base;
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dbasename.c45 const char *base; local
53 for (base = name; *name; name++)
57 base = name + 1;
60 return (char *) base;
/freebsd-10.0-release/lib/libc/iconv/
H A D_strtol.h47 _FUNCNAME(const char *nptr, char **endptr, int base) argument
54 /* check base value */
55 if (base && (base < 2 || base > 36)) {
63 panic("%s: invalid base %d", __func__, base);
69 * If base is 0, allow 0x for hex and 0 for octal, else
70 * assume decimal; if base is already 16, allow 0x.
84 if ((base
[all...]
/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dstrtoll.c50 strtoll(const char *nptr, char **endptr, int base) argument
59 * If base is 0, allow 0x for hex and 0 for octal, else
60 * assume decimal; if base is already 16, allow 0x.
74 if ((base == 0 || base == 16) &&
78 base = 16;
80 if (base == 0)
81 base = c == '0' ? 8 : 10;
86 * base. An input number that is greater than this value, if
91 * [-9223372036854775808..9223372036854775807] and the input base
[all...]
/freebsd-10.0-release/lib/libstand/
H A Dstrtoul.c51 strtoul(const char * __restrict nptr, char ** __restrict endptr, int base) argument
74 if ((base == 0 || base == 16) &&
81 base = 16;
83 if (base == 0)
84 base = c == '0' ? 8 : 10;
86 if (base < 2 || base > 36)
89 cutoff = ULONG_MAX / base;
90 cutlim = ULONG_MAX % base;
[all...]
H A Dstrtol.c47 strtol(nptr, endptr, base)
50 int base;
65 * If base is 0, allow 0x for hex and 0 for octal, else
66 * assume decimal; if base is already 16, allow 0x.
76 if ((base == 0 || base == 16) &&
80 base = 16;
82 if (base == 0)
83 base = c == '0' ? 8 : 10;
88 * base
[all...]
/freebsd-10.0-release/contrib/ntp/kernel/sys/
H A Dpcl720.h23 #define pcl720_data(base,bit) (base+(bit>>3))
24 #define pcl720_data_0_7(base) (base+0)
25 #define pcl720_data_8_15(base) (base+1)
26 #define pcl720_data_16_23(base) (base+2)
27 #define pcl720_data_24_31(base) (base
[all...]
/freebsd-10.0-release/sys/libkern/
H A Dstrtol.c50 strtol(nptr, endptr, base)
53 int base;
63 * If base is 0, allow 0x for hex and 0 for octal, else
64 * assume decimal; if base is already 16, allow 0x.
74 if ((base == 0 || base == 16) &&
78 base = 16;
80 if (base == 0)
81 base = c == '0' ? 8 : 10;
86 * base
[all...]
H A Dstrtoul.c50 strtoul(nptr, endptr, base)
53 int base;
72 if ((base == 0 || base == 16) &&
76 base = 16;
78 if (base == 0)
79 base = c == '0' ? 8 : 10;
80 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
81 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
91 if (c >= base)
[all...]
/freebsd-10.0-release/contrib/ntp/include/isc/
H A Dregion.h26 unsigned char * base; member in struct:isc_region
31 char * base; member in struct:isc_textregion
39 const void * base; member in struct:isc_constregion
44 const char * base; member in struct:isc_consttextregion
58 _r->base += _l; \
67 _r->base += _l; \
76 _r->base += _l; \
/freebsd-10.0-release/sys/dev/bxe/
H A Decore_fw_defs.h41 #define CSTORM_ASSERT_LIST_INDEX_OFFSET (IRO[148].base)
43 (IRO[147].base + ((assertListEntry) * IRO[147].m1))
45 (IRO[153].base + (((pfId)>>1) * IRO[153].m1) + (((pfId)&1) * \
48 (IRO[154].base + (((pfId)>>1) * IRO[154].m1) + (((pfId)&1) * \
51 (IRO[159].base + ((funcId) * IRO[159].m1))
53 (IRO[149].base + ((funcId) * IRO[149].m1))
55 (IRO[139].base + ((hcIndex) * IRO[139].m1) + ((sbId) * IRO[139].m2))
57 (IRO[138].base + (((hcIndex)>>2) * IRO[138].m1) + (((hcIndex)&3) \
59 #define CSTORM_IGU_MODE_OFFSET (IRO[157].base)
61 (IRO[317].base
[all...]
/freebsd-10.0-release/lib/libc/locale/
H A Dwcstol.c50 base, locale_t locale)
74 if ((base == 0 || base == 16) &&
78 base = 16;
80 if (base == 0)
81 base = c == L'0' ? 8 : 10;
83 if (base < 2 || base > 36)
88 cutlim = cutoff % base;
89 cutoff /= base;
49 wcstol_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base, locale_t locale) argument
127 wcstol(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base) argument
[all...]
H A Dwcstoll.c56 int base, locale_t locale)
80 if ((base == 0 || base == 16) &&
84 base = 16;
86 if (base == 0)
87 base = c == L'0' ? 8 : 10;
89 if (base < 2 || base > 36)
94 cutlim = cutoff % base;
95 cutoff /= base;
55 wcstoll_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base, locale_t locale) argument
133 wcstoll(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base) argument
[all...]
H A Dwcstoul.c50 int base, locale_t locale)
74 if ((base == 0 || base == 16) &&
78 base = 16;
80 if (base == 0)
81 base = c == L'0' ? 8 : 10;
83 if (base < 2 || base > 36)
86 cutoff = ULONG_MAX / base;
87 cutlim = ULONG_MAX % base;
49 wcstoul_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base, locale_t locale) argument
125 wcstoul(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base) argument
[all...]
H A Dwcstoull.c56 int base, locale_t locale)
80 if ((base == 0 || base == 16) &&
84 base = 16;
86 if (base == 0)
87 base = c == L'0' ? 8 : 10;
89 if (base < 2 || base > 36)
92 cutoff = ULLONG_MAX / base;
93 cutlim = ULLONG_MAX % base;
55 wcstoull_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base, locale_t locale) argument
131 wcstoull(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base) argument
[all...]
H A Dwcstoumax.c56 int base, locale_t locale)
80 if ((base == 0 || base == 16) &&
84 base = 16;
86 if (base == 0)
87 base = c == L'0' ? 8 : 10;
89 if (base < 2 || base > 36)
92 cutoff = UINTMAX_MAX / base;
93 cutlim = UINTMAX_MAX % base;
55 wcstoumax_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base, locale_t locale) argument
131 wcstoumax(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base) argument
[all...]
/freebsd-10.0-release/lib/libc/stdlib/
H A Dstrtoimax.c54 strtoimax_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
66 * If base is 0, allow 0x for hex and 0 for octal, else
67 * assume decimal; if base is already 16, allow 0x.
81 if ((base == 0 || base == 16) &&
88 base = 16;
90 if (base == 0)
91 base = c == '0' ? 8 : 10;
93 if (base < 2 || base > 3
150 strtoimax(const char * __restrict nptr, char ** __restrict endptr, int base) argument
[all...]
H A Dstrtol.c55 strtol_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
67 * If base is 0, allow 0x for hex and 0 for octal, else
68 * assume decimal; if base is already 16, allow 0x.
82 if ((base == 0 || base == 16) &&
89 base = 16;
91 if (base == 0)
92 base = c == '0' ? 8 : 10;
94 if (base < 2 || base > 3
150 strtol(const char * __restrict nptr, char ** __restrict endptr, int base) argument
[all...]
H A Dstrtoll.c54 strtoll_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
66 * If base is 0, allow 0x for hex and 0 for octal, else
67 * assume decimal; if base is already 16, allow 0x.
81 if ((base == 0 || base == 16) &&
88 base = 16;
90 if (base == 0)
91 base = c == '0' ? 8 : 10;
93 if (base < 2 || base > 3
150 strtoll(const char * __restrict nptr, char ** __restrict endptr, int base) argument
[all...]
H A Dstrtoul.c54 strtoul_l(const char * __restrict nptr, char ** __restrict endptr, int base, locale_t locale) argument
78 if ((base == 0 || base == 16) &&
85 base = 16;
87 if (base == 0)
88 base = c == '0' ? 8 : 10;
90 if (base < 2 || base > 36)
93 cutoff = ULONG_MAX / base;
94 cutlim = ULONG_MAX % base;
127 strtoul(const char * __restrict nptr, char ** __restrict endptr, int base) argument
[all...]
H A Dstrtoull.c54 strtoull_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
79 if ((base == 0 || base == 16) &&
86 base = 16;
88 if (base == 0)
89 base = c == '0' ? 8 : 10;
91 if (base < 2 || base > 36)
94 cutoff = ULLONG_MAX / base;
95 cutlim = ULLONG_MAX % base;
128 strtoull(const char * __restrict nptr, char ** __restrict endptr, int base) argument
[all...]
H A Dstrtoumax.c54 strtoumax_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
79 if ((base == 0 || base == 16) &&
86 base = 16;
88 if (base == 0)
89 base = c == '0' ? 8 : 10;
91 if (base < 2 || base > 36)
94 cutoff = UINTMAX_MAX / base;
95 cutlim = UINTMAX_MAX % base;
128 strtoumax(const char * __restrict nptr, char ** __restrict endptr, int base) argument
[all...]
/freebsd-10.0-release/contrib/ntp/libisc/
H A Dinet_ntop.c119 struct { int base, len; } best, cur; member in struct:__anon3795
131 best.base = -1;
133 cur.base = -1;
137 if (cur.base == -1)
138 cur.base = i, cur.len = 1;
142 if (cur.base != -1) {
143 if (best.base == -1 || cur.len > best.len)
145 cur.base = -1;
149 if (cur.base != -1) {
150 if (best.base
[all...]
/freebsd-10.0-release/bin/ed/test/
H A Dckscripts.sh23 # base=`expr $i : '\([^.]*\)'`
24 # base=`echo $i | sed 's/\..*//'`
25 base=`$ED - \!"echo $i" <<-EOF
28 if $base.ed; then
29 if cmp -s $base.o $base.r; then :; else
30 echo "*** Output $base.o of script $i is incorrect ***"

Completed in 164 milliseconds

1234567891011>>