Searched refs:tmp (Results 1 - 25 of 2904) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/testsuite/lib/
H A Denv-single.exp18 catch {set server "$env(TEST_SERVER)"} tmp
20 if {[regexp "^can't read" $tmp]} {
24 catch {set share "$env(TEST_SHARE)"} tmp
26 if {[regexp "^can't read" $tmp]} {
30 catch {set user "$env(TEST_USER)"} tmp
32 if {[regexp "^can't read" $tmp]} {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/uuid/
H A Dpack.c41 uint32_t tmp; local
44 tmp = uu->time_low;
45 out[3] = (unsigned char) tmp;
46 tmp >>= 8;
47 out[2] = (unsigned char) tmp;
48 tmp >>= 8;
49 out[1] = (unsigned char) tmp;
50 tmp >>= 8;
51 out[0] = (unsigned char) tmp;
53 tmp
[all...]
H A Dunpack.c42 uint32_t tmp; local
44 tmp = *ptr++;
45 tmp = (tmp << 8) | *ptr++;
46 tmp = (tmp << 8) | *ptr++;
47 tmp = (tmp << 8) | *ptr++;
48 uu->time_low = tmp;
50 tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc/
H A Dposix_types.h82 unsigned long *tmp = p->fds_bits; local
88 tmp[ 0] = 0; tmp[ 1] = 0; tmp[ 2] = 0; tmp[ 3] = 0;
89 tmp[ 4] = 0; tmp[ 5] = 0; tmp[ 6] = 0; tmp[ 7] = 0;
90 tmp[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc64/
H A Dposix_types.h86 unsigned long *tmp = p->fds_bits; local
92 tmp[ 0] = 0; tmp[ 1] = 0; tmp[ 2] = 0; tmp[ 3] = 0;
93 tmp[ 4] = 0; tmp[ 5] = 0; tmp[ 6] = 0; tmp[ 7] = 0;
94 tmp[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Dposix_types.h79 unsigned long *tmp = p->fds_bits; local
85 tmp[ 0] = 0; tmp[ 1] = 0; tmp[ 2] = 0; tmp[ 3] = 0;
86 tmp[ 4] = 0; tmp[ 5] = 0; tmp[ 6] = 0; tmp[ 7] = 0;
87 tmp[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bftpd-1.6.6/
H A Dlist.c11 struct bftpd_list_element *tmp = *list; local
14 if (tmp) {
15 while (tmp->next)
16 tmp = tmp->next;
17 tmp->next = new;
25 struct bftpd_list_element *tmp = *list; local
29 tmp = tmp->next;
31 *list = tmp;
48 struct bftpd_list_element *tmp = list; local
58 struct bftpd_list_element *tmp = list; local
[all...]
H A Dcwd.c32 char *tmp = bftpd_cwd_mappath(dir); local
38 if (strncmp(tmp, "/shares", 7))
40 free(tmp);
42 tmp = bftpd_cwd_mappath(convert_dir);
49 if (strlen(tmp) == 0 || strcmp(tmp, "/") == 0) {
50 free(tmp);
58 if (strncmp(tmp, "/shares", 7) != 0) {
59 free(tmp);
60 bftpd_log("Block cwd to '%s'\n", tmp);
82 appendpath(char *result, char *tmp) argument
110 char *tmp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dunroll.pl18 $tmp = $line;
19 $tmp =~ s/\$\$/$i/g;
20 $tmp =~ s/\$\#/$n/g;
21 $tmp =~ s/\$\*/\$/g;
22 print $tmp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/tests/
H A Dcheck-subst11 cat > tmp-in <<\EOF
14 $iconv $options_ascii -f ASCII -t ASCII < tmp-in > tmp-out
15 cat > tmp-ok <<\EOF
18 cmp tmp-out tmp-ok
23 cat > tmp-in <<\EOF
26 $iconv $options_utf8 -f ASCII -t UTF-8 2>/dev/null < tmp-in > tmp-out
27 cat > tmp
[all...]
H A Dcheck-stateless.bat5 .\table-from %2 > tmp-%2.TXT
6 .\table-to %2 | sort > tmp-%2.INVERSE.TXT
7 fc %1\%2.TXT tmp-%2.TXT
10 copy /a %1\%2.TXT /a + %1\%2.IRREVERSIBLE.TXT /a tmp
11 sort < tmp | uniq-u > tmp-orig-%2.INVERSE.TXT
12 fc tmp-orig-%2.INVERSE.TXT tmp-%2.INVERSE.TXT
13 del tmp
14 del tmp
[all...]
H A Dcheck-stateless12 ./table-from "$charset" > tmp-"$charsetf".TXT
15 ./table-to "$charset" | sort > tmp-"$charsetf".INVERSE.TXT
18 cmp "${srcdir}"/"$charsetf".TXT tmp-"$charsetf".TXT 2> /dev/null
21 sed -e '/ .* 0x/d' < "${srcdir}"/"$charsetf".TXT > tmp-noprecomposed-"$charsetf".TXT
23 cat tmp-noprecomposed-"$charsetf".TXT "${srcdir}"/"$charsetf".IRREVERSIBLE.TXT | sort | uniq -u > tmp-orig-"$charsetf".INVERSE.TXT
25 cp tmp-noprecomposed-"$charsetf".TXT tmp-orig-"$charsetf".INVERSE.TXT
27 cmp tmp-orig-"$charsetf".INVERSE.TXT tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/printing/
H A Dprint_svid.c49 char *name, *tmp; local
53 if (((tmp = strchr_m(buf, ' ')) == NULL) ||
54 ((tmp = strchr_m(++tmp, ' ')) == NULL))
61 if(!strncmp("for ", ++tmp, 4)) {
62 tmp=strchr_m(tmp, ' ');
63 tmp++;
68 while(*tmp == ' ')
69 ++tmp;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/e2p/
H A Duuid.c35 __u32 tmp; local
37 tmp = *ptr++;
38 tmp = (tmp << 8) | *ptr++;
39 tmp = (tmp << 8) | *ptr++;
40 tmp = (tmp << 8) | *ptr++;
41 uu->time_low = tmp;
43 tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/kyro/
H A DSTG4000Ramdac.c29 u32 tmp = 0; local
35 tmp = STG_READ_REG(SoftwareReset);
37 if (tmp & 0x1) {
39 STG_WRITE_REG(SoftwareReset, tmp);
43 tmp = STG_READ_REG(DACPixelFormat);
53 tmp |= _16BPP;
60 tmp |= _32BPP;
67 STG_WRITE_REG(DACPixelFormat, tmp);
76 tmp = STG_READ_REG(DACPrimSize);
79 tmp |
149 u32 tmp; local
158 u32 tmp; local
[all...]
H A DSTG4000VTG.c19 u32 tmp; local
23 tmp = STG_READ_REG(SoftwareReset);
25 STG_WRITE_REG(SoftwareReset, tmp);
33 tmp = STG_READ_REG(SoftwareReset);
34 tmp |= SET_BIT(8);
35 STG_WRITE_REG(SoftwareReset, tmp);
40 u32 tmp = 0; local
43 tmp = (STG_READ_REG(DACSyncCtrl)) | SET_BIT(0) | SET_BIT(2);
45 STG_WRITE_REG(DACSyncCtrl, tmp);
50 u32 tmp local
62 u32 tmp = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/x509v3/
H A Dtabtest.c72 X509V3_EXT_METHOD **tmp; local
76 tmp = standard_exts;
77 for(i = 0; i < STANDARD_EXTENSION_COUNT; i++, tmp++) {
78 if((*tmp)->ext_nid < prev) bad = 1;
79 prev = (*tmp)->ext_nid;
83 tmp = standard_exts;
85 for(i = 0; i < STANDARD_EXTENSION_COUNT; i++, tmp++)
86 printf("%d : %s\n", (*tmp)->ext_nid, OBJ_nid2sn((*tmp)->ext_nid));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dtabtest.c72 X509V3_EXT_METHOD **tmp; local
76 tmp = standard_exts;
77 for(i = 0; i < STANDARD_EXTENSION_COUNT; i++, tmp++) {
78 if((*tmp)->ext_nid < prev) bad = 1;
79 prev = (*tmp)->ext_nid;
83 tmp = standard_exts;
85 for(i = 0; i < STANDARD_EXTENSION_COUNT; i++, tmp++)
86 printf("%d : %s\n", (*tmp)->ext_nid, OBJ_nid2sn((*tmp)->ext_nid));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-tests/
H A Dtest-atexit.sh6 tmpfiles="$tmpfiles t-atexit.tmp"
8 echo > t-atexit.tmp
10 if test -f t-atexit.tmp; then
16 echo > t-atexit.tmp
18 if test -f t-atexit.tmp; then
24 echo > t-atexit.tmp
26 if test -f t-atexit.tmp; then
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ia64/
H A Dposix_types.h94 unsigned long *tmp = p->fds_bits; local
100 tmp[ 0] = 0; tmp[ 1] = 0; tmp[ 2] = 0; tmp[ 3] = 0;
101 tmp[ 4] = 0; tmp[ 5] = 0; tmp[ 6] = 0; tmp[ 7] = 0;
102 tmp[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-alpha/
H A Dposix_types.h89 unsigned long *tmp = p->fds_bits; local
95 tmp[ 0] = 0; tmp[ 1] = 0; tmp[ 2] = 0; tmp[ 3] = 0;
96 tmp[ 4] = 0; tmp[ 5] = 0; tmp[ 6] = 0; tmp[ 7] = 0;
97 tmp[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dfileinfo.c37 struct curl_fileinfo *tmp = malloc(sizeof(struct curl_fileinfo)); local
38 if(!tmp)
40 memset(tmp, 0, sizeof(struct curl_fileinfo));
41 return tmp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dposix_types.h102 unsigned long *tmp = (unsigned long *)p->fds_bits; local
108 tmp[12] = 0; tmp[13] = 0; tmp[14] = 0; tmp[15] = 0;
109 tmp[ 8] = 0; tmp[ 9] = 0; tmp[10] = 0; tmp[11] = 0;
112 tmp[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dlfg.c28 uint8_t tmp[16]={0}; local
32 AV_WL32(tmp, seed); tmp[4]=i;
33 av_md5_sum(tmp, tmp, 16);
34 c->state[i ]= AV_RL32(tmp);
35 c->state[i+1]= AV_RL32(tmp+4);
36 c->state[i+2]= AV_RL32(tmp+8);
37 c->state[i+3]= AV_RL32(tmp+12);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ppc/
H A Dspinlock.h19 unsigned long tmp; local
33 : "=&r"(tmp)
62 signed int tmp; local
73 : "=&r"(tmp)
77 return tmp > 0;
82 signed int tmp; local
96 : "=&r"(tmp)
103 signed int tmp; local
112 : "=&r"(tmp)
119 signed int tmp; local
139 signed int tmp; local
[all...]

Completed in 263 milliseconds

1234567891011>>