Home
last modified time | relevance | path

Searched refs:binary (Results 701 - 725 of 1198) sorted by relevance

1...<<21222324252627282930>>...48

/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A Dtests.cpp171 Except("StoreContentResponse::binary.empty()", response.binary.empty(), false, "Received data must be not empty"); in RunCompileShaderTests()
/applications/standard/app_samples/code/BasicFeature/Native/Audio/entry/src/main/cpp/
H A Daudio.cpp364 normalPCM = std::make_unique<std::ifstream>(g_filePath_avp, std::ios::binary); in AvpAudioRendererInit()
456 vividPCM = std::make_unique<std::ifstream>(g_filePath_avp_vivid, std::ios::binary); in AvpVividAudioRendererInit()
457 metaDataFile = std::make_unique<std::ifstream>(g_filePath_avp_metadata, std::ios::binary); in AvpVividAudioRendererInit()
/applications/standard/app_samples/code/DocsSample/Media/Audio/OHAudio/entry/src/main/cpp/
H A Daudio.cpp384 normalPCM = std::make_unique<std::ifstream>(g_filePath_avp, std::ios::binary); in AvpAudioRendererInit()
476 vividPCM = std::make_unique<std::ifstream>(g_filePath_avp_vivid, std::ios::binary); in AvpVividAudioRendererInit()
477 metaDataFile = std::make_unique<std::ifstream>(g_filePath_avp_metadata, std::ios::binary); in AvpVividAudioRendererInit()
/third_party/cups-filters/fontembed/
H A Dembed_sfnt.c497 const int binary=0; // binary format? // TODO in emb_otf_ps() local
577 if (binary) { in emb_otf_ps()
636 if (binary) { in emb_otf_ps()
/third_party/libwebsockets/minimal-examples/dbus-server/minimal-dbus-ws-proxy/
H A Dprotocol_lws_minimal_dbus_ws_proxy.c68 char binary; member
355 amsg.binary = 0; in dmh_send()
707 pmsg->binary ? LWS_WRITE_BINARY : LWS_WRITE_TEXT, in callback_minimal_dbus_wsproxy()
/third_party/ninja/
H A Dconfigure.py200 help='bootstrap a ninja binary from nothing')
285 def binary(name): function
574 ninja = n.build(binary('ninja'), 'link', objs, implicit=ninja_lib,
580 # We've built the ninja binary. Don't run any more commands
601 all_targets += n.build(binary(name), 'link', objs,
/third_party/python/Lib/
H A Dsocket.py316 binary = "b" in mode
329 if not binary:
330 raise ValueError("unbuffered streams must be binary")
339 if binary:
455 raise ValueError("file should be opened in binary mode")
472 *file* must be a regular file object opened in binary mode.
H A D_pyio.py95 writing raw bytes use binary mode and leave encoding unspecified.) The
105 'b' binary mode
110 The default mode is 'rt' (open for reading text). For binary random
115 Python distinguishes between files opened in binary and text modes,
117 binary mode (appending 'b' to the mode argument) return contents as
124 Pass 0 to switch buffering off (only allowed in binary mode), 1 to select
136 for binary files.
144 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
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkPipelineConstructionUtil.hpp48 PIPELINE_CONSTRUCTION_TYPE_SHADER_OBJECT_UNLINKED_BINARY, // Use VK_EXT_shader_object unlinked shader objects from binary
50 PIPELINE_CONSTRUCTION_TYPE_SHADER_OBJECT_LINKED_BINARY, // Use VK_EXT_shader_object linked shader objects from binary
279 const vk::ProgramBinary& binary,
535 vk::VkShaderCreateInfoEXT makeShaderCreateInfo (VkShaderStageFlagBits stage, ShaderWrapper& shader, bool link, bool binary, ShaderWrapper& other);
536 void createShaders (bool linked, bool binary);
/third_party/vk-gl-cts/executor/tools/
H A DxeCommandLineExecutor.cpp98 parser << Option<StartServer> ("s", "start-server", "Start local execserver. Path to the execserver binary.") in registerOptions()
108 << Option<BinaryName> ("b", "binaryname", "Test binary path. Relative to working directory.", "<Unused>") in registerOptions()
110 << Option<CmdLineArgs> (DE_NULL, "cmdline", "Additional command line arguments for the test binary.", ""); in registerOptions()
258 std::ifstream in (filename, std::ios_base::binary); in readCaseList()
389 std::ifstream in (filename, std::ifstream::binary|std::ifstream::in); in readLogFile()
453 std::ofstream out(filename, std::ios_base::binary); in writeInfoLog()
/third_party/json/tests/src/
H A Dunit-conversions.cpp1146 SECTION("get a binary value (explicit)")
1154 CHECK(*json(b).m_value.binary == *j.m_value.binary);
1162 CHECK(*json(b).m_value.binary == *j.m_value.binary);
1169 CHECK(*json(b).m_value.binary == *j.m_value.binary);
1187 "[json.exception.type_error.302] type must be binary, but is null",
1190 "[json.exception.type_error.302] type must be binary, but is object",
1193 "[json.exception.type_error.302] type must be binary, bu
[all...]
H A Dunit-msgpack.cpp62 bool binary(std::vector<std::uint8_t>& /*unused*/) in binary() function in __anon4153::SaxCountdown
1152 json j = json::binary(s);
1227 json j = json::binary(s);
1263 json j = json::binary(s);
1291 SECTION("binary")
1301 json j = json::binary(s);
1339 json j = json::binary(s);
1372 json j = json::binary(s);
1457 "[json.exception.parse_error.110] parse error at byte 3: syntax error while parsing MessagePack binary: unexpected end of input", json::parse_error&);
1793 std::ifstream f_msgpack(filename + ".msgpack", std::ios::binary);
[all...]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader_llvm.c71 bool si_compile_llvm(struct si_screen *sscreen, struct si_shader_binary *binary, in si_compile_llvm() argument
90 binary->llvm_ir_string = strdup(ir); in si_compile_llvm()
94 if (!si_replace_shader(count, binary)) { in si_compile_llvm()
103 if (!ac_compile_module_to_elf(passes, ac->module, (char **)&binary->elf_buffer, in si_compile_llvm()
104 &binary->elf_size)) in si_compile_llvm()
119 .elf_ptrs = &binary->elf_buffer, in si_compile_llvm()
120 .elf_sizes = &binary->elf_size})) in si_compile_llvm()
1350 if (!si_compile_llvm(sscreen, &shader->binary, &shader->config, compiler, &ctx.ac, debug, in si_llvm_compile_shader()
H A Dsi_sqtt.c1047 uint8_t *code = malloc(shader->binary.uploaded_code_size); in si_sqtt_add_code_object()
1052 memcpy(code, shader->binary.uploaded_code, shader->binary.uploaded_code_size); in si_sqtt_add_code_object()
1056 record->shader_data[gl_shader_stage].hash[0] = _mesa_hash_data(code, shader->binary.uploaded_code_size); in si_sqtt_add_code_object()
1058 record->shader_data[gl_shader_stage].code_size = shader->binary.uploaded_code_size; in si_sqtt_add_code_object()
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Dentry_points_egl_ext_autogen.cpp365 void *binary, in EGL_ProgramCacheQueryANGLE()
371 ", keysize = 0x%016" PRIxPTR ", binary = 0x%016" PRIxPTR in EGL_ProgramCacheQueryANGLE()
373 (uintptr_t)dpy, index, (uintptr_t)key, (uintptr_t)keysize, (uintptr_t)binary, in EGL_ProgramCacheQueryANGLE()
381 index, key, keysize, binary, binarysize); in EGL_ProgramCacheQueryANGLE()
383 ProgramCacheQueryANGLE(thread, dpyPacked, index, key, keysize, binary, binarysize); in EGL_ProgramCacheQueryANGLE()
389 const void *binary, in EGL_ProgramCachePopulateANGLE()
395 ", keysize = %d, binary = 0x%016" PRIxPTR ", binarysize = %d", in EGL_ProgramCachePopulateANGLE()
396 (uintptr_t)dpy, (uintptr_t)key, keysize, (uintptr_t)binary, binarysize); in EGL_ProgramCachePopulateANGLE()
403 dpyPacked, key, keysize, binary, binarysize); in EGL_ProgramCachePopulateANGLE()
405 ProgramCachePopulateANGLE(thread, dpyPacked, key, keysize, binary, binarysiz in EGL_ProgramCachePopulateANGLE()
361 EGL_ProgramCacheQueryANGLE(EGLDisplay dpy, EGLint index, void *key, EGLint *keysize, void *binary, EGLint *binarysize) EGL_ProgramCacheQueryANGLE() argument
386 EGL_ProgramCachePopulateANGLE(EGLDisplay dpy, const void *key, EGLint keysize, const void *binary, EGLint binarysize) EGL_ProgramCachePopulateANGLE() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dfuzzer_util.cpp82 // Initial binary should be valid. in BuildIRContext()
85 "Initial binary is invalid; stopping."); in BuildIRContext()
89 // Build the module from the input binary. in BuildIRContext()
485 std::vector<uint32_t> binary; in IsValid() local
486 context->module()->ToBinary(&binary, false); in IsValid()
489 return tools.Validate(binary.data(), binary.size(), validator_options); in IsValid()
547 std::vector<uint32_t> binary; in CloneIRContext() local
548 context->module()->ToBinary(&binary, false); in CloneIRContext()
549 return BuildModule(context->grammar().target_env(), nullptr, binary in CloneIRContext()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dfuzzer_util.cpp82 // Initial binary should be valid. in BuildIRContext()
85 "Initial binary is invalid; stopping."); in BuildIRContext()
89 // Build the module from the input binary. in BuildIRContext()
485 std::vector<uint32_t> binary; in IsValid() local
486 context->module()->ToBinary(&binary, false); in IsValid()
489 return tools.Validate(binary.data(), binary.size(), validator_options); in IsValid()
547 std::vector<uint32_t> binary; in CloneIRContext() local
548 context->module()->ToBinary(&binary, false); in CloneIRContext()
549 return BuildModule(context->grammar().target_env(), nullptr, binary in CloneIRContext()
[all...]
/third_party/spirv-tools/source/fuzz/
H A Dfuzzer_util.cpp82 // Initial binary should be valid. in BuildIRContext()
85 "Initial binary is invalid; stopping."); in BuildIRContext()
89 // Build the module from the input binary. in BuildIRContext()
487 std::vector<uint32_t> binary; in IsValid() local
488 context->module()->ToBinary(&binary, false); in IsValid()
491 return tools.Validate(binary.data(), binary.size(), validator_options); in IsValid()
549 std::vector<uint32_t> binary; in CloneIRContext() local
550 context->module()->ToBinary(&binary, false); in CloneIRContext()
551 return BuildModule(context->grammar().target_env(), nullptr, binary in CloneIRContext()
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cGPUShaderFP64Tests.cpp13234 /** Base of binary function classes.
13279 class binary : public binaryBase class
13284 binary(FunctionEnum function_enum, const glw::GLchar* function_name, functionPointer function_pointer) in binary() function in gl4cts::FunctionObject::binary
13941 return new FunctionObject::binary<tcu::DVec3 /* ResT */, tcu::DVec3 /* Arg1T */, tcu::DVec3 /* Arg2T */>( in getFunctionObject()
13966 return new FunctionObject::binary<glw::GLdouble /* ResT */, tcu::DVec2 /* Arg1T */, tcu::DVec2 /* Arg2T */>( in getFunctionObject()
13969 return new FunctionObject::binary<glw::GLdouble /* ResT */, tcu::DVec3 /* Arg1T */, tcu::DVec3 /* Arg2T */>( in getFunctionObject()
13972 return new FunctionObject::binary<glw::GLdouble /* ResT */, tcu::DVec4 /* Arg1T */, tcu::DVec4 /* Arg2T */>( in getFunctionObject()
13985 return new FunctionObject::binary<glw::GLdouble /* ResT */, tcu::DVec2 /* Arg1T */, tcu::DVec2 /* Arg2T */>( in getFunctionObject()
13988 return new FunctionObject::binary<glw::GLdouble /* ResT */, tcu::DVec3 /* Arg1T */, tcu::DVec3 /* Arg2T */>( in getFunctionObject()
13991 return new FunctionObject::binary<gl in getFunctionObject()
[all...]
/kernel/linux/linux-5.10/kernel/trace/
H A Dtrace_output.c789 if (event->funcs->binary == NULL) in register_trace_event()
790 event->funcs->binary = trace_nop_print; in register_trace_event()
907 .binary = trace_fn_bin,
1047 .binary = trace_ctxwake_bin,
1059 .binary = trace_ctxwake_bin,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DProgramGL.cpp66 // Read the binary format, size and blob in load()
69 const uint8_t *binary = stream->data() + stream->offset(); in load() local
72 // Load the binary in load()
73 mFunctions->programBinary(mProgramID, binaryFormat, binary, binaryLength); in load()
92 std::vector<uint8_t> binary(std::max(binaryLength, 1)); in save()
95 binary.data()); in save()
99 stream->writeBytes(binary.data(), binaryLength); in save()
972 // Linking or program binary loading failed, put the error into the info log. in checkLinkStatus()
985 WARN() << "Program link or binary loading failed: " << buf.data(); in checkLinkStatus()
989 WARN() << "Program link or binary loadin in checkLinkStatus()
[all...]
/base/hiviewdfx/hiview/base/
H A Ddispatch_rule_parser.cpp34 std::ifstream fin(filePath, std::ifstream::binary); in DispatchRuleParser()
/base/powermgr/power_manager/services/native/src/wakeup/
H A Dwakeup_source_parser.cpp54 std::ifstream inputStream(targetPath.c_str(), std::ios::in | std::ios::binary); in ParseSources()
/base/powermgr/battery_statistics/services/native/src/
H A Dbattery_stats_parser.cpp76 std::ifstream ifs(path, std::ios::binary); in LoadAveragePowerFromFile()
/base/security/appverify/interfaces/innerkits/appverify/src/init/
H A Dhap_crl_manager.cpp137 std::ofstream crlFile(HAP_CRL_FILE_PATH, std::ofstream::out | std::ofstream::trunc | std::ofstream::binary); in WriteCrlsToFile()

Completed in 46 milliseconds

1...<<21222324252627282930>>...48