Searched refs:strptr (Results 1 - 15 of 15) sorted by relevance

/macosx-10.10.1/bind9-45.101/bind9/contrib/nslint-2.1a3/
H A Dsavestr.c48 static char *strptr = NULL; local
56 strptr = (char *)malloc(strsize);
57 if (strptr == NULL) {
62 (void)strcpy(strptr, str);
63 p = strptr;
64 strptr += size;
H A Dnslint.c126 char *strptr; /* pointer to string pool */ variable
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/ripemd/
H A Drmd128.h49 #define BYTES_TO_DWORD(strptr) \
50 (((dword) *((strptr)+3) << 24) | \
51 ((dword) *((strptr)+2) << 16) | \
52 ((dword) *((strptr)+1) << 8) | \
53 ((dword) *(strptr)))
117 ripemd128_MDfinish _ANSI_ARGS_ ((dword *MDbuf, byte *strptr, dword lswlen, dword mswlen));
119 * puts bytes from strptr into X and pad out; appends length
122 * note: there are (lswlen mod 64) bytes left in strptr.
H A Drmd160.h47 #define BYTES_TO_DWORD(strptr) \
48 (((dword) *((strptr)+3) << 24) | \
49 ((dword) *((strptr)+2) << 16) | \
50 ((dword) *((strptr)+1) << 8) | \
51 ((dword) *(strptr)))
134 ripemd160_MDfinish _ANSI_ARGS_ ((dword *MDbuf, byte *strptr, dword lswlen, dword mswlen));
136 * puts bytes from strptr into X and pad out; appends length
139 * note: there are (lswlen mod 64) bytes left in strptr.
H A Drmd128.c207 ripemd128_MDfinish (MDbuf, strptr, lswlen, mswlen)
209 byte* strptr;
218 /* put bytes from strptr into X */
221 X[i>>2] ^= (dword) *strptr++ << (8 * (i&3));
H A Drmd160.c245 ripemd160_MDfinish(MDbuf, strptr, lswlen, mswlen)
247 byte *strptr;
256 /* put bytes from strptr into X */
259 X[i>>2] ^= (dword) *strptr++ << (8 * (i&3));
/macosx-10.10.1/file_cmds-242/df/
H A Ddf.c569 char *str, *strptr, **listptr; local
629 for (i = 0, strptr = str + 2; i < cnt; i++, strptr++) {
630 strncpy(strptr, listptr[i], 32);
631 strptr += strlen(listptr[i]);
632 *strptr = ',';
635 *(--strptr) = '\0';
/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_dis.c182 uint_t strptr = DIF_INSTR_STRING(in); local
185 strptr, DIF_INSTR_RD(in));
187 if (strptr < dp->dtdo_strlen)
188 (void) fprintf(fp, "\t\t! \"%s\"", dp->dtdo_strtab + strptr);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Darchive.c1238 char *strptr;
1293 strptr = *tabloc;
1312 strcpy (strptr, normal);
1314 strptr[thislen] = '\012';
1317 strptr[thislen] = '/';
1318 strptr[thislen + 1] = '\012';
1322 strptr - *tabloc);
1323 strptr += thislen + 1;
1325 ++strptr;
1232 char *strptr; local
/macosx-10.10.1/ruby-106/ruby/ext/digest/rmd160/
H A Drmd160.c56 #define BYTES_TO_DWORD(strptr) \
57 (((uint32_t) *((strptr)+3) << 24) | \
58 ((uint32_t) *((strptr)+2) << 16) | \
59 ((uint32_t) *((strptr)+1) << 8) | \
60 ((uint32_t) *(strptr)))
/macosx-10.10.1/libresolv-57/
H A Dres_debug.c696 precsize_aton(const char **strptr) { argument
703 cp = *strptr;
729 *strptr = cp;
/macosx-10.10.1/system_cmds-643.1.1/trace.tproj/
H A Dtrace.c1237 char *strptr; local
1240 strptr = (char *)lkp->lk_pathname;
1245 len = strlen(strptr);
1252 fprintf(output_file, "%-16lx %-51s %-16lx %-2d %s\n", lkp->lk_dvp, &strptr[len], thread, cpunum, command);
1254 fprintf(output_file, "%-8x %-51s %-8lx %-2d %s\n", (unsigned int)lkp->lk_dvp, &strptr[len], thread, cpunum, command);
/macosx-10.10.1/cups-408/cups/cups/
H A Dppd.c2752 *strptr, /* Pointer into string */ local
3203 strptr = lineptr + strlen(lineptr) - 1;
3204 while (strptr >= lineptr && _cups_isspace(*strptr))
3205 *strptr-- = '\0';
3207 if (*strptr == '\"')
3213 *strptr = '\0';
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dhist.c1993 * Substitute "in" for "out" in "*strptr" and update "*strptr".
2002 subst(char **strptr, char *in, char *out, int gbal) argument
2004 char *str = *strptr, *substcut, *sptr;
2036 if (getmatch(strptr, in, fl, 1, out))
2046 off = substcut - *strptr + outlen;
2048 *strptr = zhtricat(*strptr, sptr, substcut);
2049 str = (char *)*strptr + off;
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Dtransupp.c750 * *strptr is advanced over the digit string, and *result is set to its value.
754 jt_read_integer (const char ** strptr, JDIMENSION * result)
756 const char * ptr = *strptr;
763 if (ptr == *strptr)
765 *strptr = ptr;

Completed in 251 milliseconds