HomeSort by: relevance | last modified time | path
    Searched defs:acc (Results 1 - 25 of 72) sorted by relevancy

1 2 3

  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
alphascale-asm9260.dtsi 26 clocks = <&acc CLKID_SYS_CPU>;
43 acc: clock-controller@80040000 { label
60 clocks = <&acc CLKID_AHB_TIMER0>;
alphascale-asm9260.dtsi 26 clocks = <&acc CLKID_SYS_CPU>;
43 acc: clock-controller@80040000 { label
60 clocks = <&acc CLKID_AHB_TIMER0>;
alphascale-asm9260.dtsi 26 clocks = <&acc CLKID_SYS_CPU>;
43 acc: clock-controller@80040000 { label
60 clocks = <&acc CLKID_AHB_TIMER0>;
  /src/sys/dev/raidframe/
rf_acctrace.c 78 RF_AccTotals_t *acc = &raid->acc_totals; local in function:rf_LogTraceRec
86 acc->num_log_ents++;
88 acc->recon_start_to_fetch_us += rec->specific.recon.recon_start_to_fetch_us;
89 acc->recon_fetch_to_return_us += rec->specific.recon.recon_fetch_to_return_us;
90 acc->recon_return_to_submit_us += rec->specific.recon.recon_return_to_submit_us;
91 acc->recon_num_phys_ios += rec->num_phys_ios;
92 acc->recon_phys_io_us += rec->phys_io_us;
93 acc->recon_diskwait_us += rec->diskwait_us;
94 acc->recon_reccount++;
96 RF_HIST_ADD(acc->tot_hist, rec->total_us)
    [all...]
rf_acctrace.c 78 RF_AccTotals_t *acc = &raid->acc_totals; local in function:rf_LogTraceRec
86 acc->num_log_ents++;
88 acc->recon_start_to_fetch_us += rec->specific.recon.recon_start_to_fetch_us;
89 acc->recon_fetch_to_return_us += rec->specific.recon.recon_fetch_to_return_us;
90 acc->recon_return_to_submit_us += rec->specific.recon.recon_return_to_submit_us;
91 acc->recon_num_phys_ios += rec->num_phys_ios;
92 acc->recon_phys_io_us += rec->phys_io_us;
93 acc->recon_diskwait_us += rec->diskwait_us;
94 acc->recon_reccount++;
96 RF_HIST_ADD(acc->tot_hist, rec->total_us)
    [all...]
rf_acctrace.c 78 RF_AccTotals_t *acc = &raid->acc_totals; local in function:rf_LogTraceRec
86 acc->num_log_ents++;
88 acc->recon_start_to_fetch_us += rec->specific.recon.recon_start_to_fetch_us;
89 acc->recon_fetch_to_return_us += rec->specific.recon.recon_fetch_to_return_us;
90 acc->recon_return_to_submit_us += rec->specific.recon.recon_return_to_submit_us;
91 acc->recon_num_phys_ios += rec->num_phys_ios;
92 acc->recon_phys_io_us += rec->phys_io_us;
93 acc->recon_diskwait_us += rec->diskwait_us;
94 acc->recon_reccount++;
96 RF_HIST_ADD(acc->tot_hist, rec->total_us)
    [all...]
  /src/common/lib/libc/stdlib/
_strtol.h 59 __INT acc, cutoff; local in function:_FUNCNAME
149 for (acc = 0, any = 0;; c = *s++) {
163 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
164 acc = __INT_MIN;
174 acc *= base;
175 acc -= i;
178 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
179 acc = __INT_MAX
    [all...]
_strtoul.h 59 __UINT acc, cutoff; local in function:_FUNCNAME
127 for (acc = 0, any = 0;; c = *s++) {
140 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
141 acc = __UINT_MAX;
151 acc *= (__UINT)base;
152 acc += i;
156 acc = -acc;
160 return(acc);
    [all...]
_strtol.h 59 __INT acc, cutoff; local in function:_FUNCNAME
149 for (acc = 0, any = 0;; c = *s++) {
163 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
164 acc = __INT_MIN;
174 acc *= base;
175 acc -= i;
178 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
179 acc = __INT_MAX
    [all...]
_strtoul.h 59 __UINT acc, cutoff; local in function:_FUNCNAME
127 for (acc = 0, any = 0;; c = *s++) {
140 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
141 acc = __UINT_MAX;
151 acc *= (__UINT)base;
152 acc += i;
156 acc = -acc;
160 return(acc);
    [all...]
_strtol.h 59 __INT acc, cutoff; local in function:_FUNCNAME
149 for (acc = 0, any = 0;; c = *s++) {
163 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
164 acc = __INT_MIN;
174 acc *= base;
175 acc -= i;
178 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
179 acc = __INT_MAX
    [all...]
_strtoul.h 59 __UINT acc, cutoff; local in function:_FUNCNAME
127 for (acc = 0, any = 0;; c = *s++) {
140 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
141 acc = __UINT_MAX;
151 acc *= (__UINT)base;
152 acc += i;
156 acc = -acc;
160 return(acc);
    [all...]
  /src/sys/arch/ia64/stand/common/
strtol.c 60 unsigned long acc; local in function:strtol
112 for (acc = 0, any = 0;; c = *s++) {
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
127 acc *= base;
128 acc += c;
132 acc = neg ? LONG_MIN : LONG_MAX;
135 acc = -acc;
138 return (acc);
    [all...]
strtol.c 60 unsigned long acc; local in function:strtol
112 for (acc = 0, any = 0;; c = *s++) {
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
127 acc *= base;
128 acc += c;
132 acc = neg ? LONG_MIN : LONG_MAX;
135 acc = -acc;
138 return (acc);
    [all...]
strtol.c 60 unsigned long acc; local in function:strtol
112 for (acc = 0, any = 0;; c = *s++) {
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
127 acc *= base;
128 acc += c;
132 acc = neg ? LONG_MIN : LONG_MAX;
135 acc = -acc;
138 return (acc);
    [all...]
  /src/lib/libc/locale/
_wcstol.h 57 __INT acc, cutoff; local in function:INT_FUNCNAME
66 (void)&acc; (void)&cutoff;
114 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
123 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
125 acc = __INT_MIN;
129 acc *= base;
130 acc -= i;
133 if (acc > cutoff || (acc == cutoff && i > cutlim))
    [all...]
_wcstoul.h 56 __UINT acc, cutoff; local in function:INT_FUNCNAME
100 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
108 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
110 acc = __UINT_MAX;
114 acc *= (__UINT)base;
115 acc += i;
119 acc = -acc;
122 return (acc);
    [all...]
_wcstol.h 57 __INT acc, cutoff; local in function:INT_FUNCNAME
66 (void)&acc; (void)&cutoff;
114 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
123 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
125 acc = __INT_MIN;
129 acc *= base;
130 acc -= i;
133 if (acc > cutoff || (acc == cutoff && i > cutlim))
    [all...]
_wcstoul.h 56 __UINT acc, cutoff; local in function:INT_FUNCNAME
100 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
108 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
110 acc = __UINT_MAX;
114 acc *= (__UINT)base;
115 acc += i;
119 acc = -acc;
122 return (acc);
    [all...]
_wcstol.h 57 __INT acc, cutoff; local in function:INT_FUNCNAME
66 (void)&acc; (void)&cutoff;
114 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
123 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
125 acc = __INT_MIN;
129 acc *= base;
130 acc -= i;
133 if (acc > cutoff || (acc == cutoff && i > cutlim))
    [all...]
_wcstoul.h 56 __UINT acc, cutoff; local in function:INT_FUNCNAME
100 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
108 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
110 acc = __UINT_MAX;
114 acc *= (__UINT)base;
115 acc += i;
119 acc = -acc;
122 return (acc);
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/
argon2-encoding.c 42 unsigned long acc; local in function:decode_decimal
44 acc = 0;
53 if (acc > (ULONG_MAX / 10)) {
56 acc *= 10;
57 if ((unsigned long) c > (ULONG_MAX - acc)) {
60 acc += (unsigned long) c;
65 *v = acc;
argon2-encoding.c 42 unsigned long acc; local in function:decode_decimal
44 acc = 0;
53 if (acc > (ULONG_MAX / 10)) {
56 acc *= 10;
57 if ((unsigned long) c > (ULONG_MAX - acc)) {
60 acc += (unsigned long) c;
65 *v = acc;
argon2-encoding.c 42 unsigned long acc; local in function:decode_decimal
44 acc = 0;
53 if (acc > (ULONG_MAX / 10)) {
56 acc *= 10;
57 if ((unsigned long) c > (ULONG_MAX - acc)) {
60 acc += (unsigned long) c;
65 *v = acc;
  /src/sys/external/isc/libsodium/dist/src/libsodium/sodium/
codecs.c 189 unsigned int acc = 0U; local in function:sodium_bin2base64
207 acc = (acc << 8) + bin[bin_pos++];
211 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc >> acc_len) & 0x3F);
215 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc << (6 - acc_len)) & 0x3F);
219 acc = (acc << 8) + bin[bin_pos++];
223 b64[b64_pos++] = (char) b64_byte_to_char((acc >> acc_len) & 0x3F);
227 b64[b64_pos++] = (char) b64_byte_to_char((acc << (6 - acc_len)) & 0x3F);
276 unsigned int acc = 0U local in function:sodium_base642bin
    [all...]

Completed in 467 milliseconds

1 2 3