| /PHP_5_4/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_4/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 | gd_webp.c | 99 gdIOCtx *out = gdNewFileCtx(outFile); local 100 gdImageWebpCtx(im, out, quantization); 101 out->gd_free(out); 106 gdIOCtx *out = gdNewFileCtx(outFile); local 107 gdImageWebpCtx(im, out, -1); 108 out->gd_free(out); 114 gdIOCtx *out = gdNewDynamicCtx(2048, NULL); local 115 gdImageWebpCtx(im, out, 125 gdIOCtx *out = gdNewDynamicCtx(2048, NULL); 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 | wbmp.h | 43 void putmbi( int i, void (*putout)(int c, void *out), void *out); 48 int writewbmp( Wbmp *wbmp, void (*putout)( int c, void *out), void *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_4/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 1277 write_case(FILE *out, _case_t *tab, int num, int first) argument 1283 else fprintf(out, ","); 1284 fprintf(out, "\n\t0x%08lx, 0x%08lx, 0x%08lx", 1297 FILE *out; local 1317 if ((out = fopen(path, "w")) == 0) 1324 if ((out = fopen(path, "wb")) == 0) 1361 fprintf(out, 1374 fprintf(out, PREF "unsigned short _ucprop_size = %d;\n\n", NUMPROPS); 1376 fprintf(out, PREF "unsigned short _ucprop_offsets[] = {"); 1379 if (i) fprintf(out, ","); [all...] |
| /PHP_5_4/Zend/ |
| H A D | zend_vm_gen.php | 272 function out($f, $s) { function 477 out($f, $code); 485 out($f, "#line $lineno \"$definition_file\"\n"); 491 out($f,"static int ZEND_FASTCALL ".$name.($spec?"_SPEC":"").$prefix[$op1].$prefix[$op2]."_HANDLER(ZEND_OPCODE_HANDLER_ARGS)\n"); 495 out($f,"case ".((string)($opnames[$name]*25+($typecode[$op1]*5)+$typecode[$op2])).": /*".$name."_SPEC".$prefix[$op1].$prefix[$op2]."_HANDLER*/"); 497 out($f,"case ".$name.":"); 501 out($f," ".$name.($spec?"_SPEC":"").$prefix[$op1].$prefix[$op2]."_LABEL:\n"); 503 out($f,"\n"); 507 out($f,$name.($spec?"_SPEC":"").$prefix[$op1].$prefix[$op2]."_HANDLER: ZEND_VM_GUARD(".$name.($spec?"_SPEC":"").$prefix[$op1].$prefix[$op2].");\n"); 520 out( [all...] |
| /PHP_5_4/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) |
|
| H A D | uint32.h | 36 void uint32_pack(char *out, uint32 in); 37 void uint32_unpack(const char *in, uint32 *out);
|
| /PHP_5_4/ext/standard/ |
| H A D | php_crypt_r.h | 51 extern char * php_md5_crypt_r(const char *pw, const char *salt, char *out);
|
| /PHP_5_4/ext/fileinfo/libmagic/ |
| H A D | print.c | 101 goto out; 110 goto out; 115 goto out; 118 out:
|
| /PHP_5_4/ext/pgsql/tests/ |
| H A D | skipif.inc | 31 $out = pg_escape_bytea("\xFF"); 32 if (strpos($out, '377') !== false) { 39 $out = pg_escape_bytea("\xFF"); 40 if (strpos($out, '377') === false) {
|