Searched refs:tmp (Results 26 - 50 of 1828) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dsha256.c37 zio_cksum_t tmp; local
41 SHA256_Final((unsigned char *)&tmp, &ctx);
50 zcp->zc_word[0] = BE_64(tmp.zc_word[0]);
51 zcp->zc_word[1] = BE_64(tmp.zc_word[1]);
52 zcp->zc_word[2] = BE_64(tmp.zc_word[2]);
53 zcp->zc_word[3] = BE_64(tmp.zc_word[3]);
/freebsd-10.0-release/usr.sbin/fifolog/fifolog_reader/
H A DMakefile13 ./${PROG} /tmp/fifolog.0
14 ./${PROG} -t /tmp/fifolog.0
15 ./${PROG} /tmp/fifolog.1
16 ./${PROG} -B "00:00" /tmp/fifolog.1
17 ./${PROG} -T "%y%m%d-%H%M%S" /tmp/fifolog.1
18 ./${PROG} -T "" /tmp/fifolog.1
/freebsd-10.0-release/contrib/groff/doc/
H A Dfixinfo.sh24 t=${TMPDIR-.}/gro$$.tmp
/freebsd-10.0-release/contrib/dialog/samples/
H A Dsetup-edit5 input=`tempfile 2>/dev/null` || input=/tmp/input$$
6 output=`tempfile 2>/dev/null` || output=/tmp/test$$
/freebsd-10.0-release/contrib/gcclibs/libgomp/config/linux/
H A Dsem.c54 int old, tmp = *sem, wake; local
58 old = tmp;
60 tmp = __sync_val_compare_and_swap (sem, old, wake);
62 while (old != tmp);
/freebsd-10.0-release/contrib/unbound/compat/
H A Dgmtime_r.c45 timesub(timep, offset, tmp)
48 struct tm * const tmp;
67 tmp->tm_hour = (int) (rem / SECSPERHOUR);
69 tmp->tm_min = (int) (rem / SECSPERMIN);
74 tmp->tm_sec = (int) (rem % SECSPERMIN) ;
75 tmp->tm_wday = (int) ((EPOCH_WDAY + days) % DAYSPERWEEK);
76 if (tmp->tm_wday < 0)
77 tmp->tm_wday += DAYSPERWEEK;
91 tmp->tm_year = y - TM_YEAR_BASE;
92 tmp
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Decalloc.c48 void *tmp = calloc (number, size); local
50 if (tmp == NULL && number * size != 0)
52 return tmp;
H A Derealloc.c48 void *tmp = realloc (ptr, sz); local
50 if (tmp == NULL && sz != 0)
52 return tmp;
/freebsd-10.0-release/sbin/dhclient/
H A Dconvert.c90 u_int32_t tmp = htonl(val); local
92 memcpy(obuf, &tmp, sizeof(tmp));
98 int32_t tmp = htonl(val); local
100 memcpy(obuf, &tmp, sizeof(tmp));
106 u_int16_t tmp = htons(val); local
108 memcpy(obuf, &tmp, sizeof(tmp));
114 int16_t tmp local
[all...]
/freebsd-10.0-release/sys/dev/drm2/radeon/
H A Drs400.c64 uint32_t tmp; local
69 tmp = RREG32_MC(RS480_GART_CACHE_CNTRL);
70 if ((tmp & RS480_GART_CACHE_INVALIDATE) == 0)
112 uint32_t tmp; local
115 tmp = RREG32_MC(RS690_AIC_CTRL_SCRATCH);
116 tmp |= RS690_DIS_OUT_OF_PCI_GART_ACCESS;
117 WREG32_MC(RS690_AIC_CTRL_SCRATCH, tmp);
152 tmp = REG_SET(RS690_MC_AGP_TOP, rdev->mc.gtt_end >> 16);
153 tmp |= REG_SET(RS690_MC_AGP_START, rdev->mc.gtt_start >> 16);
155 WREG32_MC(RS690_MCCFG_AGP_LOCATION, tmp);
199 uint32_t tmp; local
237 uint32_t tmp; local
300 uint32_t tmp; local
[all...]
H A Dradeon_clocks.c200 u32 tmp = RREG32_PLL(RADEON_PPLL_REF_DIV); local
203 (tmp & R300_PPLL_REF_DIV_ACC_MASK) >> R300_PPLL_REF_DIV_ACC_SHIFT;
205 p1pll->reference_div = tmp & RADEON_PPLL_REF_DIV_MASK;
393 uint32_t tmp; local
400 tmp = RREG32_PLL(RADEON_CLK_PIN_CNTL);
401 tmp &= ~RADEON_DONT_USE_XTALIN;
402 WREG32_PLL(RADEON_CLK_PIN_CNTL, tmp);
404 tmp = RREG32_PLL(RADEON_SCLK_CNTL);
405 tmp &= ~RADEON_SCLK_SRC_SEL_MASK;
406 WREG32_PLL(RADEON_SCLK_CNTL, tmp);
478 uint32_t tmp; local
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/wind/
H A Dstringprep.c61 uint32_t *tmp; local
70 tmp = malloc(tmp_len * sizeof(uint32_t));
71 if (tmp == NULL)
74 ret = _wind_stringprep_map(in, in_len, tmp, &tmp_len, flags);
76 free(tmp);
81 ret = _wind_stringprep_normalize(tmp, tmp_len, tmp, &olen);
83 free(tmp);
86 ret = _wind_stringprep_prohibited(tmp, olen, flags);
88 free(tmp);
[all...]
/freebsd-10.0-release/etc/rc.d/
H A Dtmp30 # PROVIDE: tmp
35 name="tmp"
42 if ! /bin/df /tmp | grep -q "^/dev/md[0-9].* /tmp"; then
43 mount_md ${tmpsize} /tmp "${tmpmfs_flags}"
44 chmod 01777 /tmp
48 # If we do not have a writable /tmp, create a memory
49 # filesystem for /tmp. If /tmp is a symlink (e.g. to /var/tmp,
[all...]
/freebsd-10.0-release/lib/libc/iconv/
H A Dcitrus_db_hash.c47 uint32_t hash, tmp; local
56 tmp = hash & 0xF0000000;
57 if (tmp != 0) {
58 hash ^= tmp;
59 hash ^= tmp >> 24;
/freebsd-10.0-release/usr.sbin/fifolog/fifolog_create/
H A DMakefile16 rm -f /tmp/fifolog.?
17 ./${PROG} /tmp/fifolog.0
18 ./${PROG} -s 10m /tmp/fifolog.1
19 ./${PROG} -l 1k /tmp/fifolog.2
20 ./${PROG} -r 1k /tmp/fifolog.3
/freebsd-10.0-release/usr.bin/gzip/
H A Dznew56 tmp=`mktemp /tmp/znewXXXXXXXXXX` || {
57 echo "$prog: cannot create tmp file"
60 trap 'rm -f "$tmp"; exit 1' HUP INT QUIT PIPE TERM
62 # Do the actual work, producing a file "$tmp"
63 if uncompress -f -c < "$filez" | gzip -f -c $gzipflags > "$tmp"; then
64 if test $kflag -eq 1 && smaller "$filez" "$tmp"; then
67 rm -f "$tmp"
70 if ! checkfile "$tmp"; then
71 echo "$prog: integrity check of $tmp faile
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dn-fold.c38 unsigned char *tmp; local
47 tmp = malloc(bytes);
48 if (tmp == NULL)
50 memcpy(tmp, buf, bytes);
53 tmp[bytes - 1] &= 0xff << (8 - lbit);
55 tmp[bytes - 1] |= buf[0] >> i;
74 buf[i] = (tmp[b1] << s1) | (tmp[b2] >> s2);
76 free(tmp);
107 unsigned char *tmp local
[all...]
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-spinlock.h136 unsigned int tmp; local
140 "1: ll %[tmp], %[val] \n"
141 " bnez %[tmp], 2f \n" // if lock held, fail immediately
142 " li %[tmp], 1 \n"
143 " sc %[tmp], %[val] \n"
144 " beqz %[tmp], 1b \n"
145 " li %[tmp], 0 \n"
148 : [val] "+m" (lock->value), [tmp] "=&r" (tmp)
152 return (!!tmp); /* normaliz
162 unsigned int tmp; local
199 unsigned int tmp; local
233 unsigned int tmp; local
390 volatile unsigned int tmp; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/
H A Dtst.D_MACRO_UNUSED.overflow.ksh45 dfilename=/var/tmp/$bname.$$.d
63 2>/var/tmp/err.$$.txt
70 grep "D_MACRO_UNUSED" /var/tmp/err.$$.txt >/dev/null 2>&1
73 /bin/rm -f /var/tmp/err.$$.txt
78 /bin/rm -f /var/tmp/err.$$.txt
/freebsd-10.0-release/contrib/ntp/libntp/
H A Dclocktime.c42 register long tmp; local
50 tmp = (long)(MULBY24((yday-1)) + hour + tzoff);
51 tmp = MULBY60(tmp) + (long)minute;
52 tmp = MULBY60(tmp) + (long)second;
70 date = (u_long)(tmp + (long)yst);
83 date = (u_long)((long)yst + tmp);
102 date = (u_long)(tmp + (long)yst);
119 date = (u_long)((long)yst + tmp);
[all...]
/freebsd-10.0-release/sbin/gbde/
H A Dtest.sh13 ./gbde init $D -P foo -L /tmp/_l1
14 ./gbde setkey $D -p foo -l /tmp/_l1 -P bar -L /tmp/_l1
15 ./gbde setkey $D -p bar -l /tmp/_l1 -P foo -L /tmp/_l1
17 ./gbde setkey $D -p foo -l /tmp/_l1 -n 2 -P foo2 -L /tmp/_l2
18 ./gbde setkey $D -p foo2 -l /tmp/_l2 -n 3 -P foo3 -L /tmp/_l3
19 ./gbde setkey $D -p foo3 -l /tmp/_l
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/kadm5/
H A Dmarshall.c61 int32_t tmp; local
62 krb5_ret_int32(sp, &tmp);
63 key->key_data_ver = tmp;
64 krb5_ret_int32(sp, &tmp);
65 key->key_data_kvno = tmp;
66 krb5_ret_int32(sp, &tmp);
67 key->key_data_type[0] = tmp;
71 krb5_ret_int32(sp, &tmp);
72 key->key_data_type[1] = tmp;
96 int32_t tmp; local
188 int32_t tmp; local
296 int32_t tmp; local
[all...]
/freebsd-10.0-release/contrib/libstdc++/config/cpu/hppa/
H A Datomicity.h54 int tmp; local
63 : "=&r" (tmp)
70 : : "r" (&lock), "r" (tmp) : "memory");
78 int tmp; local
87 : "=&r" (tmp)
93 : : "r" (&lock), "r" (tmp) : "memory");
/freebsd-10.0-release/contrib/libstdc++/scripts/
H A Dextract_symvers53 tmp=extract.$$
60 }' | sort | uniq > $tmp 2>&1
65 mv $tmp $output
/freebsd-10.0-release/contrib/xz/src/liblzma/check/
H A Dcrc64_fast.c49 const uint32_t tmp = (crc >> 32) local
52 const uint32_t tmp = crc ^ *(const uint32_t *)(buf);
56 crc = lzma_crc64_table[3][A(tmp)]
57 ^ lzma_crc64_table[2][B(tmp)]
59 ^ lzma_crc64_table[1][C(tmp)]
60 ^ lzma_crc64_table[0][D(tmp)];

Completed in 175 milliseconds

1234567891011>>