/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)\ 190 : "=r" (sum), "=&r" (tmp1) \ 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)\ 190 : "=r" (sum), "=&r" (tmp1) \ 212 uint32_t tmp1, tmp2; local in function:cpu_in_cksum
|
/src/sys/dev/isapnp/ |
i82365_isapnp.c | 117 int tmp1; local in function:pcic_isapnp_attach 143 tmp1 = bus_space_read_1(iot, ioh, PCIC_REG_DATA); 144 aprint_normal("(ident 0x%x", tmp1); 145 if (pcic_ident_ok(tmp1)) {
|
i82365_isapnp.c | 117 int tmp1; local in function:pcic_isapnp_attach 143 tmp1 = bus_space_read_1(iot, ioh, PCIC_REG_DATA); 144 aprint_normal("(ident 0x%x", tmp1); 145 if (pcic_ident_ok(tmp1)) {
|
/src/tests/lib/libc/hash/ |
t_hmac.c | 43 uint8_t tmp1[EVP_MAX_MD_SIZE]; local in function:test 95 memset(tmp1, 0, sizeof(tmp1)); 97 e1 = HMAC(evps[t], key, i, data, j, tmp1, &tmp1len); 105 if (tmp1[k] != tmp2[k]) { 108 k, tmp1[k], tmp2[k]);
|
t_hmac.c | 43 uint8_t tmp1[EVP_MAX_MD_SIZE]; local in function:test 95 memset(tmp1, 0, sizeof(tmp1)); 97 e1 = HMAC(evps[t], key, i, data, j, tmp1, &tmp1len); 105 if (tmp1[k] != tmp2[k]) { 108 k, tmp1[k], tmp2[k]);
|
/src/sys/dev/rasops/ |
rasops1.c | 97 uint32_t bg, fg, lbg, rbg, fb, lmask, rmask, tmp, tmp0, tmp1; local in function:rasops1_putchar 204 tmp1 = (rp[1] & rmask) | rbg; 207 rp[1] = tmp1; 211 hp[1] = tmp1; 229 tmp1 = rp[1] & rmask; 230 tmp1 |= (MBE(fb << width) & ~rmask); 233 rp[1] = tmp1; 237 hp[1] = tmp1; 255 tmp1 = (rp[1] & rmask) | (fg & ~rmask); 257 rp[1] = tmp1; [all...] |
rasops1.c | 97 uint32_t bg, fg, lbg, rbg, fb, lmask, rmask, tmp, tmp0, tmp1; local in function:rasops1_putchar 204 tmp1 = (rp[1] & rmask) | rbg; 207 rp[1] = tmp1; 211 hp[1] = tmp1; 229 tmp1 = rp[1] & rmask; 230 tmp1 |= (MBE(fb << width) & ~rmask); 233 rp[1] = tmp1; 237 hp[1] = tmp1; 255 tmp1 = (rp[1] & rmask) | (fg & ~rmask); 257 rp[1] = tmp1; [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/ref10/ |
x25519_ref10.c | 64 fe25519 tmp1; local in function:crypto_scalarmult_curve25519_ref10 93 fe25519_sub(tmp1, x2, z2); 97 fe25519_mul(z2, z2, tmp1); 98 fe25519_sq(tmp0, tmp1); 99 fe25519_sq(tmp1, x2); 102 fe25519_mul(x2, tmp1, tmp0); 103 fe25519_sub(tmp1, tmp1, tmp0); 105 fe25519_scalar_product(z3, tmp1, 121666); 109 fe25519_mul(z2, tmp1, tmp0) [all...] |
x25519_ref10.c | 64 fe25519 tmp1; local in function:crypto_scalarmult_curve25519_ref10 93 fe25519_sub(tmp1, x2, z2); 97 fe25519_mul(z2, z2, tmp1); 98 fe25519_sq(tmp0, tmp1); 99 fe25519_sq(tmp1, x2); 102 fe25519_mul(x2, tmp1, tmp0); 103 fe25519_sub(tmp1, tmp1, tmp0); 105 fe25519_scalar_product(z3, tmp1, 121666); 109 fe25519_mul(z2, tmp1, tmp0) [all...] |
/src/sys/arch/evbmips/rasoc/ |
machdep.c | 117 uint32_t tmp1, tmp2; local in function:mach_init 119 tmp1 = sysctl_read(RA_SYSCTL_ID0); 120 memcpy(id1, &tmp1, sizeof(tmp1));
|
machdep.c | 117 uint32_t tmp1, tmp2; local in function:mach_init 119 tmp1 = sysctl_read(RA_SYSCTL_ID0); 120 memcpy(id1, &tmp1, sizeof(tmp1));
|
/src/common/lib/libc/stdlib/ |
heapsort.c | 95 #define COPY(a, b, count, size, tmp1, tmp2) { \ 97 tmp1 = a; \ 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) { \ 97 tmp1 = a; \ 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...] |
/src/games/larn/ |
movem.c | 33 static int tmp1, tmp2, tmp3, tmp4, distance; variable in typeref:typename:int 49 tmp1 = playery - 5; 55 tmp1 = playery - 3; 64 if (tmp1 < 0) 65 tmp1 = 0; 74 if (tmp1 < 1) 75 tmp1 = 1; 84 for (j = tmp1; j < tmp2; j++) /* now reset monster moved flags */ 91 for (j = tmp1; j < tmp2; j++) /* look thru all locations in 101 for (j = tmp1; j < tmp2; j++) /* look thru all locations i [all...] |
movem.c | 33 static int tmp1, tmp2, tmp3, tmp4, distance; variable in typeref:typename:int 49 tmp1 = playery - 5; 55 tmp1 = playery - 3; 64 if (tmp1 < 0) 65 tmp1 = 0; 74 if (tmp1 < 1) 75 tmp1 = 1; 84 for (j = tmp1; j < tmp2; j++) /* now reset monster moved flags */ 91 for (j = tmp1; j < tmp2; j++) /* look thru all locations in 101 for (j = tmp1; j < tmp2; j++) /* look thru all locations i [all...] |
/src/sys/dev/isa/ |
ad1848_isa.c | 182 u_char tmp, tmp1 = 0xff, tmp2 = 0xff; local in function:ad1848_isa_probe 217 tmp1 = ad_read(sc, 0); 220 if (tmp1 != 0x8a || tmp2 != 0x45) { 221 DPRINTF(("ad_detect_B (%x/%x)\n", tmp1, tmp2)); 227 tmp1 = ad_read(sc, 0); 230 if (tmp1 != 0x65 || tmp2 != 0xaa) { 231 DPRINTF(("ad_detect_C (%x/%x)\n", tmp1, tmp2)); 250 if ((tmp & 0x0f) != ((tmp1 = ad_read(sc, SP_MISC_INFO)) & 0x0f)) { 251 DPRINTF(("ad_detect_D (%x)\n", tmp1)); 264 switch (tmp1 & 0x8f) [all...] |
i82365_isasubr.c | 375 int i, iobuswidth, tmp1, tmp2; local in function:pcic_isa_bus_width_probe 399 tmp1 = bus_space_read_1(iot, ioh, PCIC_REG_DATA); 405 if (tmp1 == tmp2)
|
ad1848_isa.c | 182 u_char tmp, tmp1 = 0xff, tmp2 = 0xff; local in function:ad1848_isa_probe 217 tmp1 = ad_read(sc, 0); 220 if (tmp1 != 0x8a || tmp2 != 0x45) { 221 DPRINTF(("ad_detect_B (%x/%x)\n", tmp1, tmp2)); 227 tmp1 = ad_read(sc, 0); 230 if (tmp1 != 0x65 || tmp2 != 0xaa) { 231 DPRINTF(("ad_detect_C (%x/%x)\n", tmp1, tmp2)); 250 if ((tmp & 0x0f) != ((tmp1 = ad_read(sc, SP_MISC_INFO)) & 0x0f)) { 251 DPRINTF(("ad_detect_D (%x)\n", tmp1)); 264 switch (tmp1 & 0x8f) [all...] |
i82365_isasubr.c | 375 int i, iobuswidth, tmp1, tmp2; local in function:pcic_isa_bus_width_probe 399 tmp1 = bus_space_read_1(iot, ioh, PCIC_REG_DATA); 405 if (tmp1 == tmp2)
|
/src/sbin/cgdconfig/ |
utils.c | 78 char *tmp1, *tmpf; local in function:words 91 tmp1 = tmpf = estrdup(line); 95 free(tmp1);
|
utils.c | 78 char *tmp1, *tmpf; local in function:words 91 tmp1 = tmpf = estrdup(line); 95 free(tmp1);
|
/src/lib/libc/db/hash/ |
hash_page.c | 486 int tmp1, tmp2; local in function:__add_ovflpage 499 tmp1 = bufp->addr; 508 tmp1, tmp2, bufp->ovfl->addr); 682 int tmp1, tmp2; local in function:overflow_page 794 tmp1 = bit; 817 addr, tmp1, tmp2);
|
/src/lib/libc/nameser/ |
ns_print.c | 589 char base64_cert[8192], tmp1[40]; local in function:ns_sprintrrf 596 len = SPRINTF((tmp1, "%d %d %d ", c_type, key_tag, alg)); 597 T(addstr(tmp1, (size_t)len, &buf, &buflen));
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce120/ |
amdgpu_dce120_timing_generator.c | 437 uint32_t tmp1 = 0; local in function:dce120_timing_generator_program_blanking 471 tmp1 = timing->h_total - 473 tmp2 = tmp1 + timing->h_addressable + 478 CRTC_H_BLANK_END, tmp1, 481 tmp1 = timing->v_total - (v_sync_start + timing->v_border_top); 482 tmp2 = tmp1 + timing->v_addressable + timing->v_border_top + 487 CRTC_V_BLANK_END, tmp1,
|