| /OK3568_Linux_fs/kernel/tools/power/x86/intel-speed-select/ |
| H A D | isst-display.c | 84 static void format_and_print_txt(FILE *outf, int level, char *header, in format_and_print_txt() argument 103 fprintf(outf, "%s", delimiters); in format_and_print_txt() 104 fprintf(outf, "%s:%s\n", header, value); in format_and_print_txt() 106 fprintf(outf, "%s", delimiters); in format_and_print_txt() 107 fprintf(outf, "%s\n", header); in format_and_print_txt() 112 static void format_and_print(FILE *outf, int level, char *header, char *value) in format_and_print() argument 119 format_and_print_txt(outf, level, header, value); in format_and_print() 125 fprintf(outf, "{"); in format_and_print() 127 fprintf(outf, "\n}\n"); in format_and_print() 137 fprintf(outf, ",\n"); in format_and_print() [all …]
|
| H A D | isst-config.c | 23 static FILE *outf; variable 77 return outf; in get_output_file() 616 fprintf(outf, "Error: map logical_cpu:%d\n", in create_cpu_map() 724 fprintf(outf, "Error: mmio_cmd cpu:%d reg:%x read_write:%x\n", in isst_send_mmio_command() 856 fprintf(outf, "Error: msr_cmd cpu:%d msr:%x read_write:%d\n", in isst_send_msr_command() 924 fprintf(outf, "Intel(R) SST-PP (feature perf-profile) is supported\n"); in isst_print_extended_platform_info() 926 fprintf(outf, "Intel(R) SST-PP (feature perf-profile) is not supported\n"); in isst_print_extended_platform_info() 927 fprintf(outf, "Only performance level 0 (base level) is present\n"); in isst_print_extended_platform_info() 931 fprintf(outf, "TDP level change control is locked\n"); in isst_print_extended_platform_info() 933 fprintf(outf, "TDP level change control is unlocked, max level: %d \n", pkg_dev.levels); in isst_print_extended_platform_info() [all …]
|
| H A D | isst.h | 209 extern void isst_ctdp_display_information(int cpu, FILE *outf, int tdp_level, 211 extern void isst_ctdp_display_core_info(int cpu, FILE *outf, char *prefix, 213 extern void isst_ctdp_display_information_start(FILE *outf); 214 extern void isst_ctdp_display_information_end(FILE *outf); 215 extern void isst_pbf_display_information(int cpu, FILE *outf, int level, 227 extern void isst_fact_display_information(int cpu, FILE *outf, int level, 241 extern void isst_clos_display_information(int cpu, FILE *outf, int clos, 243 extern void isst_clos_display_assoc_information(int cpu, FILE *outf, int clos); 247 extern void isst_display_result(int cpu, FILE *outf, char *feature, char *cmd, 251 extern void isst_clos_display_clos_information(int cpu, FILE *outf,
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/scripts/ |
| H A D | rsp_to_gcm_test.py | 22 def generate_case(outf, myvars, mode): argument 33 outf.write('{ TEE_ALG_AES_GCM, ' + mode + ', TEE_TYPE_AES,\n') 34 outf.write('/* Key */ ' + to_compound_str(myvars['Key']) + '\n') 35 outf.write('/* IV */ ' + to_compound_str(myvars['IV']) + '\n') 36 outf.write('0,\n') 37 outf.write('/* AAD */ ' + to_compound_str(myvars['AAD']) + '\n') 38 outf.write('0,\n') 39 outf.write('/* PT */ ' + to_compound_str(myvars['PT']) + '\n') 40 outf.write('/* CT */ ' + to_compound_str(myvars['CT']) + '\n') 41 outf.write('/* Tag */ ' + to_compound_str(myvars['Tag']) + '\n') [all …]
|
| /OK3568_Linux_fs/kernel/tools/power/x86/turbostat/ |
| H A D | turbostat.c | 38 FILE *outf; variable 648 fprintf(outf, in help() 1294 if (outf == stderr) in flush_output_stdout() 1297 filep = outf; in flush_output_stdout() 1306 fputs(output_buffer, outf); in flush_output_stderr() 1307 fflush(outf); in flush_output_stderr() 1485 fprintf(outf, "cpu%d MPERF 0!\n", old->cpu_id); in delta_thread() 1883 fprintf(outf, "cpu%d: BIOS BUG: apic 0x%x x2apic 0x%x\n", in get_apic_id() 1901 fprintf(outf, "get_counters: Could not migrate to CPU %d\n", cpu); in get_counters() 2193 fprintf(outf, "cpu%d: MSR_PLATFORM_INFO: 0x%08llx\n", base_cpu, msr); in dump_nhm_platform_info() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-kernel/perf/perf/ |
| H A D | sort-pmuevents.py | 88 outf = open( outfile, 'w' ) variable 91 outf.write( preamble.group(1) ) 93 …outf.write( "%s %s %s[] = {\n" % (entry_dict_sorted[d]['type_prefix'], entry_dict_sorted[d]['type'… 95 outf.write( entry_dict_sorted[d]['fields'][f] + '\n' ) 97 outf.write( "};\n" ) 99 outf.close()
|
| /OK3568_Linux_fs/kernel/scripts/dtc/ |
| H A D | dtc.c | 170 FILE *outf = NULL; in main() local 342 outf = stdout; in main() 344 outf = fopen(outname, "wb"); in main() 345 if (! outf) in main() 351 dt_to_source(outf, dti); in main() 356 dt_to_yaml(outf, dti); in main() 359 dt_to_blob(outf, dti, outversion); in main() 361 dt_to_asm(outf, dti, outversion); in main()
|
| /OK3568_Linux_fs/u-boot/scripts/dtc/ |
| H A D | dtc.c | 178 FILE *outf = NULL; in main() local 344 outf = stdout; in main() 346 outf = fopen(outname, "wb"); in main() 347 if (! outf) in main() 353 dt_to_source(outf, dti); in main() 355 dt_to_blob(outf, dti, outversion); in main() 357 dt_to_asm(outf, dti, outversion); in main()
|
| /OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/src/ |
| H A D | big.c | 73 char *outf; /* standard output (filename) */ member 229 if (work[thiswork].outf[0] != '\0') { 232 for (q = work[thiswork].outf; *q != '\n'; q++) ; 234 if (freopen(work[thiswork].outf, "w", stdout) == NULL) { 236 work[thiswork].outf); 258 if (work[thiswork].outf[0] != '\0') { 261 for (q=work[thiswork].outf; *q != '\n'; q++) 506 w->outf = ""; in getwork() 509 w->outf = &q[3]; in getwork() 514 if (*w->outf) { in getwork() [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/scripts/ |
| H A D | sign_encrypt.py | 121 parsed.outf is not None and \ 125 parser.prog+' --dig ' + parsed.outf + ' ...') 129 and parsed.outf is not None \ 143 if parsed.outf is None: 144 parsed.outf = str(parsed.uuid)+'.ta' 218 with open(args.outf, 'wb') as f:
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/scripts/ |
| H A D | sign_encrypt.py | 121 parsed.outf is not None and \ 125 parser.prog+' --dig ' + parsed.outf + ' ...') 129 and parsed.outf is not None \ 143 if parsed.outf is None: 144 parsed.outf = str(parsed.uuid)+'.ta' 218 with open(args.outf, 'wb') as f:
|
| /OK3568_Linux_fs/u-boot/tools/ |
| H A D | proftool.c | 62 static void outf(int level, const char *fmt, ...) 64 #define error(fmt, b...) outf(0, fmt, ##b) 65 #define warn(fmt, b...) outf(1, fmt, ##b) 66 #define notice(fmt, b...) outf(2, fmt, ##b) 67 #define info(fmt, b...) outf(3, fmt, ##b) 68 #define debug(fmt, b...) outf(4, fmt, ##b) 71 static void outf(int level, const char *fmt, ...) in outf() function
|
| /OK3568_Linux_fs/kernel/samples/bpf/ |
| H A D | hbm.c | 81 FILE *outf; in read_trace_pipe2() local 93 outf = fopen(outFname, "w"); in read_trace_pipe2() 95 if (outf == NULL) in read_trace_pipe2() 106 if (outf != NULL) { in read_trace_pipe2() 107 fprintf(outf, "%s\n", buf); in read_trace_pipe2() 108 fflush(outf); in read_trace_pipe2()
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/ |
| H A D | engine.py | 420 def write_sfdisk_script(outf, parts): argument 426 outf.write("{}: {}\n".format(key, val)) 427 outf.write("\n") 441 outf.write("{}\n".format(line)) 442 outf.flush() 449 with tempfile.NamedTemporaryFile(prefix="wic-sfdisk-", mode='w') as outf: 450 write_sfdisk_script(outf, parts) 451 cmd = "{} --no-reread {} < {} ".format(self.sfdisk, target, outf.name)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | gengtype.h | 36 struct outf* inpoutf; /* Cached corresponding output file, computed 365 struct outf struct 367 struct outf *next; argument 373 typedef struct outf *outf_p; argument
|
| H A D | read-md.h | 196 void fprint_md_ptr_loc (FILE *outf, const void *ptr); 207 void fprint_c_condition (FILE *outf, const char *cond);
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | gengtype.h | 36 struct outf* inpoutf; /* Cached corresponding output file, computed 365 struct outf struct 367 struct outf *next; argument 373 typedef struct outf *outf_p; argument
|
| H A D | read-md.h | 196 void fprint_md_ptr_loc (FILE *outf, const void *ptr); 207 void fprint_c_condition (FILE *outf, const char *cond);
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/nx-gzip/ |
| H A D | gunz_test.c | 275 FILE *outf = NULL; in decompress_file() local 312 outf = stdout; in decompress_file() 328 outf = fopen(w, "w"); in decompress_file() 329 if (outf == NULL) { in decompress_file() 503 n = fwrite(fifo_out + cur_out, 1, write_sz, outf); in decompress_file() 519 n = fwrite(fifo_out, 1, write_sz, outf); in decompress_file() 996 fclose(outf); in decompress_file()
|
| /OK3568_Linux_fs/kernel/arch/mips/boot/tools/ |
| H A D | relocs.c | 572 static void emit_relocs(int as_text, int as_bin, FILE *outf) in emit_relocs() argument 598 outf = stdout; in emit_relocs() 601 outf = stdout; in emit_relocs() 607 if (fseek(outf, sec_reloc->shdr.sh_offset, SEEK_SET) < 0) { in emit_relocs() 614 size += write_reloc(relocs.offset[i], outf); in emit_relocs() 618 size += write_reloc(0, outf); in emit_relocs()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-multimedia/recipes-multimedia/cdparanoia/files/ |
| H A D | 0001-utils-Use-c99-compiler-independent-types.patch | 23 extern long buffering_write(int outf, char *buffer, long num);
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/ply/ |
| H A D | yacc.py | 2673 outf = open(filename,"wb") 2674 pickle.dump(__tabversion__,outf,pickle_protocol) 2675 pickle.dump(self.lr_method,outf,pickle_protocol) 2676 pickle.dump(signature,outf,pickle_protocol) 2677 pickle.dump(self.lr_action,outf,pickle_protocol) 2678 pickle.dump(self.lr_goto,outf,pickle_protocol) 2686 pickle.dump(outp,outf,pickle_protocol) 2687 outf.close()
|
| /OK3568_Linux_fs/kernel/drivers/net/ppp/ |
| H A D | ppp_generic.c | 477 goto outf; in ppp_read() 483 goto outf; in ppp_read() 486 outf: in ppp_read() 1325 goto outf; in ppp_start_xmit() 1334 goto outf; in ppp_start_xmit() 1337 goto outf; in ppp_start_xmit() 1343 goto outf; in ppp_start_xmit() 1354 outf: in ppp_start_xmit()
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/ |
| H A D | standard.py | 2165 outf = os.path.join(root, fn) 2166 relf = os.path.relpath(outf, dry_run_outdir) 2174 outf, 2179 comparelist.append((recipefile, outf, recipefile)) 2183 comparelist.append((appendfile, outf, appendfile)) 2185 comparelist.append((None, outf, appendfile)) 2195 comparelist.append((destfp, outf, destfp))
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/tegra/ |
| H A D | dc.c | 123 fixed20_12 outf = dfixed_init(out); in compute_dda_inc() local 145 outf.full = max_t(u32, outf.full - dfixed_const(1), dfixed_const(1)); in compute_dda_inc() 148 dda_inc = dfixed_div(inf, outf); in compute_dda_inc()
|