Searched refs:tmp (Results 251 - 275 of 1828) sorted by relevance

<<11121314151617181920>>

/freebsd-10.0-release/contrib/ntp/libisc/
H A Dinet_pton.c81 unsigned char tmp[NS_INADDRSZ], *tp; local
85 *(tp = tmp) = 0;
112 memcpy(dst, tmp, NS_INADDRSZ);
133 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
138 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
209 memcpy(dst, tmp, NS_IN6ADDRSZ);
/freebsd-10.0-release/contrib/ntp/libparse/
H A Ddata_mbg.c135 TM *tmp
138 tmp->year = get_lsb_short(buffpp);
139 tmp->month = *(*buffpp)++;
140 tmp->mday = *(*buffpp)++;
141 tmp->yday = get_lsb_short(buffpp);
142 tmp->wday = *(*buffpp)++;
143 tmp->hour = *(*buffpp)++;
144 tmp->minute = *(*buffpp)++;
145 tmp->second = *(*buffpp)++;
146 tmp
256 mbg_tm_str( char **buffpp, TM *tmp, int size ) argument
[all...]
/freebsd-10.0-release/contrib/openresolv/
H A DMakefile58 rm -rf /tmp/${PKG}
59 ${INSTALL} -d /tmp/${PKG}
60 cp README ${SRCS} /tmp/${PKG}
63 cp configure Makefile resolvconf.conf /tmp/${PKG}
64 tar cvjpf ${PKG}.tar.bz2 -C /tmp ${PKG}
65 rm -rf /tmp/${PKG}
/freebsd-10.0-release/contrib/unbound/compat/
H A Dinet_pton.c100 uint8_t tmp[NS_INADDRSZ], *tp; local
104 *(tp = tmp) = 0;
130 memcpy(dst, tmp, NS_INADDRSZ);
154 uint8_t tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
159 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
228 memcpy(dst, tmp, NS_IN6ADDRSZ);
/freebsd-10.0-release/crypto/heimdal/lib/kadm5/
H A Dchpass_c.c47 int32_t tmp; local
75 krb5_ret_int32(sp, &tmp);
79 return tmp;
92 int32_t tmp; local
123 krb5_ret_int32(sp, &tmp);
127 return tmp;
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dcrypto-des-common.c100 unsigned char tmp[24]; local
113 EVP_Cipher(&ctx->dctx, tmp, C->checksum.data, 24);
116 EVP_DigestUpdate(m, tmp, 8); /* confounder */
120 if(ct_memcmp(res, tmp + 8, sizeof(res)) != 0) {
124 memset(tmp, 0, sizeof(tmp));
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dgetusershell.c120 char *tmp; local
132 if(getconfattr(SC_SYS_LOGIN, SC_SHELLS, &tmp, SEC_LIST) != 0)
135 for(cp = tmp, nsh = 0; *cp; cp += strlen(cp) + 1, nsh++);
141 strings = malloc(cp - tmp);
147 memcpy(strings, tmp, cp - tmp);
/freebsd-10.0-release/sys/libkern/
H A Dinet_pton.c83 u_char tmp[NS_INADDRSZ], *tp; local
87 *(tp = tmp) = 0;
114 memcpy(dst, tmp, NS_INADDRSZ);
138 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
143 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
215 memcpy(dst, tmp, NS_IN6ADDRSZ);
/freebsd-10.0-release/usr.sbin/pkg_install/lib/
H A Durl.c39 char *cp, *tmp; local
101 tmp = getenv("PKGDIR");
102 strlcpy(pkg, tmp ? tmp : ".", sizeof(pkg));
103 tmp = basename(fname);
105 strlcat(pkg, tmp, sizeof(pkg));
/freebsd-10.0-release/sys/dev/drm2/radeon/
H A Dradeon_i2c.c411 u32 tmp, reg; local
426 tmp = RREG32(RADEON_BIOS_6_SCRATCH);
427 WREG32(RADEON_BIOS_6_SCRATCH, tmp | ATOM_S6_HW_I2C_BUSY_STATE);
554 tmp = RREG32(i2c_cntl_0);
555 if (tmp & RADEON_I2C_GO)
557 tmp = RREG32(i2c_cntl_0);
558 if (tmp & RADEON_I2C_DONE)
561 DRM_DEBUG("i2c write error 0x%08x\n", tmp);
562 WREG32(i2c_cntl_0, tmp | RADEON_I2C_ABORT);
586 tmp
662 u32 tmp, reg; local
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dc-incpath.c189 struct cpp_dir **pcur, *tmp, *cur; local
222 for (tmp = system; tmp; tmp = tmp->next)
223 if (INO_T_EQ (tmp->ino, cur->ino) && tmp->dev == cur->dev
224 && cur->construct == tmp->construct)
227 if (!tmp)
231 for (tmp
[all...]
/freebsd-10.0-release/contrib/ntp/ntpd/
H A Dntpsim.c156 Queue *tmp = qp; local
158 while (*tmp != NULL && ((*tmp)->event.time < e.time))
159 tmp = &((*tmp)->next);
160 *tmp = queue(e, (*tmp));
173 Queue tmp; local
175 tmp = *qp;
176 if (tmp
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/krb5/
H A Dimport_sec_context.c53 int32_t flags, tmp; local
96 if (krb5_ret_int32 (sp, &tmp) != 0)
98 ac->flags = tmp;
144 if (krb5_ret_int32 (sp, &tmp) != 0)
146 ac->keytype = tmp;
147 if (krb5_ret_int32 (sp, &tmp) != 0)
149 ac->cksumtype = tmp;
189 if (krb5_ret_int32 (sp, &tmp))
191 ctx->flags = tmp;
192 if (krb5_ret_int32 (sp, &tmp))
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bn/
H A Dbn_sqr.c69 BIGNUM *tmp,*rr; local
86 tmp=BN_CTX_get(ctx);
87 if (!rr || !tmp) goto err;
127 if (bn_wexpand(tmp,k*2) == NULL) goto err;
128 bn_sqr_recursive(rr->d,a->d,al,tmp->d);
132 if (bn_wexpand(tmp,max) == NULL) goto err;
133 bn_sqr_normal(rr->d,a->d,al,tmp->d);
137 if (bn_wexpand(tmp,max) == NULL) goto err;
138 bn_sqr_normal(rr->d,a->d,al,tmp->d);
153 bn_check_top(tmp);
159 bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp) argument
[all...]
/freebsd-10.0-release/crypto/heimdal/kadmin/
H A Dload.c100 time_t tmp; local
104 ret = parse_time_string (&tmp, s);
109 **t = tmp;
131 unsigned int tmp; local
135 ret = parse_integer (&tmp, s);
140 **u = tmp;
154 int tmp; local
159 if (sscanf(p, "%d", &tmp) != 1)
161 ent->kvno = tmp;
173 if(sscanf(p, "%d", &tmp)
259 Event tmp; local
277 unsigned int tmp; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl53 $tmp="%o5";
111 sllx $Zhi,60,$tmp
114 xor $Zlo,$tmp,$Zlo
131 sllx $Zhi,60,$tmp
135 xor $Zlo,$tmp,$Zlo
146 sllx $Zhi,60,$tmp
151 xor $Zlo,$tmp,$Zlo
165 sllx $Zhi,60,$tmp
168 xor $Zlo,$tmp,$Zlo
182 sllx $Zhi,60,$tmp
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/srp/
H A Dsrp_lib.c87 unsigned char *tmp; local
95 if ((tmp = OPENSSL_malloc(longN)) == NULL)
97 BN_bn2bin(N,tmp) ;
101 EVP_DigestUpdate(&ctxt, tmp, longN);
103 memset(tmp, 0, longN);
104 longg = BN_bn2bin(g,tmp) ;
106 EVP_DigestUpdate(&ctxt, tmp + longg, longN-longg);
107 EVP_DigestUpdate(&ctxt, tmp, longg);
108 OPENSSL_free(tmp);
155 BIGNUM *tmp local
267 BIGNUM *tmp = NULL, *tmp2 = NULL, *tmp3 = NULL , *k = NULL, *K = NULL; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/include/
H A Dtst.includefirst.ksh37 firstinc=${TMPDIR:-/tmp}/firstinc.$$
38 secondinc=${TMPDIR:-/tmp}/secondinc.$$
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.provregex1.ksh40 DIR=${TMPDIR:-/tmp}/dtest.$$
90 cd /tmp
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/
H A Dtst.ppid.ksh45 dfilename=/var/tmp/$bname.$$.d
H A Dtst.stringmacro.ksh45 dfilename=/var/tmp/$bname.$$.d
/freebsd-10.0-release/contrib/apr/network_io/unix/
H A Dinet_ntop.c149 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp; local
203 tp = tmp;
218 if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp))) {
224 tp += apr_snprintf(tp, sizeof tmp - (tp - tmp), "%x", words[i]);
236 if ((apr_size_t)(tp - tmp) > size) {
240 strcpy(dst, tmp);
/freebsd-10.0-release/contrib/atf/atf-c/detail/
H A Dtext.c84 atf_dynstr_t tmp; local
88 err = atf_dynstr_init_ap(&tmp, fmt, ap2);
91 *dest = atf_dynstr_fini_disown(&tmp);
170 long tmp; local
173 tmp = strtol(str, &endptr, 10);
176 else if (errno == ERANGE || (tmp == LONG_MAX || tmp == LONG_MIN))
179 *l = tmp;
/freebsd-10.0-release/contrib/gcc/config/arm/
H A Dunwind-arm.h228 _Unwind_Word tmp; local
230 tmp = *(_Unwind_Word *) ptr;
232 if (!tmp)
237 tmp += ptr;
238 tmp = *(_Unwind_Word *) tmp;
243 tmp += ptr;
245 return tmp;
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DManagedStatic.cpp28 void* tmp = Creator ? Creator() : 0; local
37 Ptr = tmp;

Completed in 286 milliseconds

<<11121314151617181920>>