Home
last modified time | relevance | path

Searched refs:cpend (Results 1 – 25 of 110) sorted by relevance

12345

/dports/mail/ezmlm-idx/ezmlm-idx-7.2.2/
H A DunfoldHDR.c70 while (cpnew <= cpend in trimre()
148 cpend = cp + n - 1; in unfoldHDR()
161 while (cp < cpend) { in unfoldHDR()
164 if (++cp > cpend) break; in unfoldHDR()
177 while (cp < cpend) { in unfoldHDR()
195 if (++cp > cpend) break; in unfoldHDR()
229 while (++cp <= cpend) { in unfoldHDR()
243 if (++cp > cpend) break; in unfoldHDR()
245 if (++cp > cpend) break; in unfoldHDR()
247 if (++cp > cpend) break; in unfoldHDR()
[all …]
H A DdecodeHDR.c18 const char *cp,*cpnext,*cpstart,*cpenc,*cptxt,*cpend,*cpafter; in decodeHDR() local
41 cpend = cptxt + byte_chr(cptxt,cpafter-cptxt,'?'); in decodeHDR()
42 if (cpend == cpafter || *(cpend + 1) != '=') in decodeHDR()
62 decodeB(cptxt,cpend-cptxt,outdata); in decodeHDR()
63 cpnext = cpend + 2; in decodeHDR()
68 decodeQ(cptxt,cpend-cptxt,outdata); in decodeHDR()
69 cpnext = cpend + 2; in decodeHDR()
73 cpstart = cpend + 2; in decodeHDR()
/dports/net/ntp/ntp-4.2.8p15/libntp/
H A Ddolfptoa.c21 u_char *cp, *cpend, *cpdec; in dolfptoa() local
42 cp = cpend = cpdec = &cbuf[10]; in dolfptoa()
64 if ((size_t)dec > sizeof(cbuf) - (cpend - cbuf)) in dolfptoa()
65 dec = (int)(sizeof(cbuf) - (cpend - cbuf)); in dolfptoa()
86 *cpend++ = (u_char)digit; in dolfptoa()
92 cpend += dec; in dolfptoa()
95 u_char *tp = cpend; in dolfptoa()
125 while (cp < cpend) { in dolfptoa()
H A Ddofptoa.c20 register u_char *cp, *cpend; in dofptoa() local
42 cp = cpend = &cbuf[5]; in dofptoa()
72 cpdec = cpend; in dofptoa()
82 *cpend++ = (u_char)(val >> 16); in dofptoa()
91 tp = cpend; in dofptoa()
112 while (cp < cpend) { in dofptoa()
/dports/net/ntpsec/ntpsec-NTPsec_1_2_1/libntp/
H A Ddolfptoa.c27 uint8_t *cp, *cpend, *cpdec; in dolfptoa() local
48 cp = cpend = cpdec = &cbuf[10]; in dolfptoa()
75 if (dec > (long)sizeof(cbuf) - (cpend - cbuf)) in dolfptoa()
76 dec = (long)sizeof(cbuf) - (cpend - cbuf); in dolfptoa()
113 *cpend++ = (uint8_t)digit; in dolfptoa()
119 cpend += dec; in dolfptoa()
122 uint8_t *tp = cpend; in dolfptoa()
152 while (cp < cpend) { in dolfptoa()
/dports/shells/ksh93/ast-93u/src/cmd/std/
H A Dunexpand.c137 register char *cpend; in expand() local
149 cpend = cp + sfvalue(in); in expand()
150 if(state[n= *(unsigned char*)(cpend-1)]==0 || (n==' '&&type==0)) in expand()
151 cpend[-1] = 0; /* put in sentinal */ in expand()
170 if(cp[n]==0 && cp+n+1==cpend && savec==' ') in expand()
185 if(n >= tabspace || cp+n>cpend) in expand()
247 if(cp==cpend) in expand()
261 if(cp >= cpend) in expand()
/dports/shells/ksh93-devel/ast-cc1bca27/src/cmd/std/
H A Dunexpand.c137 register char *cpend; in expand() local
149 cpend = cp + sfvalue(in); in expand()
150 if(state[n= *(unsigned char*)(cpend-1)]==0 || (n==' '&&type==0)) in expand()
151 cpend[-1] = 0; /* put in sentinal */ in expand()
170 if(cp[n]==0 && cp+n+1==cpend && savec==' ') in expand()
185 if(n >= tabspace || cp+n>cpend) in expand()
247 if(cp==cpend) in expand()
261 if(cp >= cpend) in expand()
/dports/shells/ast-ksh/ast-ksh93v/src/cmd/std/
H A Dunexpand.c137 register char *cpend; in expand() local
149 cpend = cp + sfvalue(in); in expand()
150 if(state[n= *(unsigned char*)(cpend-1)]==0 || (n==' '&&type==0)) in expand()
151 cpend[-1] = 0; /* put in sentinal */ in expand()
170 if(cp[n]==0 && cp+n+1==cpend && savec==' ') in expand()
185 if(n >= tabspace || cp+n>cpend) in expand()
247 if(cp==cpend) in expand()
261 if(cp >= cpend) in expand()
/dports/lang/gawk/gawk-5.1.1/
H A Dnode.c42 is_hex(const char *str, const char *cpend) in is_hex() argument
60 char *cpend; in r_force_number() local
79 for (cp = n->stptr, cpend = cp + n->stlen; in r_force_number()
83 if (cp == cpend) in r_force_number()
88 while (isspace((unsigned char) cpend[-1])) in r_force_number()
89 cpend--; in r_force_number()
102 if (cpend == cp + 4) { in r_force_number()
137 save = *cpend; in r_force_number()
138 *cpend = '\0'; in r_force_number()
140 *cpend = save; in r_force_number()
[all …]
H A Dmpfr.c270 char *cp, *cpend, *ptr, *cp1; in force_mpnum() local
280 cpend = n->stptr + n->stlen; in force_mpnum()
288 save = *cpend; in force_mpnum()
289 *cpend = '\0'; in force_mpnum()
302 *cpend = save; in force_mpnum()
338 *cpend = save; in force_mpnum()
339 if (errno == 0 && ptr == cpend) in force_mpnum()
350 char *cp, *cpend; in mpg_force_number() local
361 if (cp == cpend) in mpg_force_number()
367 cpend--; in mpg_force_number()
[all …]
/dports/japanese/gawk/gawk-3.0.6/
H A Dnode.c37 register char *cpend; local
66 cpend = cp + n->stlen;
67 while (cp < cpend && isspace((unsigned char) *cp))
69 if (cp == cpend || isalpha((unsigned char) *cp))
77 if (cpend - cp == 1) {
88 n->numbr = nondec2awknum(cp, cpend - cp);
94 save = *cpend;
95 *cpend = '\0';
101 *cpend = save;
104 if (errno == 0 && ptr >= cpend)
/dports/cad/magic/magic-8.3.245/extract/
H A DExtUnique.c183 char *cpend, *text, name[1024], name2[1024], message[1024]; local
205 cpend = strchr(text, '\0');
206 if (cpend > text) cpend--;
207 if (*cpend == '#') goto makeUnique;
208 if (*cpend == '!') return 0;
/dports/devel/cvs-devel/cvs-1.12.13/src/
H A Dfileattr.c215 char *cpend; in fileattr_get0() local
221 cpend = strchr (cp, ';'); in fileattr_get0()
222 if (cpend == NULL) in fileattr_get0()
223 cpend = cp + strlen (cp); in fileattr_get0()
224 retval = xmalloc (cpend - cp + 1); in fileattr_get0()
225 strncpy (retval, cp, cpend - cp); in fileattr_get0()
226 retval[cpend - cp] = '\0'; in fileattr_get0()
/dports/devel/jsl/jsl-0.3.0/src/
H A Djsregexp.c176 const jschar *cpend; member
449 if (state->cp == state->cpend) { in ParseRegExp()
740 while (state->cp < state->cpend) { in GetDecimalValue()
1260 if (state->cp < state->cpend) { in ParseQuantifier()
1803 if (x->cp + length > gData->cpend)
1819 if (x->cp + length > gData->cpend) in FlatNIMatcher()
1863 if (x->cp + len > gData->cpend) in BackrefMatcher()
2181 if (x->cp != gData->cpend) { in SimpleMatch()
2306 if (x->cp != gData->cpend) { in SimpleMatch()
2322 if (x->cp != gData->cpend) { in SimpleMatch()
[all …]
/dports/japanese/kinput2/kinput2-v3.1/lib/
H A Dxwstr.c247 XChar2b *cpend = buf + bufsize; local
285 if (cp >= cpend - 1) {
321 XChar2b *cpend = buf + bufsize; local
363 if (cp >= cpend - 1) {
423 XChar2b *cpend = buf + bufsize; local
460 if (cp >= cpend - 1) {
/dports/multimedia/avidemux-qt5/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/spiderMonkey/src/smjs/
H A Djsregexp.c171 const jschar *cpend; member
545 if (state->cp == state->cpend) { in ParseRegExp()
873 while (state->cp < state->cpend) { in GetDecimalValue()
1439 if (state->cp < state->cpend) { in ParseQuantifier()
1934 state.cpend = state.cp + len; in js_NewRegExp()
2134 JS_ASSERT(gData->cpend >= x->cp); in FlatNIMatcher()
2179 if (x->cp + len > gData->cpend) in BackrefMatcher()
2510 if (x->cp != gData->cpend) { in SimpleMatch()
2637 if (x->cp != gData->cpend) { in SimpleMatch()
2653 if (x->cp != gData->cpend) { in SimpleMatch()
[all …]
/dports/multimedia/avidemux-cli/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/spiderMonkey/src/smjs/
H A Djsregexp.c171 const jschar *cpend; member
545 if (state->cp == state->cpend) { in ParseRegExp()
873 while (state->cp < state->cpend) { in GetDecimalValue()
1439 if (state->cp < state->cpend) { in ParseQuantifier()
1934 state.cpend = state.cp + len; in js_NewRegExp()
2134 JS_ASSERT(gData->cpend >= x->cp); in FlatNIMatcher()
2179 if (x->cp + len > gData->cpend) in BackrefMatcher()
2510 if (x->cp != gData->cpend) { in SimpleMatch()
2637 if (x->cp != gData->cpend) { in SimpleMatch()
2653 if (x->cp != gData->cpend) { in SimpleMatch()
[all …]
/dports/multimedia/avidemux-plugins/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/spiderMonkey/src/smjs/
H A Djsregexp.c171 const jschar *cpend; member
545 if (state->cp == state->cpend) { in ParseRegExp()
873 while (state->cp < state->cpend) { in GetDecimalValue()
1439 if (state->cp < state->cpend) { in ParseQuantifier()
1934 state.cpend = state.cp + len; in js_NewRegExp()
2134 JS_ASSERT(gData->cpend >= x->cp); in FlatNIMatcher()
2179 if (x->cp + len > gData->cpend) in BackrefMatcher()
2510 if (x->cp != gData->cpend) { in SimpleMatch()
2637 if (x->cp != gData->cpend) { in SimpleMatch()
2653 if (x->cp != gData->cpend) { in SimpleMatch()
[all …]
/dports/multimedia/avidemux/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/spiderMonkey/src/smjs/
H A Djsregexp.c171 const jschar *cpend; member
545 if (state->cp == state->cpend) { in ParseRegExp()
873 while (state->cp < state->cpend) { in GetDecimalValue()
1439 if (state->cp < state->cpend) { in ParseQuantifier()
1934 state.cpend = state.cp + len; in js_NewRegExp()
2134 JS_ASSERT(gData->cpend >= x->cp); in FlatNIMatcher()
2179 if (x->cp + len > gData->cpend) in BackrefMatcher()
2510 if (x->cp != gData->cpend) { in SimpleMatch()
2637 if (x->cp != gData->cpend) { in SimpleMatch()
2653 if (x->cp != gData->cpend) { in SimpleMatch()
[all …]
/dports/lang/spidermonkey17/js/src/
H A Djsregexp.c171 const jschar *cpend; member
545 if (state->cp == state->cpend) { in ParseRegExp()
873 while (state->cp < state->cpend) { in GetDecimalValue()
1439 if (state->cp < state->cpend) { in ParseQuantifier()
1934 state.cpend = state.cp + len; in js_NewRegExp()
2134 JS_ASSERT(gData->cpend >= x->cp); in FlatNIMatcher()
2179 if (x->cp + len > gData->cpend) in BackrefMatcher()
2510 if (x->cp != gData->cpend) { in SimpleMatch()
2637 if (x->cp != gData->cpend) { in SimpleMatch()
2653 if (x->cp != gData->cpend) { in SimpleMatch()
[all …]
/dports/net/ntp/ntp-4.2.8p15/ntpq/
H A Dntpq.c3234 const char *cp, *cpend; in nextvar() local
3240 cpend = *datap + *datalen; in nextvar()
3247 ch = pf_getch(datap, cpend); in nextvar()
3254 ch = pf_nextch(datap, cpend); in nextvar()
3259 ch = pf_nextch(datap, cpend); in nextvar()
3275 *datap = cpend; in nextvar()
3289 *datap = cpend; in nextvar()
3345 *datap = cpend; in nextvar()
3398 const char *cpend; in rawprint() local
3404 cpend = data + length; in rawprint()
[all …]
/dports/ftp/tnftp/tnftp-20210827/src/
H A Dftp.c384 cpend = 1; in command()
456 cpend = 0; in getreply()
532 cpend = 0; in getreply()
742 while (cpend) in sendrequest()
899 if (!cpend) { in sendrequest()
982 while (cpend) in recvrequest()
1978 if (cpend) in proxtrans()
1987 if (cpend) in proxtrans()
1993 if (cpend) in proxtrans()
2002 if (cpend) in proxtrans()
[all …]
/dports/net/libpcap/libpcap-1.10.1/
H A Dpcap-bt-linux.c145 char *cpend; in bt_create() local
161 devnum = strtol(cp, &cpend, 10); in bt_create()
162 if (cpend == cp || *cpend != '\0') { in bt_create()
/dports/security/nmap/nmap-7.91/libpcap/
H A Dpcap-bt-linux.c145 char *cpend; in bt_create() local
161 devnum = strtol(cp, &cpend, 10); in bt_create()
162 if (cpend == cp || *cpend != '\0') { in bt_create()
/dports/security/krb5-appl/krb5-appl-1.0.3/gssftp/ftp/
H A Dftp.c523 cpend = 1; in command()
727 cpend = 0; in getreply()
810 while (cpend) { in sendrequest()
1029 if (!cpend) { in sendrequest()
1096 while (cpend) { in recvrequest()
1371 if (!cpend) { in recvrequest()
1787 if (cpend) in proxtrans()
1796 if (cpend) in proxtrans()
1802 if (cpend) in proxtrans()
1811 if (cpend) in proxtrans()
[all …]

12345