Searched refs:file (Results 76 - 100 of 5967) sorted by relevance

1234567891011>>

/external/skia/tools/skpdiff/
H A Dgenerate_pmetric_tables.py12 * found in the LICENSE file.
70 print('static float gCubeRootTable[] = {', end='', file=stream)
73 print('\n ', end='', file=stream)
74 print("%.10f" % pow(i / 1024.0, 1.0 / 3.0), end='f,', file=stream)
75 print('\n};', end='', file=stream)
76 print(CUBE_ROOT_ACCESS_FUNCTION, file=stream)
86 print('static float gGammaTable[] = {', end='', file=stream)
89 print('\n ', end='', file=stream)
90 print("%.10f" % pow(i / 255.0, 2.2), end='f,', file=stream)
91 print('\n};', end='', file
[all...]
/external/chromium_org/third_party/ots/src/
H A Dloca.cc3 // found in the LICENSE file.
15 bool ots_loca_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
22 file->loca = loca;
24 if (!file->maxp || !file->head) {
28 const unsigned num_glyphs = file->maxp->num_glyphs;
33 if (file->head->index_to_loc_format == 0) {
65 bool ots_loca_should_serialise(OpenTypeFile *file) { argument
66 return file->loca != NULL;
69 bool ots_loca_serialise(OTSStream *out, OpenTypeFile *file) { argument
94 ots_loca_free(OpenTypeFile *file) argument
[all...]
H A Dltsh.cc3 // found in the LICENSE file.
13 do { delete file->ltsh; file->ltsh = 0; } while (0)
17 bool ots_ltsh_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
20 if (!file->maxp) {
25 file->ltsh = ltsh;
39 if (num_glyphs != file->maxp->num_glyphs) {
57 bool ots_ltsh_should_serialise(OpenTypeFile *file) { argument
58 if (!file->glyf) return false; // this table is not for CFF fonts.
59 return file
62 ots_ltsh_serialise(OTSStream *out, OpenTypeFile *file) argument
78 ots_ltsh_free(OpenTypeFile *file) argument
[all...]
/external/compiler-rt/lib/tsan/
H A Danalyze_libtsan.sh27 file=asm_$f.s
28 get_asm $f > $file
29 tot=$(wc -l < $file)
31 rsp=$(grep '(%rsp)' $file | wc -l)
32 push=$(grep 'push' $file | wc -l)
33 pop=$(grep 'pop' $file | wc -l)
34 call=$(grep 'call' $file | wc -l)
35 load=$(egrep 'mov .*\,.*\(.*\)|cmp .*\,.*\(.*\)' $file | wc -l)
36 store=$(egrep 'mov .*\(.*\),' $file | wc -l)
37 mov=$(grep 'mov' $file | w
[all...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DFileLocator.java63 private File file; field in class:FileLocator.AssetInfoFile
65 public AssetInfoFile(AssetManager manager, AssetKey key, File file){ argument
67 this.file = file;
73 return new FileInputStream(file);
75 // NOTE: Can still happen even if file.exists() is true, e.g.
77 throw new AssetLoadException("Failed to open file: " + file, ex);
84 File file = new File(root, name);
85 if (file
[all...]
/external/apache-http/src/org/apache/http/entity/
H A DFileEntity.java8 * or more contributor license agreements. See the NOTICE file
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
41 * An entity whose content is retrieved from a file.
51 protected final File file; field in class:FileEntity
53 public FileEntity(final File file, final String contentType) { argument
55 if (file == null) {
58 this.file = file;
67 return this.file
[all...]
/external/chromium_org/chrome/common/safe_browsing/
H A Ddownload_protection_util.h3 // found in the LICENSE file.
15 // Returns true if the given file is a supported binary file type.
16 bool IsBinaryFile(const base::FilePath& file);
18 // Returns true if the given file is a supported archive file type.
19 bool IsArchiveFile(const base::FilePath& file);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileEntrySync.idl34 [RaisesException] File file();
/external/chromium_org/third_party/icu/source/tools/gentest/
H A Dgenres32.c8 * file name: genres32.c
53 char file[512]; local
56 uprv_strcpy(file,path);
57 if(file[strlen(file)-1]!=U_FILE_SEP_CHAR) {
58 uprv_strcat(file,U_FILE_SEP_STRING);
60 uprv_strcat(file,"testtable32.txt");
61 out = fopen(file, "w");
62 /*puts(file);*/
65 fprintf(stderr, "%s: Couldn't create resource test file
[all...]
/external/chromium_org/third_party/sqlite/src/test/
H A Dquick.test7 # This file runs all tests.
10 set testdir [file dirname $argv0]
H A Dveryquick.test7 # This file runs all the tests run by quick.test except for those related
13 set testdir [file dirname $argv0]
/external/compiler-rt/lib/
H A Deprintf.c5 * This file is dual licensed under the MIT and the University of Illinois Open
29 const char* line, const char* file)
31 fprintf(stderr, format, assertion_expression, line, file);
28 __eprintf(const char* format, const char* assertion_expression, const char* line, const char* file) argument
/external/icu4c/tools/gentest/
H A Dgenres32.c8 * file name: genres32.c
53 char file[512]; local
56 uprv_strcpy(file,path);
57 if(file[strlen(file)-1]!=U_FILE_SEP_CHAR) {
58 uprv_strcat(file,U_FILE_SEP_STRING);
60 uprv_strcat(file,"testtable32.txt");
61 out = fopen(file, "w");
62 /*puts(file);*/
65 fprintf(stderr, "%s: Couldn't create resource test file
[all...]
/external/libffi/src/
H A Ddebug.c41 void ffi_assert(char *expr, char *file, int line) argument
43 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
50 void ffi_type_test(ffi_type *a, char *file, int line) argument
52 FFI_ASSERT_AT(a != NULL, file, line);
54 FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
55 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
56 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
/external/llvm/test/MC/ELF/
H A Ddebug-line2.s29 .file 1 "foo.c"
H A Drelax-crash.s8 .file 1 "Disassembler.ii"
/external/oprofile/libutil/
H A Dop_lockfile.c2 * @file op_lockfile.c
6 * @remark Read the file COPYING
22 static pid_t op_read_lock_file(char const * file) argument
27 fp = fopen(file, "r");
42 int op_write_lock_file(char const * file) argument
46 if (op_file_readable(file)) {
47 pid_t pid = op_read_lock_file(file);
51 int err = unlink(file);
52 fprintf(stderr, "Removing stale lock file %s\n",
53 file);
[all...]
H A Dop_lockfile.h2 * @file op_lockfile.h
6 * @remark Read the file COPYING
22 * op_write_lock_file - write a lock file
25 * Write the pid into the given lock file. Stale
28 int op_write_lock_file(char const * file);
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/QA/
H A DruniSACfault.txt23 file=wb_contspeech.pcm
28 $ISAC 32000 -F $testnr $INDIR/"$file" $OUTDIR/ft$testnr"$file" >> $LOGFILE
32 $ISAC 32000 -F 10 $INDIR/"$file" $OUTDIR/ft10_"$file" >> $LOGFILE
33 $ISAC 32000 -F 10 -PL 10 $INDIR/"$file" $OUTDIR/ft10plc_"$file" >> $LOGFILE
34 $ISAC 32000 -F 10 -NB 1 $INDIR/"$file" $OUTDIR/ft10nb1_"$file" >> $LOGFILE
35 $ISAC 32000 -F 10 -NB 2 -PL 10 $INDIR/"$file"
[all...]
/external/clang/test/Index/Inputs/
H A Dcrash-recovery-reparse-remap.c2 #warning parsing remapped file
/external/libsepol/tests/policies/test-deps/
H A Dmodreq-bool-opt.conf4 class file {read write};
20 allow a_t b_t : file { read write };
/external/llvm/test/MC/MachO/
H A Dempty-dwarf-lines.s8 .file 1 "test.c"
/external/srec/srec/include/
H A Derrhndl.h7 * you may not use this file except in compliance with the License. *
31 void invokeCrecErrHandler(char* file,
/external/sonivox/arm-wt-22k/misc/
H A Deas_host.c7 * This file contains the host wrapper functions for stdio, stdlib, etc.
9 * Modify this file to suit the needs of your particular system.
12 * a MIDI type 1 file that can be played. To maintain efficiency, data
16 * EAS_HW_FILE is a structure to support local file buffering. It
17 * comprises the OS File handle, some data related to the local file
23 * If the file system supports duplicate file handles and buffering,
25 * native file I/O routines.
27 * If the system has enough memory to support reading the entire file
29 * EAS_HWOpenFile and then close the file
233 EAS_HW_FILE *file; local
284 EAS_HWFillBuffer(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file) argument
306 EAS_HWReadFile(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, void *pBuffer, EAS_I32 n, EAS_I32 *pBytesRead) argument
394 EAS_HWGetByte(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, void *p) argument
431 EAS_HWGetWord(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, void *p, EAS_BOOL msbFirst) argument
461 EAS_HWGetDWord(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, void *p, EAS_BOOL msbFirst) argument
493 EAS_HWFilePos(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 *pPosition) argument
513 EAS_HWFileSeek(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
550 EAS_HWFileSeekOfs(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
587 EAS_HWFileLength(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 *pLength) argument
614 EAS_HWDupHandle(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_FILE_HANDLE* pDupFile) argument
[all...]
/external/chromium_org/tools/resources/
H A Doptimize-png-files.sh4 # found in the LICENSE file.
7 # and executes a similar pipleline to optimize the png file size.
30 # Files larger than this file size (in bytes) will
58 # Usage: pngout_loop <file> <png_out_options> ...
59 # Optimize the png file using pngout with the given options
62 local file=$1
68 pngout -q -k1 -s1 -f$j $opts $file
74 pngout -q -k1 -s1 -b$i -f$j $opts $file
90 # Usage: process_grayscale <file>
97 pngout_loop $file
[all...]

Completed in 629 milliseconds

1234567891011>>