| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | encode.c | 110 ** The result is written into a preallocated output buffer "out". 111 ** "out" must be able to hold at least 2 +(257*n)/254 bytes. 119 ** If out==NULL then no output is generated but the routine still returns 120 ** the number of characters that would have been generated if out had 123 int sqlite_encode_binary(const unsigned char *in, int n, unsigned char *out){ argument 128 if( out ){ 129 out[0] = 'x'; 130 out[1] = 0; 147 if( out==0 ){ 150 out[ 175 sqlite_decode_binary(const unsigned char *in, unsigned char *out) argument 202 unsigned char out[33000]; local [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | dns_win32.c | 250 unsigned short out[8]; local 255 out[i * 2] = htons(LOWORD(chunk)); 256 out[i * 2 + 1] = htons(HIWORD(chunk)); 260 if (out[i] != 0) { 266 tp += sprintf((char*)tp,"%x", out[i]);
|
| H A D | php_crypt_r.c | 127 char * php_md5_crypt_r(const char *pw, const char *salt, char *out) { argument 139 char *passwd = out; 317 return out; 324 char * php_md5_crypt_r(const char *pw, const char *salt, char *out) argument
|
| /PHP_5_3/ext/xmlwriter/examples/ |
| H A D | xmlwriter_mem.php | 27 $out = xmlwriter_output_memory($xw, 0); variable 29 echo $out; 33 $out = xmlwriter_output_memory($xw, 1); variable 34 echo $out; 37 $out = xmlwriter_output_memory($xw); variable 38 echo $out;
|
| H A D | xmlwriter_mem_ns.php | 27 $out = xmlwriter_output_memory($xw, 0); variable 29 echo $out;
|
| /PHP_5_3/ext/zip/lib/ |
| H A D | zip_source_pkware.c | 113 decrypt(struct trad_pkware *ctx, zip_uint8_t *out, const zip_uint8_t *in, 131 if (out) 132 out[i] = b; 109 decrypt(struct trad_pkware *ctx, zip_uint8_t *out, const zip_uint8_t *in, zip_uint64_t len, int update_only) argument
|
| H A D | zip_close.c | 79 FILE *out; 143 if ((temp=_zip_create_temp_output(za, &out)) == NULL) { 253 cd->entry[j].offset = ftello(out); 267 if (add_data(za, zs ? zs : za->entry[i].source, &de, out) < 0) { 283 if (_zip_dirent_write(&de, out, 1, &za->error) < 0) { 288 if (copy_data(za->zp, cd->entry[j].comp_size, out, 301 if (write_cdir(za, cd, out) < 0) 311 fclose(out); 317 if (fclose(out) != 0) { 518 write_cdir(struct zip *za, struct zip_cdir *cd, FILE *out) 76 FILE *out; local 511 write_cdir(struct zip *za, struct zip_cdir *cd, FILE *out) argument [all...] |
| /PHP_5_3/ext/fileinfo/libmagic/ |
| H A D | encoding.c | 466 * cases for the NEL character can be taken out of the code. 490 * Copy buf[0 ... nbytes-1] into out[], translating EBCDIC to ASCII. 493 from_ebcdic(const unsigned char *buf, size_t nbytes, unsigned char *out) argument 498 out[i] = ebcdic_to_ascii[buf[i]];
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd2copypal.c | 16 FILE *in, *out; local 52 out = fopen (argv[2], "wb"); 53 if (!out) 59 gdImageGd2 (im, out, 128, 2); 60 fclose (out);
|
| H A D | gd2topng.c | 14 FILE *in, *out; local 33 out = fopen (argv[2], "wb"); 34 if (!out) 41 gdImagePng (im, out); 45 fclose (out);
|
| H A D | gd_gd.c | 11 extern void gdImageGd (gdImagePtr im, FILE * out); 14 /* Use this for commenting out debug-print statements. */ 212 void _gdPutColors (gdImagePtr im, gdIOCtx * out) argument 216 gdPutC(im->trueColor, out); 218 gdPutWord(im->colorsTotal, out); 220 gdPutInt(im->transparent, out); 223 gdPutC((unsigned char) im->red[i], out); 224 gdPutC((unsigned char) im->green[i], out); 225 gdPutC((unsigned char) im->blue[i], out); 226 gdPutC((unsigned char) im->alpha[i], out); 231 _gdPutHeader(gdImagePtr im, gdIOCtx * out) argument 247 _gdImageGd(gdImagePtr im, gdIOCtx * out) argument 267 gdIOCtx *out = gdNewFileCtx(outFile); local 275 gdIOCtx *out = gdNewDynamicCtx(2048, NULL); local [all...] |
| H A D | gd_ss.c | 11 extern void gdImagePngToSink (gdImagePtr im, gdSinkPtr out); 14 /* Use this for commenting out debug-print statements. */ 22 gdIOCtx *out = gdNewSSCtx(NULL, outSink); local 23 gdImagePngCtx(im, out); 24 out->gd_free(out);
|
| H A D | gd_wbmp.c | 68 void gd_putout (int i, void *out) argument 70 gdPutC(i, (gdIOCtx *) out); 92 ** out: the stream where to write 94 void gdImageWBMPCtx (gdImagePtr image, int fg, gdIOCtx * out) argument 116 if (writewbmp (wbmp, &gd_putout, out)) { 193 gdIOCtx *out = gdNewFileCtx(outFile); local 194 gdImageWBMPCtx(im, fg, out); 195 out->gd_free(out); 204 gdIOCtx *out local [all...] |
| H A D | gddemo.c | 11 FILE *out; local 108 out = fopen ("demoout.png", "wb"); 110 gdImagePng (im_out, out); 111 fclose (out);
|
| H A D | gdparttopng.c | 14 FILE *in, *out; local 43 out = fopen (argv[2], "wb"); 44 if (!out) 51 gdImagePng (im, out); 55 fclose (out);
|
| H A D | gdtest.c | 23 FILE *in, *out; local 60 out = fopen (of, "wb"); 61 gdImagePng (im, out); 62 fclose (out); 92 out = fopen (of, "wb"); 93 gdImageGd2 (im, out, 128, 2); 94 fclose (out); 127 out = fopen (of, "wb"); 128 gdImageGd (im, out); 129 fclose (out); [all...] |
| H A D | gdtopng.c | 13 FILE *in, *out; local 32 out = fopen (argv[2], "wb"); 33 if (!out) 39 gdImagePng (im, out); 40 fclose (out);
|
| H A D | pngtogd.c | 14 FILE *in, *out; local 33 out = fopen (argv[2], "wb"); 34 if (!out) 40 gdImageGd (im, out); 41 fclose (out);
|
| H A D | pngtogd2.c | 15 FILE *in, *out; local 38 out = fopen (argv[2], "wb"); 39 if (!out) 47 gdImageGd2 (im, out, cs, fmt); 48 fclose (out);
|
| H A D | testac.c | 21 FILE *out; local 79 FILE *out; local 110 out = fopen (filename, "wb"); 125 gdImagePng (im_out, out); 126 fclose (out);
|
| H A D | wbmp.c | 60 ** mbi integers it spits out. 64 putmbi (int i, void (*putout) (int c, void *out), void *out) argument 76 putout (0x80 | (i & 0x7f << 7 * l) >> 7 * l, out); 78 putout (i & 0x7f, out); 248 writewbmp (Wbmp * wbmp, void (*putout) (int c, void *out), void *out) argument 254 putout (0, out); /* WBMP Type 0: B/W, Uncompressed bitmap */ 255 putout (0, out); /* FixHeaderField */ 260 putmbi (wbmp->width, putout, out); /* widt 333 putout(int c, void *out) argument [all...] |
| H A D | webpng.c | 23 FILE *out; local 248 out = stdout; 256 out = fopen (outFn, "wb"); 258 if (!out) 267 gdImagePng (im, out); 271 fclose (out);
|
| H A D | xbm.c | 159 void gdCtxPrintf(gdIOCtx * out, const char *format, ...) argument 168 out->putBuf(out, buf, len); 174 void gdImageXbmCtx(gdImagePtr image, char* file_name, int fg, gdIOCtx * out) argument 197 gdCtxPrintf(out, "#define %s_width %d\n", name, gdImageSX(image)); 198 gdCtxPrintf(out, "#define %s_height %d\n", name, gdImageSY(image)); 199 gdCtxPrintf(out, "static unsigned char %s_bits[] = {\n ", name); 216 gdCtxPrintf(out, ", "); 218 gdCtxPrintf(out, "\n "); 223 gdCtxPrintf(out, " [all...] |
| /PHP_5_3/ext/dba/libcdb/ |
| H A D | uint32.c | 32 void uint32_pack(char *out, uint32 in) argument 34 out[0] = in&0xff; in>>=8; 35 out[1] = in&0xff; in>>=8; 36 out[2] = in&0xff; in>>=8; 37 out[3] = in&0xff; 42 void uint32_unpack(const char *in, uint32 *out) argument 44 *out = (((uint32)(unsigned char)in[3])<<24) |
|
| /PHP_5_3/ext/hash/ |
| H A D | php_hash.h | 134 static inline void php_hash_bin2hex(char *out, const unsigned char *in, int in_len) argument 140 out[i * 2] = hexits[in[i] >> 4]; 141 out[(i * 2) + 1] = hexits[in[i] & 0x0F];
|