Home
last modified time | relevance | path

Searched refs:acc (Results 1 – 5 of 5) sorted by relevance

/trusted-firmware-a/lib/libc/
A Dstrtoul.c51 unsigned long acc; in strtoul() local
82 acc = any = 0; in strtoul()
97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
101 acc *= base; in strtoul()
102 acc += c; in strtoul()
106 acc = ULONG_MAX; in strtoul()
108 acc = -acc; in strtoul()
111 return (acc); in strtoul()
A Dstrtoull.c51 unsigned long long acc; in strtoull() local
82 acc = any = 0; in strtoull()
97 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
101 acc *= base; in strtoull()
102 acc += c; in strtoull()
106 acc = ULLONG_MAX; in strtoull()
108 acc = -acc; in strtoull()
111 return (acc); in strtoull()
A Dstrtol.c51 unsigned long acc; in strtol() local
84 acc = any = 0; in strtol()
118 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
122 acc *= base; in strtol()
123 acc += c; in strtol()
127 acc = neg ? LONG_MIN : LONG_MAX; in strtol()
129 acc = -acc; in strtol()
132 return (acc); in strtol()
A Dstrtoll.c51 unsigned long long acc; in strtoll() local
84 acc = any = 0; in strtoll()
119 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll()
123 acc *= base; in strtoll()
124 acc += c; in strtoll()
128 acc = neg ? LLONG_MIN : LLONG_MAX; in strtoll()
130 acc = -acc; in strtoll()
133 return (acc); in strtoll()
/trusted-firmware-a/build/qemu/release/bl1/
A Dbl1.dump1290 acc: f9400400 ldr x0, [x0, #8]
2430 1acc: b0070260 adrp x0, e04e000 <memmap_dev_info>
3616 2acc: 54000061 b.ne 2ad8 <memcmp+0x18> // b.any

Completed in 8 milliseconds