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

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenACC/
ACC.cpp 1 //===- ACC.cpp ------ Collection of helpers for OpenACC -------------------===//
9 #include "llvm/Frontend/OpenACC/ACC.h.inc"
16 using namespace acc;
19 #include "llvm/Frontend/OpenACC/ACC.inc"
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/
cond-bp.c 21 int acc = 0, i, j; local
24 acc += i + j; /* STOP */
25 return acc;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/
cond-bp.c 21 int acc = 0, i, j; local
24 acc += i + j; /* STOP */
25 return acc;
  /src/sys/dev/raidframe/
rf_acctrace.c 78 RF_AccTotals_t *acc = &raid->acc_totals; local
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/crypto/external/apache2/openssl/dist/crypto/bn/
bn_nist.c 393 NIST_INT64 acc; /* accumulator */ local
397 acc = load_u32(&rp[0]);
398 acc += bp[3 * 2 - 6];
399 acc += bp[5 * 2 - 6];
400 store_lo32(&rp[0], acc);
401 acc >>= 32;
403 acc += load_u32(&rp[1]);
404 acc += bp[3 * 2 - 5];
405 acc += bp[5 * 2 - 5];
406 store_lo32(&rp[1], acc);
539 NIST_INT64 acc; \/* accumulator *\/ local
698 NIST_INT64 acc; \/* accumulator *\/ local
931 NIST_INT64 acc; \/* accumulator *\/ local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bn/
bn_nist.c 395 NIST_INT64 acc; /* accumulator */ local
399 acc = load_u32(&rp[0]);
400 acc += bp[3 * 2 - 6];
401 acc += bp[5 * 2 - 6];
402 store_lo32(&rp[0], acc);
403 acc >>= 32;
405 acc += load_u32(&rp[1]);
406 acc += bp[3 * 2 - 5];
407 acc += bp[5 * 2 - 5];
408 store_lo32(&rp[1], acc);
542 NIST_INT64 acc; \/* accumulator *\/ local
704 NIST_INT64 acc; \/* accumulator *\/ local
941 NIST_INT64 acc; \/* accumulator *\/ local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_nist.c 374 NIST_INT64 acc; /* accumulator */ local
378 acc = rp[0];
379 acc += bp[3 * 2 - 6];
380 acc += bp[5 * 2 - 6];
381 rp[0] = (unsigned int)acc;
382 acc >>= 32;
384 acc += rp[1];
385 acc += bp[3 * 2 - 5];
386 acc += bp[5 * 2 - 5];
387 rp[1] = (unsigned int)acc;
529 NIST_INT64 acc; \/* accumulator *\/ local
700 NIST_INT64 acc; \/* accumulator *\/ local
946 NIST_INT64 acc; \/* accumulator *\/ local
    [all...]
  /src/external/bsd/libbind/dist/irs/
dns.c 62 struct irs_acc *acc; local
67 if (!(acc = memget(sizeof *acc))) {
71 memset(acc, 0x5e, sizeof *acc);
74 memput(acc, sizeof *acc);
88 acc->private = dns;
90 acc->gr_map = irs_dns_gr;
92 acc->gr_map = NULL
    [all...]
lcl.c 57 struct irs_acc *acc; local
62 if (!(acc = memget(sizeof *acc))) {
66 memset(acc, 0x5e, sizeof *acc);
69 free(acc);
75 acc->private = lcl;
77 acc->gr_map = irs_lcl_gr;
79 acc->gr_map = NULL;
82 acc->pw_map = irs_lcl_pw
    [all...]
nis.c 68 struct irs_acc *acc; local
80 if (!(acc = memget(sizeof *acc))) {
85 memset(acc, 0x5e, sizeof *acc);
86 acc->private = nis;
89 acc->gr_map = irs_nis_gr;
91 acc->gr_map = NULL;
94 acc->pw_map = irs_nis_pw;
96 acc->pw_map = NULL
    [all...]
  /src/sys/arch/ia64/stand/common/
strtol.c 60 unsigned long acc; local
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/crypto/external/bsd/heimdal/dist/lib/roken/
strtoll.c 63 unsigned long long acc; local
96 acc = any = 0;
133 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
137 acc *= base;
138 acc += c;
142 acc = neg ? LLONG_MIN : LLONG_MAX;
148 acc = -acc;
151 return (acc);
    [all...]
strtoull.c 63 unsigned long long acc; local
94 acc = any = 0;
111 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
115 acc *= base;
116 acc += c;
120 acc = ULLONG_MAX;
126 acc = -acc;
129 return (acc);
    [all...]
  /src/external/bsd/libbind/dist/bsd/
strtoul.c 66 u_long acc, cutoff; local
92 for (acc = 0, any = 0;; c = *(const unsigned char*)s++) {
101 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
105 acc *= base;
106 acc += c;
110 acc = ULONG_MAX;
113 acc = -acc;
116 return (acc);
    [all...]
  /src/external/bsd/nvi/dist/clib/
strtol.c 62 register unsigned long acc; local
109 for (acc = 0, any = 0;; c = *s++) {
118 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
122 acc *= base;
123 acc += c;
127 acc = neg ? LONG_MIN : LONG_MAX;
130 acc = -acc;
133 return (acc);
    [all...]
strtoul.c 62 register unsigned long acc; local
88 for (acc = 0, any = 0;; c = *s++) {
97 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
101 acc *= base;
102 acc += c;
106 acc = ULONG_MAX;
109 acc = -acc;
112 return (acc);
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
strtol.c 93 register unsigned long acc; local
140 for (acc = 0, any = 0;; c = *s++) {
149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
153 acc *= base;
154 acc += c;
158 acc = neg ? LONG_MIN : LONG_MAX;
161 acc = -acc;
164 return (acc);
    [all...]
strtoll.c 101 register ullong_type acc; local
148 for (acc = 0, any = 0;; c = *s++) {
157 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
161 acc *= base;
162 acc += c;
166 acc = neg ? LLONG_MIN : LLONG_MAX;
169 acc = -acc;
172 return (acc);
    [all...]
strtoul.c 64 register unsigned long acc; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 acc *= base;
104 acc += c;
108 acc = ULONG_MAX;
111 acc = -acc;
114 return (acc);
    [all...]
strtoull.c 69 register ullong_type acc; local
95 for (acc = 0, any = 0;; c = *s++) {
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
108 acc *= base;
109 acc += c;
113 acc = ULLONG_MAX;
116 acc = -acc;
119 return (acc);
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
strtol.c 93 register unsigned long acc; local
140 for (acc = 0, any = 0;; c = *s++) {
149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
153 acc *= base;
154 acc += c;
158 acc = neg ? LONG_MIN : LONG_MAX;
161 acc = -acc;
164 return (acc);
    [all...]
strtoll.c 101 register ullong_type acc; local
148 for (acc = 0, any = 0;; c = *s++) {
157 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
161 acc *= base;
162 acc += c;
166 acc = neg ? LLONG_MIN : LLONG_MAX;
169 acc = -acc;
172 return (acc);
    [all...]
strtoul.c 64 register unsigned long acc; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 acc *= base;
104 acc += c;
108 acc = ULONG_MAX;
111 acc = -acc;
114 return (acc);
    [all...]
strtoull.c 69 register ullong_type acc; local
95 for (acc = 0, any = 0;; c = *s++) {
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
108 acc *= base;
109 acc += c;
113 acc = ULLONG_MAX;
116 acc = -acc;
119 return (acc);
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
strtol.c 93 register unsigned long acc; local
140 for (acc = 0, any = 0;; c = *s++) {
149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
153 acc *= base;
154 acc += c;
158 acc = neg ? LONG_MIN : LONG_MAX;
161 acc = -acc;
164 return (acc);
    [all...]

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>