| /third_party/mbedtls/scripts/ |
| H A D | generate_driver_wrappers.py | 42 Render template from the input file and driver JSON. 56 Generate the file psa_crypto_driver_wrapper.c. 63 with open(file=os.path.join(output_dir, os.path.splitext(template_file_name)[0]), 86 " for driver " + driver_prefix, str(err), file=sys.stderr) 91 print("Error: Failed to validate data file: {} using schema: {}." 94 print("Error: Failed to validate data file: {} using schema: {}." 96 " ".format(driverjson_data, _schema, str(err)), file=sys.stderr) 102 with open(file=driver_file, mode='r', encoding='UTF-8') as f: 129 with open(file=file_path, mode='r', encoding='UTF-8') as file [all...] |
| /third_party/icu/icu4c/source/tools/gencfu/ |
| H A D | gencfu.cpp | 19 // Usage: gencfu [options] -r confusables-file.txt -o output-file.cfu 24 // The input rule file are plain text files containing confusable character 30 // The script used to compile confusablesWholeScript.txt into the CFU file 68 printf("Usage: %s [-v] [-options] -r confusablesRules.txt -o output-file\n", progName); in usageAndDie() 162 fprintf(stderr, "confusables file and output file must all be specified.\n"); in main() 174 /* Combine the directory with the file name */ in main() 188 // spoof detection data file parsing is dependent on regular expressions. in main() 199 /* write the dummy data file */ in main() 307 FILE *file; readFile() local [all...] |
| /third_party/mesa3d/src/gallium/drivers/svga/ |
| H A D | svga_tgsi_emit.h | 243 dst_register(SVGA3dShaderRegType file, int number) in dst_register() argument 249 assert(file <= SVGA3DREG_PREDICATE); in dst_register() 253 dest.type_upper = file >> 3; in dst_register() 259 dest.type_lower = file & 0x7; in dst_register() 279 /** Create a SVGA3dShaderSrcToken given a register file and number */ 281 src_token(SVGA3dShaderRegType file, int number) 287 assert(file <= SVGA3DREG_PREDICATE); 291 src.type_upper = file >> 3; 296 src.type_lower = file & 0x7; 303 /** Create a src_register given a register file an [all...] |
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
| H A D | main.py | 79 help="Output messages to the named HTML file instead of stdout.") 81 "file", 82 help="Only check the indicated file(s). By default, all chapters and extensions are checked.", 136 if args.file: 137 files = (str(Path(f).resolve()) for f in args.file) 154 if args.file: 156 for f in args.file: 167 check_broken = not args.file 169 if args.file and check_includes: 173 printer.outputResults(checker, broken_links=(not args.file), [all...] |
| /third_party/skia/third_party/externals/icu/source/tools/gencfu/ |
| H A D | gencfu.cpp | 19 // Usage: gencfu [options] -r confusables-file.txt -o output-file.cfu 30 // The script used to compile confusablesWholeScript.txt into the CFU file 68 printf("Usage: %s [-v] [-options] -r confusablesRules.txt -o output-file\n", progName); in usageAndDie() 162 fprintf(stderr, "confusables file and output file must all be specified.\n"); in main() 174 /* Combine the directory with the file name */ in main() 188 // spoof detection data file parsing is dependent on regular expressions. in main() 199 /* write the dummy data file */ in main() 215 // Read in the confusables source file in main() 307 FILE *file; readFile() local [all...] |
| /third_party/toybox/kconfig/ |
| H A D | expr.h | 18 struct file { struct 19 struct file *next; 20 struct file *parent; 121 struct file *file; member 143 struct file *file; member 153 extern struct file *file_list; 154 extern struct file *current_file; 155 struct file *lookup_fil [all...] |
| /third_party/toybox/toys/other/ |
| H A D | stat.c | 1 /* stat.c : display file or file system status 16 -f Display filesystem status instead of file status 50 char *file, *pattern; 89 strout(lsm_get_context(TT.file, &context) != -1 ? context : "?"); in print_stat() 96 "regular file\0symbolic link\0socket\0FIFO (named pipe)"; in print_stat() 100 if (!stat->st_size && filetype == S_IFREG) t = "regular empty file"; in print_stat() 117 printf("%s", TT.file); in print_stat() 119 if (readlink0(TT.file, toybuf, sizeof(toybuf))) in print_stat() 148 out('d', pathconf(TT.file, _PC_NAME_MA in print_statfs() [all...] |
| /third_party/rust/crates/rust-openssl/openssl/src/ |
| H A D | error.rs | 102 file: ShimStr, 117 let mut file = ptr::null(); in get() variables 122 match ERR_get_error_all(&mut file, &mut line, &mut func, &mut data, &mut flags) { in get() 143 let file = ShimStr::new(file); in get() 153 file, in get() 173 concat!(file!(), "\0").as_ptr() as _, in put() 197 self.file.as_ptr(), in put_error() 216 self.file.as_ptr(), in put_error() 273 /// Returns the name of the source file whic 274 pub fn file(&self) -> RetStr<'_> { file() functions [all...] |
| /third_party/vulkan-loader/scripts/ |
| H A D | dispatch_table_helper_generator.py | 9 # you may not use this file except in compliance with the License. 99 write("#pragma once", file=self.outFile) 103 write(s, file=self.outFile) 107 write(file_comment, file=self.outFile) 115 copyright += ' * you may not use this file except in compliance with the License.\n' 137 write(copyright, file=self.outFile) 138 write(preamble, file=self.outFile) 140 # Write generate and write dispatch tables to output file 149 write(stub, file=self.outFile) 150 write("\n\n", file [all...] |
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
| H A D | validitygenerator.py | 222 """Generate an include file. 224 directory - subdirectory to put file in (absolute or relative pathname) 225 basename - base name of the file 237 # Create validity file 239 self.logMsg('diag', '# Generating include file:', filename) 242 write(self.conventions.warning_comment, file=fp) 246 write('.Valid Usage (Implicit)', file=fp) 247 write('****', file=fp) 248 write(validity, file=fp, end='') 249 write('****', file [all...] |
| /third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |
| /third_party/node/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/ |
| H A D | crypto.h | 9 * this file except in compliance with the License. You can obtain a copy 10 * in the file LICENSE in the source distribution or at 333 typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line); 334 typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file, 336 typedef void (*CRYPTO_free_fn)(void *addr, const char *file, int line); 344 void *CRYPTO_malloc(size_t num, const char *file, int line); 345 void *CRYPTO_zalloc(size_t num, const char *file, int line); 346 void *CRYPTO_memdup(const void *str, size_t siz, const char *file, int line); 347 char *CRYPTO_strdup(const char *str, const char *file, int line); 348 char *CRYPTO_strndup(const char *str, size_t s, const char *file, in [all...] |