Home
last modified time | relevance | path

Searched refs:binary (Results 176 - 200 of 1382) sorted by relevance

12345678910>>...56

/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/dvs/dvs_1.0/
H A Dia_css_dvs.host.c51 const struct ia_css_binary *binary, in ia_css_dvs_configure()
58 ia_css_configure_dvs(binary, &config); in ia_css_dvs_configure()
230 const struct ia_css_binary *binary, in convert_allocate_dvs_6axis_config()
238 assert(binary); in convert_allocate_dvs_6axis_config()
242 me = ia_css_host_data_allocate((size_t)((DVS_6AXIS_BYTES(binary) / 2) * 3)); in convert_allocate_dvs_6axis_config()
253 o_width = binary->out_frame_info[0].res.width; in convert_allocate_dvs_6axis_config()
254 o_height = binary->out_frame_info[0].res.height; in convert_allocate_dvs_6axis_config()
275 const struct ia_css_binary *binary, in store_dvs_6axis_config()
285 binary, in store_dvs_6axis_config()
50 ia_css_dvs_configure( const struct ia_css_binary *binary, const struct ia_css_frame_info *info) ia_css_dvs_configure() argument
228 convert_allocate_dvs_6axis_config( const struct ia_css_dvs_6axis_config *dvs_6axis_config, const struct ia_css_binary *binary, const struct ia_css_frame_info *dvs_in_frame_info) convert_allocate_dvs_6axis_config() argument
273 store_dvs_6axis_config( const struct ia_css_dvs_6axis_config *dvs_6axis_config, const struct ia_css_binary *binary, const struct ia_css_frame_info *dvs_in_frame_info, ia_css_ptr ddr_addr_y) store_dvs_6axis_config() argument
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/dvs/dvs_1.0/
H A Dia_css_dvs.host.c49 int ia_css_dvs_configure(const struct ia_css_binary *binary, in ia_css_dvs_configure() argument
56 return ia_css_configure_dvs(binary, &config); in ia_css_dvs_configure()
228 const struct ia_css_binary *binary, in convert_allocate_dvs_6axis_config()
236 assert(binary); in convert_allocate_dvs_6axis_config()
240 me = ia_css_host_data_allocate((size_t)((DVS_6AXIS_BYTES(binary) / 2) * 3)); in convert_allocate_dvs_6axis_config()
251 o_width = binary->out_frame_info[0].res.width; in convert_allocate_dvs_6axis_config()
252 o_height = binary->out_frame_info[0].res.height; in convert_allocate_dvs_6axis_config()
273 const struct ia_css_binary *binary, in store_dvs_6axis_config()
283 binary, in store_dvs_6axis_config()
226 convert_allocate_dvs_6axis_config( const struct ia_css_dvs_6axis_config *dvs_6axis_config, const struct ia_css_binary *binary, const struct ia_css_frame_info *dvs_in_frame_info) convert_allocate_dvs_6axis_config() argument
271 store_dvs_6axis_config( const struct ia_css_dvs_6axis_config *dvs_6axis_config, const struct ia_css_binary *binary, const struct ia_css_frame_info *dvs_in_frame_info, ia_css_ptr ddr_addr_y) store_dvs_6axis_config() argument
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/
H A Duprobe_multi_test.c153 __test_attach_api(const char *binary, const char *pattern, struct bpf_uprobe_multi_opts *opts, in __test_attach_api() argument
165 binary, pattern, opts); in __test_attach_api()
171 binary, pattern, opts); in __test_attach_api()
177 binary, pattern, opts); in __test_attach_api()
183 pid, binary, pattern, opts); in __test_attach_api()
189 binary, pattern, opts); in __test_attach_api()
200 test_attach_api(const char *binary, const char *pattern, struct bpf_uprobe_multi_opts *opts) in test_attach_api() argument
205 __test_attach_api(binary, pattern, opts, NULL); in test_attach_api()
212 __test_attach_api(binary, pattern, opts, child); in test_attach_api()
/third_party/skia/third_party/externals/spirv-tools/tools/reduce/
H A Dreduce.cpp61 R"(%s - Reduce a SPIR-V binary file with respect to a user-provided in PrintUsage()
66 The SPIR-V binary is read from <input.spv>. The reduced SPIR-V binary is in PrintUsage()
69 Whether a binary is interesting is determined by <interestingness_test>, which in PrintUsage()
76 * The script should take the path to a SPIR-V binary file (.spv) as an in PrintUsage()
77 argument, and exit with code 0 if and only if the binary file is in PrintUsage()
78 interesting. The binary will be passed to the script as an argument after in PrintUsage()
81 * Example: an interestingness test for reducing a SPIR-V binary file that in PrintUsage()
84 - invoke "foo" on the binary passed as the script argument; in PrintUsage()
248 // Dumps |binary| t
249 DumpShader(const std::vector<uint32_t>& binary, const char* filename) DumpShader() argument
260 std::vector<uint32_t> binary; DumpShader() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/reduce/
H A Dreduce.cpp61 R"(%s - Reduce a SPIR-V binary file with respect to a user-provided in PrintUsage()
66 The SPIR-V binary is read from <input.spv>. The reduced SPIR-V binary is in PrintUsage()
69 Whether a binary is interesting is determined by <interestingness_test>, which in PrintUsage()
76 * The script should take the path to a SPIR-V binary file (.spv) as an in PrintUsage()
77 argument, and exit with code 0 if and only if the binary file is in PrintUsage()
78 interesting. The binary will be passed to the script as an argument after in PrintUsage()
81 * Example: an interestingness test for reducing a SPIR-V binary file that in PrintUsage()
84 - invoke "foo" on the binary passed as the script argument; in PrintUsage()
248 // Dumps |binary| t
249 DumpShader(const std::vector<uint32_t>& binary, const char* filename) DumpShader() argument
260 std::vector<uint32_t> binary; DumpShader() local
[all...]
/third_party/python/Modules/_io/
H A D_iomodule.c97 (For reading and writing raw bytes use binary mode and leave encoding
107 'b' binary mode
112 The default mode is 'rt' (open for reading text). For binary random
117 Python distinguishes between files opened in binary and text modes,
119 binary mode (appending 'b' to the mode argument) return contents as
126 Pass 0 to switch buffering off (only allowed in binary mode), 1 to select
138 for binary files.
146 be handled---this argument should not be used in binary mode. Pass
185 a file in a binary mode, the returned class varies: in read binary
204 int text = 0, binary = 0; _io_open_impl() local
[all...]
/third_party/spirv-tools/tools/reduce/
H A Dreduce.cpp56 R"(%s - Reduce a SPIR-V binary file with respect to a user-provided in PrintUsage()
61 The SPIR-V binary is read from <input.spv>. The reduced SPIR-V binary is in PrintUsage()
64 Whether a binary is interesting is determined by <interestingness_test>, which in PrintUsage()
71 * The script should take the path to a SPIR-V binary file (.spv) as an in PrintUsage()
72 argument, and exit with code 0 if and only if the binary file is in PrintUsage()
73 interesting. The binary will be passed to the script as an argument after in PrintUsage()
76 * Example: an interestingness test for reducing a SPIR-V binary file that in PrintUsage()
79 - invoke "foo" on the binary passed as the script argument; in PrintUsage()
243 // Dumps |binary| t
244 DumpShader(const std::vector<uint32_t>& binary, const char* filename) DumpShader() argument
255 std::vector<uint32_t> binary; DumpShader() local
[all...]
/third_party/mesa3d/src/asahi/compiler/
H A Dcmdline.c105 struct util_dynarray binary; in compile_shader() local
107 util_dynarray_init(&binary, NULL); in compile_shader()
172 agx_compile_shader_nir(nir[i], &keys[i], &binary, &out); in compile_shader()
178 fwrite(binary.data, 1, binary.size, fp); in compile_shader()
182 util_dynarray_clear(&binary); in compile_shader()
185 util_dynarray_fini(&binary); in compile_shader()
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_indirect_dispatch.c154 struct util_dynarray binary; in pan_indirect_dispatch_init() local
156 util_dynarray_init(&binary, NULL); in pan_indirect_dispatch_init()
157 GENX(pan_shader_compile)(b.shader, &inputs, &binary, &shader_info); in pan_indirect_dispatch_init()
169 panfrost_bo_create(dev, binary.size, PAN_BO_EXECUTE, in pan_indirect_dispatch_init()
172 memcpy(dev->indirect_dispatch.bin->ptr.cpu, binary.data, binary.size); in pan_indirect_dispatch_init()
173 util_dynarray_fini(&binary); in pan_indirect_dispatch_init()
/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dtrap.c39 // Load binary. in main()
40 printf("Loading binary...\n"); in main()
49 wasm_byte_vec_t binary; in main() local
50 wasm_byte_vec_new_uninitialized(&binary, file_size); in main()
51 if (fread(binary.data, file_size, 1, file) != 1) { in main()
59 own wasm_module_t* module = wasm_module_new(store, &binary); in main()
65 wasm_byte_vec_delete(&binary); in main()
H A Dcallback.c69 // Load binary. in main()
70 printf("Loading binary...\n"); in main()
79 wasm_byte_vec_t binary; in main() local
80 wasm_byte_vec_new_uninitialized(&binary, file_size); in main()
81 if (fread(binary.data, file_size, 1, file) != 1) { in main()
89 own wasm_module_t* module = wasm_module_new(store, &binary); in main()
95 wasm_byte_vec_delete(&binary); in main()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cGlSpirvTests.cpp53 void writeSpirV(const char* filename, ShaderBinary binary) in writeSpirV() argument
58 // As one binary could be associated with many shader objects it should be stored either a type of each shader in writeSpirV()
60 deUint8 count = (deUint8)binary.shaderTypes.size(); in writeSpirV()
62 for (int i = 0; i < (signed)binary.shaderTypes.size(); ++i) in writeSpirV()
64 fwrite((void*)&binary.shaderTypes[i], 1, sizeof(ShaderType), file); in writeSpirV()
68 deUint8 strLen = (deUint8)binary.shaderEntryPoints[i].size(); in writeSpirV()
70 fwrite((void*)binary.shaderEntryPoints[i].data(), 1, strLen, file); in writeSpirV()
74 fwrite((void*)binary.binary.data(), 1, binary in writeSpirV()
81 ShaderBinary binary; readSpirV() local
559 ShaderBinary binary; iterate() local
567 binaries << binary; iterate() local
3432 ShaderBinary binary = stage.binary; iterate() local
[all...]
/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Dprogram.hpp30 #include "core/binary.hpp"
48 const std::vector<binary> &binaries = {});
65 build(const binary &b = {}, const std::string &opts = {}, in build()
71 binary bin;
78 const std::vector<binary::symbol> &symbols() const;
H A Dprintf.hpp35 const std::vector<binary::printf_info> &info,
49 const std::vector<binary::printf_info> &infos,
53 std::vector<binary::printf_info> _formatters;
/third_party/nghttp2/contrib/
H A Dtlsticketupdate.go30 "encoding/binary"
74 if err := binary.Write(buf, binary.BigEndian, uint32(1)); err != nil {
79 if err := binary.Write(buf, binary.BigEndian, uint16(keylen)); err != nil {
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/camera/pipe/interface/
H A Dia_css_pipe_stagedesc.h27 struct ia_css_binary *binary,
34 struct ia_css_binary *binary,
43 struct ia_css_binary *binary,
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/output/output_1.0/
H A Dia_css_output.host.h53 const struct ia_css_binary *binary,
58 const struct ia_css_binary *binary,
63 const struct ia_css_binary *binary,
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/output/output_1.0/
H A Dia_css_output.host.h45 int ia_css_output_configure(const struct ia_css_binary *binary,
48 int ia_css_output0_configure(const struct ia_css_binary *binary,
51 int ia_css_output1_configure(const struct ia_css_binary *binary,
/kernel/linux/linux-6.6/arch/powerpc/boot/
H A Dwrapper6 # This script takes a kernel binary and optionally an initrd image
46 binary=
291 # miboot and U-boot want just the bare bits, not an ELF binary
293 objflags="-O binary"
299 binary=y
333 objflags="-O binary --set-section-flags=.bss=contents,alloc,load,data"
342 binary=y
346 binary=y
350 binary=y
354 binary
[all...]
/third_party/json/include/nlohmann/detail/iterators/
H A Diter_impl.hpp124 case value_t::binary: in m_object()
227 case value_t::binary:
265 case value_t::binary:
306 case value_t::binary: in operator *()
348 case value_t::binary: in operator ->()
401 case value_t::binary: in operator ++()
452 case value_t::binary: in operator --()
493 case value_t::binary: in operator ==()
538 case value_t::binary: in operator <()
597 case value_t::binary in operator +=()
[all...]
/third_party/glslang/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp10 // Redistribution and use in source and binary forms, with or without
17 // Redistributions in binary form must reproduce the above
53 NVIDIA Software, with or without modifications, in source and/or binary
638 // must be binary in scan()
655 pp->parseContext.ppError(ppToken->loc, "bad digit in binary literal", "", ""); in scan()
663 pp->parseContext.ppError(ppToken->loc, "binary literal too big", "", ""); in scan()
665 pp->parseContext.ppError(ppToken->loc, "binary literal too long", "", ""); in scan()
675 pp->parseContext.ppError(ppToken->loc, "bad digit in binary literal", "", ""); in scan()
718 "64-bit binary literal"); in scan()
720 Num_Int64_Extensions, Int64_Extensions, "64-bit binary litera in scan()
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dpass_remove_duplicates_test.cpp80 // Disassembles |binary| and outputs the result in |text|. If |text| is a
82 spv_result_t Disassemble(const std::vector<uint32_t>& binary, in Disassemble() argument
85 return tools_.Disassemble(binary, text, disassemble_options_) in Disassemble()
94 std::vector<uint32_t> binary = {SpvMagicNumber, 0x10200, 0u, 2u, 0u}; in ToText() local
96 i->ToBinaryWithoutAttachedDebugInsts(&binary); in ToText()
98 Disassemble(binary, &text); in ToText()
103 std::vector<uint32_t> binary; in ModuleToText() local
104 context_->module()->ToBinary(&binary, false); in ModuleToText()
106 Disassemble(binary, &text); in ModuleToText()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dpass_remove_duplicates_test.cpp80 // Disassembles |binary| and outputs the result in |text|. If |text| is a
82 spv_result_t Disassemble(const std::vector<uint32_t>& binary, in Disassemble() argument
85 return tools_.Disassemble(binary, text, disassemble_options_) in Disassemble()
94 std::vector<uint32_t> binary = {SpvMagicNumber, 0x10200, 0u, 2u, 0u}; in ToText() local
96 i->ToBinaryWithoutAttachedDebugInsts(&binary); in ToText()
98 Disassemble(binary, &text); in ToText()
103 std::vector<uint32_t> binary; in ModuleToText() local
104 context_->module()->ToBinary(&binary, false); in ModuleToText()
106 Disassemble(binary, &text); in ModuleToText()
/third_party/selinux/secilc/
H A Dsecilc.c4 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
49 printf(" -o, --output=<file> write binary policy to <file>\n"); in usage()
58 printf(" -c, --policyvers=<version> build a binary policy with a given <version>\n"); in usage()
64 printf(" -D, --disable-dontaudit do not add dontaudit rules to the binary policy\n"); in usage()
85 FILE *binary = NULL; in main() local
343 binary = fopen(output, "w"); in main()
344 if (binary == NULL) { in main()
345 fprintf(stderr, "Failure opening binary file for writing\n"); in main()
356 sepol_policy_file_set_fp(pf, binary); in main()
[all...]
/third_party/spirv-tools/test/opt/
H A Dpass_remove_duplicates_test.cpp78 // Disassembles |binary| and outputs the result in |text|. If |text| is a
80 spv_result_t Disassemble(const std::vector<uint32_t>& binary, in Disassemble() argument
83 return tools_.Disassemble(binary, text, disassemble_options_) in Disassemble()
92 std::vector<uint32_t> binary = {spv::MagicNumber, 0x10200, 0u, 2u, 0u}; in ToText() local
94 i->ToBinaryWithoutAttachedDebugInsts(&binary); in ToText()
96 Disassemble(binary, &text); in ToText()
101 std::vector<uint32_t> binary; in ModuleToText() local
102 context_->module()->ToBinary(&binary, false); in ModuleToText()
104 Disassemble(binary, &text); in ModuleToText()

Completed in 14 milliseconds

12345678910>>...56