HomeSort by relevance Sort by last modified time
    Searched refs:infile (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/chrome/tools/build/linux/
sed.sh 8 # sed -e A -e B infile > outfile
11 infile="$1"
15 sed "$@" "$infile" > "$outfile"
  /external/bzip2/
format.pl 24 my $infile = shift;
25 # check infile exists
26 die "Can't find file \"$infile\""
27 unless -f $infile;
28 # check we can read infile
29 if (! -r $infile) {
30 die "Can't read input $infile\n";
32 # check we can open infile
33 open( INFILE,"<$infile" ) or
    [all...]
  /external/chromium_org/chrome/tools/test/
generate_mime_tests.pl 212 my $infile = join "", "iframe/", $content_type, ".html";
213 $infile =~ tr/\//_/;
214 $infile = $target_path.$infile;
216 open OUT, "> $infile" or die "Failed to open file $infile";
263 my $infile = join "", "main/", $content_type, $count, ".html";
264 $infile =~ tr/\//_/;
266 $infile = $target_path.$infile;
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
rdcolmap.c 79 read_gif_map (j_decompress_ptr cinfo, FILE * infile)
88 if ((header[i] = getc(infile)) == EOF)
104 R = getc(infile);
105 G = getc(infile);
106 B = getc(infile);
121 pbm_getc (FILE * infile)
127 ch = getc(infile);
130 ch = getc(infile);
138 read_pbm_integer (j_decompress_ptr cinfo, FILE * infile)
149 ch = pbm_getc(infile);
    [all...]
example.c 296 FILE * infile; /* source file */ local
306 if ((infile = fopen(filename, "rb")) == NULL) {
322 fclose(infile);
330 jpeg_stdio_src(&cinfo, infile);
399 fclose(infile);
  /external/jpeg/
rdcolmap.c 79 read_gif_map (j_decompress_ptr cinfo, FILE * infile)
88 if ((header[i] = getc(infile)) == EOF)
104 R = getc(infile);
105 G = getc(infile);
106 B = getc(infile);
121 pbm_getc (FILE * infile)
127 ch = getc(infile);
130 ch = getc(infile);
138 read_pbm_integer (j_decompress_ptr cinfo, FILE * infile)
149 ch = pbm_getc(infile);
    [all...]
example.c 296 FILE * infile; /* source file */ local
306 if ((infile = fopen(filename, "rb")) == NULL) {
322 fclose(infile);
330 jpeg_stdio_src(&cinfo, infile);
399 fclose(infile);
jdatasrc.c 28 FILE * infile; /* source stream */ member in struct:__anon2248
95 nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE);
182 jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile)
209 src->infile = infile;
  /external/chromium_org/third_party/libvpx/source/libvpx/
ivfdec.h 21 int ivf_read_frame(FILE *infile, uint8_t **buffer,
ivfdec.c 72 int ivf_read_frame(FILE *infile, uint8_t **buffer,
77 if (fread(raw_header, IVF_FRAME_HDR_SZ, 1, infile) != 1) {
78 if (!feof(infile))
101 if (!feof(infile)) {
102 if (fread(*buffer, 1, frame_size, infile) != frame_size) {
  /external/chromium_org/third_party/simplejson/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
29 obj = json.load(infile,
  /external/libvpx/libvpx/
ivfdec.h 21 int ivf_read_frame(FILE *infile, uint8_t **buffer,
ivfdec.c 72 int ivf_read_frame(FILE *infile, uint8_t **buffer,
77 if (fread(raw_header, IVF_FRAME_HDR_SZ, 1, infile) != 1) {
78 if (!feof(infile))
101 if (!feof(infile)) {
102 if (fread(*buffer, 1, frame_size, infile) != frame_size) {
  /external/libpng/contrib/gregbook/
readppm.c 81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight)
87 saved_infile = infile;
89 fgets(ppmline, 256, infile);
107 fgets(ppmline, 256, infile);
112 fgets(ppmline, 256, infile);
readpng.h 81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight);
  /external/openssl/apps/
nseq.c 72 char **args, *infile = NULL, *outfile = NULL; local
87 infile = *args;
108 if (infile) {
109 if (!(in = BIO_new_file (infile, "r"))) {
111 "Can't open input file %s\n", infile);
139 BIO_printf (bio_err, "Error reading certs file %s\n", infile);
149 BIO_printf (bio_err, "Error reading sequence file %s\n", infile);
pkeyparam.c 71 char **args, *infile = NULL, *outfile = NULL; local
97 infile = *args;
146 if (infile)
148 if (!(in = BIO_new_file (infile, "r")))
151 "Can't open input file %s\n", infile);
dsa.c 107 char *infile,*outfile,*prog; local
129 infile=NULL;
152 infile= *(++argv);
205 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
257 if (infile == NULL)
261 if (BIO_read_filename(in,infile) <= 0)
263 perror(infile);
274 pkey = load_pubkey(bio_err, infile, informat, 1,
277 pkey = load_key(bio_err, infile, informat, 1,
  /external/openssl/crypto/rc4/
rc4.c 77 char *infile=NULL,*outfile=NULL,*keystr=NULL; local
91 infile= *(++argv);
121 if (infile == NULL)
125 in=fopen(infile,"r");
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
twopass_encoder.c 62 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
130 FILE *infile,
141 while (vpx_img_read(raw, infile)) {
159 FILE *infile,
181 while (vpx_img_read(raw, infile)) {
200 FILE *infile = NULL; local
247 if (!(infile = fopen(infile_arg, "rb")))
252 stats = pass0(&raw, infile, encoder, &cfg);
255 rewind(infile);
258 pass1(&raw, infile, outfile_arg, encoder, &cfg)
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/tests/
fix_deps_test.py 49 with open(self.tempfile) as infile:
50 contents = infile.read()
62 with open(self.tempfile) as infile:
63 contents = infile.read()
73 with open(self.tempfile) as infile:
74 contents = infile.read()
  /external/chromium_org/tools/
sort-headers.py 77 def SortHeader(infile, outfile):
78 """Sorts the headers in infile, writing the sorted file to outfile."""
79 for line in infile:
87 line = infile.next()
121 infile = open(filename, 'rb')
123 SortHeader(infile, outfile)
124 infile.close()
  /external/deqp/framework/delibs/scripts/
pre_commit.py 67 def check_external_guards (infile):
68 contents = infile.read()
71 croak(infile.name, lineno, "External include guard")
  /bootable/recovery/tools/ota/
convert-to-bmp.py 10 infile = sys.argv[1] variable
16 im = Image.open(infile)
  /external/chromium_org/third_party/ots/tools/
ttf-checksum.py 12 def checkChecksum(infile):
13 contents = infile.read()

Completed in 4466 milliseconds

1 2 3 4 5 6 7