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

1 2 3 4 5

  /src/lib/libc/gen/
dehumanize_number.c 66 long long tmp, tmp2; local in function:dehumanize_number
114 tmp2 = tmp * multiplier;
115 tmp2 = tmp2 / multiplier;
116 if (tmp != tmp2) {
dehumanize_number.c 66 long long tmp, tmp2; local in function:dehumanize_number
114 tmp2 = tmp * multiplier;
115 tmp2 = tmp2 / multiplier;
116 if (tmp != tmp2) {
dehumanize_number.c 66 long long tmp, tmp2; local in function:dehumanize_number
114 tmp2 = tmp * multiplier;
115 tmp2 = tmp2 / multiplier;
116 if (tmp != tmp2) {
  /src/games/hack/
hack.worm.c 211 int tmp, tmp2; local in function:cutworm
239 tmp2 = 0;
241 tmp2 = mtmp2->wormno;
242 wsegs[tmp2] = wsegs[tmp];
243 wgrowtime[tmp2] = 0;
247 if (tmp2)
248 wheads[tmp2] = wtmp;
252 if (tmp2) {
270 if (!tmp2)
hack.worm.c 211 int tmp, tmp2; local in function:cutworm
239 tmp2 = 0;
241 tmp2 = mtmp2->wormno;
242 wsegs[tmp2] = wsegs[tmp];
243 wgrowtime[tmp2] = 0;
247 if (tmp2)
248 wheads[tmp2] = wtmp;
252 if (tmp2) {
270 if (!tmp2)
hack.worm.c 211 int tmp, tmp2; local in function:cutworm
239 tmp2 = 0;
241 tmp2 = mtmp2->wormno;
242 wsegs[tmp2] = wsegs[tmp];
243 wgrowtime[tmp2] = 0;
247 if (tmp2)
248 wheads[tmp2] = wtmp;
252 if (tmp2) {
270 if (!tmp2)
hack.apply.c 162 int tmp2; local in function:use_camera
174 tmp2 = mtmp->mblinded;
175 tmp2 += rnd(1 + 50 / tmp);
176 if (tmp2 > 127)
177 tmp2 = 127;
178 mtmp->mblinded = tmp2;
  /src/sys/arch/sparc/sparc/
cpu_in_cksum.c 162 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
173 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
180 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
185 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
212 uint32_t tmp1, tmp2; local in function:cpu_in_cksum
cpu_in_cksum.c 162 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
173 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
180 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
185 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
212 uint32_t tmp1, tmp2; local in function:cpu_in_cksum
cpu_in_cksum.c 162 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
173 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
180 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
185 : "=r" (sum), "=&r" (tmp1), "=&r" (tmp2)\
212 uint32_t tmp1, tmp2; local in function:cpu_in_cksum
  /src/sys/dev/isa/
wss_isa.c 289 unsigned char tmp, tmp2; local in function:detect_mad16
307 if ((tmp2 = bus_space_read_1(sc->sc_iot, sc->mad_ioh, MC1_PORT)) == tmp) {
308 DPRINTF(("MC1_PORT didn't close after read (0x%02x)\n", tmp2));
315 if ((tmp2 = mad_read(sc, MC1_PORT)) != (tmp ^ 0x80)) {
317 DPRINTF(("Bit revert test failed (0x%02x, 0x%02x)\n", tmp, tmp2));
wss_isa.c 289 unsigned char tmp, tmp2; local in function:detect_mad16
307 if ((tmp2 = bus_space_read_1(sc->sc_iot, sc->mad_ioh, MC1_PORT)) == tmp) {
308 DPRINTF(("MC1_PORT didn't close after read (0x%02x)\n", tmp2));
315 if ((tmp2 = mad_read(sc, MC1_PORT)) != (tmp ^ 0x80)) {
317 DPRINTF(("Bit revert test failed (0x%02x, 0x%02x)\n", tmp, tmp2));
wss_isa.c 289 unsigned char tmp, tmp2; local in function:detect_mad16
307 if ((tmp2 = bus_space_read_1(sc->sc_iot, sc->mad_ioh, MC1_PORT)) == tmp) {
308 DPRINTF(("MC1_PORT didn't close after read (0x%02x)\n", tmp2));
315 if ((tmp2 = mad_read(sc, MC1_PORT)) != (tmp ^ 0x80)) {
317 DPRINTF(("Bit revert test failed (0x%02x, 0x%02x)\n", tmp, tmp2));
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativePPC_64.c 50 sljit_uw tmp2; local in function:load_immediate
86 tmp2 = imm & ((1ul << (63 - shift)) - 1);
88 if (tmp2 <= 0xffff) {
91 return push_inst(compiler, ORI | S(reg) | A(reg) | tmp2);
94 if (tmp2 <= 0xffffffff) {
97 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | (tmp2 >> 16)));
98 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(tmp2)) : SLJIT_SUCCESS;
101 ASM_SLJIT_CLZ(tmp2, shift2);
102 tmp2 <<= shift2;
104 if ((tmp2 & ~0xffff000000000000ul) == 0)
    [all...]
sljitNativePPC_64.c 50 sljit_uw tmp2; local in function:load_immediate
86 tmp2 = imm & ((1ul << (63 - shift)) - 1);
88 if (tmp2 <= 0xffff) {
91 return push_inst(compiler, ORI | S(reg) | A(reg) | tmp2);
94 if (tmp2 <= 0xffffffff) {
97 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | (tmp2 >> 16)));
98 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(tmp2)) : SLJIT_SUCCESS;
101 ASM_SLJIT_CLZ(tmp2, shift2);
102 tmp2 <<= shift2;
104 if ((tmp2 & ~0xffff000000000000ul) == 0)
    [all...]
sljitNativePPC_64.c 50 sljit_uw tmp2; local in function:load_immediate
86 tmp2 = imm & ((1ul << (63 - shift)) - 1);
88 if (tmp2 <= 0xffff) {
91 return push_inst(compiler, ORI | S(reg) | A(reg) | tmp2);
94 if (tmp2 <= 0xffffffff) {
97 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | (tmp2 >> 16)));
98 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(tmp2)) : SLJIT_SUCCESS;
101 ASM_SLJIT_CLZ(tmp2, shift2);
102 tmp2 <<= shift2;
104 if ((tmp2 & ~0xffff000000000000ul) == 0)
    [all...]
  /src/tests/lib/libc/hash/
t_hmac.c 44 uint8_t tmp2[EVP_MAX_MD_SIZE]; local in function:test
96 memset(tmp2, 0, sizeof(tmp2));
100 tmp2len = hmac(names[t], key, i, data, j, tmp2,
101 sizeof(tmp2));
105 if (tmp1[k] != tmp2[k]) {
108 k, tmp1[k], tmp2[k]);
t_hmac.c 44 uint8_t tmp2[EVP_MAX_MD_SIZE]; local in function:test
96 memset(tmp2, 0, sizeof(tmp2));
100 tmp2len = hmac(names[t], key, i, data, j, tmp2,
101 sizeof(tmp2));
105 if (tmp1[k] != tmp2[k]) {
108 k, tmp1[k], tmp2[k]);
t_hmac.c 44 uint8_t tmp2[EVP_MAX_MD_SIZE]; local in function:test
96 memset(tmp2, 0, sizeof(tmp2));
100 tmp2len = hmac(names[t], key, i, data, j, tmp2,
101 sizeof(tmp2));
105 if (tmp1[k] != tmp2[k]) {
108 k, tmp1[k], tmp2[k]);
  /src/sys/arch/evbmips/rasoc/
machdep.c 117 uint32_t tmp1, tmp2; local in function:mach_init
121 tmp2 = sysctl_read(RA_SYSCTL_ID1);
122 memcpy(id2, &tmp2, sizeof(tmp2));
machdep.c 117 uint32_t tmp1, tmp2; local in function:mach_init
121 tmp2 = sysctl_read(RA_SYSCTL_ID1);
122 memcpy(id2, &tmp2, sizeof(tmp2));
machdep.c 117 uint32_t tmp1, tmp2; local in function:mach_init
121 tmp2 = sysctl_read(RA_SYSCTL_ID1);
122 memcpy(id2, &tmp2, sizeof(tmp2));
  /src/common/lib/libc/stdlib/
heapsort.c 95 #define COPY(a, b, count, size, tmp1, tmp2) { \
98 tmp2 = b; \
100 *tmp1++ = *tmp2++; \
144 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \
153 COPY(par, child, count, size, tmp1, tmp2); \
161 COPY(child, k, count, size, tmp1, tmp2); \
164 COPY(child, par, count, size, tmp1, tmp2); \
187 char tmp, *tmp1, *tmp2; local in function:__weak_alias
226 COPY(k, base + nmemb * size, cnt, size, tmp1, tmp2);
227 COPY(base + nmemb * size, base + size, cnt, size, tmp1, tmp2);
    [all...]
heapsort.c 95 #define COPY(a, b, count, size, tmp1, tmp2) { \
98 tmp2 = b; \
100 *tmp1++ = *tmp2++; \
144 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \
153 COPY(par, child, count, size, tmp1, tmp2); \
161 COPY(child, k, count, size, tmp1, tmp2); \
164 COPY(child, par, count, size, tmp1, tmp2); \
187 char tmp, *tmp1, *tmp2; local in function:__weak_alias
226 COPY(k, base + nmemb * size, cnt, size, tmp1, tmp2);
227 COPY(base + nmemb * size, base + size, cnt, size, tmp1, tmp2);
    [all...]
heapsort.c 95 #define COPY(a, b, count, size, tmp1, tmp2) { \
98 tmp2 = b; \
100 *tmp1++ = *tmp2++; \
144 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \
153 COPY(par, child, count, size, tmp1, tmp2); \
161 COPY(child, k, count, size, tmp1, tmp2); \
164 COPY(child, par, count, size, tmp1, tmp2); \
187 char tmp, *tmp1, *tmp2; local in function:__weak_alias
226 COPY(k, base + nmemb * size, cnt, size, tmp1, tmp2);
227 COPY(base + nmemb * size, base + size, cnt, size, tmp1, tmp2);
    [all...]

Completed in 40 milliseconds

1 2 3 4 5