Searched refs:tp (Results 1 - 25 of 324) sorted by last modified time

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/dhcp6/
H A Dcommon.c1760 char *tp; local
1821 tp = tmpbuf + optlen;
1843 memcpy(tp, &ai, sizeof(ai));
1844 tp += sizeof(ai);
1863 memcpy(tp, &status, sizeof(status));
1867 tp += sizeof(status);
1935 tp = tmpbuf + optlen;
1957 memcpy(tp, &pi, sizeof(pi));
1958 tp += sizeof(pi);
1970 memcpy(tp,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/
H A Dlibtool6273 # -tp=* Portland pgcc target processor selection
6277 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
H A Dltmain.sh5851 # -tp=* Portland pgcc target processor selection
5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dauth.c526 u_int32_t tklen, tp; local
610 tp = htonl(tklen);
611 memcpy(rbuf, &tp, sizeof(tklen));
H A Ddirectory.c2680 u_int16_t tp = htons(len); local
2681 memcpy(rbuf, &tp, sizeof(tp));
2682 rbuf += sizeof(tp);
H A Dfile.c145 char *tp = NULL; local
156 tp = strdup(name);
187 if (tp) {
188 strcpy(name, tp);
189 free(tp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/bin/megatron/
H A Dmacbin.c78 struct tm *tp; local
88 tp = localtime(&t);
89 if (tp)
90 bin.gmtoff = tp->tm_gmtoff;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dghiper.c345 gsize len, tp; local
351 rv = g_io_channel_read_line (ch,&buf,&len,&tp,&err);
353 if (tp) { buf[tp]='\0'; }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dinet_ntop.c92 char *tp; local
131 tp = tmp;
136 *tp++ = ':';
143 *tp++ = ':';
149 if(!inet_ntop4(src+12, tp, sizeof(tmp) - (tp - tmp))) {
153 tp += strlen(tp);
156 tp += snprintf(tp,
[all...]
H A Dinet_pton.c100 unsigned char tmp[INADDRSZ], *tp; local
104 tp = tmp;
105 *tp = 0;
110 unsigned int val = *tp * 10 + (unsigned int)(pch - digits);
112 if(saw_digit && *tp == 0)
116 *tp = (unsigned char)val;
126 *++tp = 0;
157 unsigned char tmp[IN6ADDRSZ], *tp, *endp, *colonp; local
162 memset((tp = tmp), 0, IN6ADDRSZ);
163 endp = tp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/
H A Dlibtool6276 # -tp=* Portland pgcc target processor selection
6280 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
H A Dltmain.sh5851 # -tp=* Portland pgcc target processor selection
5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/server/
H A Dtftpd.c295 static int do_tftp(struct testcase *test, struct tftphdr *tp, ssize_t size);
668 struct tftphdr *tp; local
880 tp = &buf.hdr;
881 tp->th_opcode = ntohs(tp->th_opcode);
882 if (tp->th_opcode == opcode_RRQ || tp->th_opcode == opcode_WRQ) {
884 if (do_tftp(&test, tp, n) < 0)
951 static int do_tftp(struct testcase *test, struct tftphdr *tp, ssize_t size) argument
970 fprintf(server, "opcode: %x\n", tp
1281 struct tftphdr *tp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/aparser/
H A Dparser.c464 void *tp; local
466 tp = (void *)Realloc(*ptr, size);
467 if (tp) *ptr = tp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/client/
H A Dclitar.c80 static int tp, ntarf, tbufsiz; variable
329 if (tp + n >= tbufsiz) {
332 diff=tbufsiz-tp;
333 memcpy(tarbuf + tp, b, diff);
337 tp=0;
347 memcpy(tarbuf+tp, b, n);
348 tp+=n;
367 if (n+tp >= tbufsiz) {
368 memset(tarbuf+tp, 0, tbufsiz-tp);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dtime.c689 struct timeval tp; local
694 GetTimeOfDay(&tp);
695 t = (time_t)tp.tv_sec;
705 (long)tp.tv_sec,
706 (long)tp.tv_usec);
720 (long)tp.tv_usec);
730 (long)tp.tv_usec);
H A Dutil_file.c348 char *p, *tp; local
361 tp = SMB_REALLOC(p, total + n + 1);
362 if (!tp) {
368 p = tp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/locking/
H A Dbrlock.c354 char *tp; local
401 tp = SMB_REALLOC(dbuf.dptr, dbuf.dsize + sizeof(*locks));
402 if (!tp) {
406 dbuf.dptr = tp;
H A Dposix.c99 char *tp; local
105 tp = SMB_REALLOC(dbuf.dptr, dbuf.dsize + sizeof(int));
106 if (!tp) {
111 dbuf.dptr = tp;
357 char *tp; local
374 tp = SMB_REALLOC(dbuf.dptr, dbuf.dsize + sizeof(pl));
375 if (!tp) {
379 dbuf.dptr = tp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/modules/
H A Dgetdate.c2023 table const *tp;
2026 for (tp = pc->local_time_zone_table; tp->name; tp++)
2027 if (strcmp (name, tp->name) == 0)
2028 return tp;
2030 for (tp = time_zone_table; tp->name; tp++)
2031 if (strcmp (name, tp
2018 table const *tp; local
2065 table const *tp; local
2172 table const *tp; local
[all...]
H A Dgetdate.y676 table const *tp;
679 for (tp = pc->local_time_zone_table; tp->name; tp++)
680 if (strcmp (name, tp->name) == 0)
681 return tp;
683 for (tp = time_zone_table; tp->name; tp++)
684 if (strcmp (name, tp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_server/
H A Dsrv_spoolss_nt.c4412 PRINTER_INFO_1 *tp, *printers=NULL; local
4422 if((tp=SMB_REALLOC_ARRAY(printers, PRINTER_INFO_1, *returned +1)) == NULL) {
4428 else printers = tp;
4587 PRINTER_INFO_2 *tp, *printers=NULL; local
4595 if((tp=SMB_REALLOC_ARRAY(printers, PRINTER_INFO_2, *returned +1)) == NULL) {
4601 else printers = tp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/include/linux/
H A Dtcp.h84 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3])
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/ip/
H A Dipxfrm.c327 struct tm *tp; local
333 tp = localtime(&t);
335 strftime(str, sizeof(str), "%Y-%m-%d %T", tp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/misc/
H A Dssfilter.y158 char *tp;
159 for (tp = cp; tp != tok; tp--)
160 *tp = *(tp-1);

Completed in 380 milliseconds

1234567891011>>