Home
last modified time | relevance | path

Searched refs:binary (Results 476 - 500 of 1195) sorted by relevance

1...<<11121314151617181920>>...48

/third_party/node/src/inspector/
H A Dnode_string.cc102 bool binary) { in parseMessage()
103 if (binary) { in parseMessage()
101 parseMessage(const std::string_view message, bool binary) parseMessage() argument
/base/hiviewdfx/hiview/base/event_store/test/unittest/common/
H A Dsys_event_store_utility_test.cpp201 dbFileStream.open(TEST_DB_VERSION1_FILE, std::ios::binary); in HWTEST_F()
215 dbFileStream.open(TEST_DB_VERSION2_FILE, std::ios::binary); in HWTEST_F()
237 dbFileStream.open(TEST_DB_VERSION3_FILE, std::ios::binary); in HWTEST_F()
/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dglobal.cc59 // Load binary. in run()
60 std::cout << "Loading binary..." << std::endl; in run()
65 auto binary = wasm::vec<byte_t>::make_uninitialized(file_size); in run() local
66 file.read(binary.get(), file_size); in run()
75 auto module = wasm::Module::make(store, binary); in run()
H A Dtable.cc79 // Load binary. in run()
80 std::cout << "Loading binary..." << std::endl; in run()
85 auto binary = wasm::vec<byte_t>::make_uninitialized(file_size); in run() local
86 file.read(binary.get(), file_size); in run()
95 auto module = wasm::Module::make(store, binary); in run()
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_shader.c192 struct util_dynarray *binary, in pan_shader_compile()
198 bifrost_compile_shader_nir(s, inputs, binary, info); in pan_shader_compile()
208 midgard_compile_shader_nir(s, inputs, binary, info); in pan_shader_compile()
190 pan_shader_compile(nir_shader *s, struct panfrost_compile_inputs *inputs, struct util_dynarray *binary, struct pan_shader_info *info) pan_shader_compile() argument
/third_party/protobuf/src/google/protobuf/util/
H A Djson_util.cc5 // Redistribution and use in source and binary forms, with or without
11 // * Redistributions in binary form must reproduce the above
265 std::string binary; in JsonStringToMessage() local
267 input, &binary, options); in JsonStringToMessage()
268 if (result.ok() && !message->ParseFromString(binary)) { in JsonStringToMessage()
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp139 binary, ///< binary array (ordered collection of bytes) member in nlohmann::detail::value_t
147 - order: null < boolean < number < object < array < string < binary
150 - binary is represented as a b"" string in python and directly comparable to a
151 string; however, making a binary array directly comparable with a string would
161 6 /* binary */
2870 case value_t::binary: // LCOV_EXCL_LINE in diagnostics()
3873 case value_t::binary:
4095 JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(j.type_name()), j));
4164 case value_t::binary
[all...]
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/
H A Dia_css_isp_states.h70 const struct ia_css_binary *binary);
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/sc/sc_1.0/
H A Dia_css_sc.host.h50 * @param[in] binary The binary, which has the shading correction.
64 const struct ia_css_binary *binary,
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr_1.0/
H A Dia_css_tnr.host.h50 const struct ia_css_binary *binary,
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/
H A Dia_css_isp_states.h70 const struct ia_css_binary *binary);
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr_1.0/
H A Dia_css_tnr.host.h46 int ia_css_tnr_configure(const struct ia_css_binary *binary,
/third_party/glslang/glslang/HLSL/
H A DhlslOpMap.h6 // Redistribution and use in source and binary forms, with or without
13 // Redistributions in binary form must reproduce the above
61 static TOperator binary(EHlslTokenClass op);
/third_party/json/docs/examples/
H A Dbinary.cpp8 // create a binary vector in main()
11 // create a binary JSON value with subtype 42 in main()
12 json j = json::binary(vec, 42); in main()
H A Dget_binary.cpp8 // create a binary vector in main()
11 // create a binary JSON value with subtype 42 in main()
12 json j = json::binary(vec, 42); in main()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_compute.c73 .elf_ptrs = &program->shader.binary.elf_buffer, in si_compute_get_code_object()
74 .elf_sizes = &program->shader.binary.elf_size})) in si_compute_get_code_object()
270 program->shader.binary.elf_size = header->num_bytes; in si_create_compute_state()
271 program->shader.binary.elf_buffer = malloc(header->num_bytes); in si_create_compute_state()
272 if (!program->shader.binary.elf_buffer) { in si_create_compute_state()
276 memcpy((void *)program->shader.binary.elf_buffer, header->blob, header->num_bytes); in si_create_compute_state()
286 free((void *)program->shader.binary.elf_buffer); in si_create_compute_state()
320 program->shader.binary.elf_buffer, in si_bind_compute_state()
321 program->shader.binary.elf_size, in si_bind_compute_state()
/third_party/spirv-tools/source/opt/
H A Dinstruction.cpp200 std::vector<uint32_t>* binary) const { in ToBinaryWithoutAttachedDebugInsts()
202 binary->push_back((num_words << 16) | static_cast<uint16_t>(opcode_)); in ToBinaryWithoutAttachedDebugInsts()
204 binary->insert(binary->end(), operand.words.begin(), operand.words.end()); in ToBinaryWithoutAttachedDebugInsts()
830 // Convert the module to binary. in PrettyPrint()
834 // Convert the instruction to binary. This is used to identify the correct in PrettyPrint()
1066 std::vector<uint32_t>* binary) const { in ToBinary()
1082 binary->insert(binary->end(), operands.begin(), operands.end()); in ToBinary()
1084 binary in ToBinary()
[all...]
/third_party/libwebsockets/lib/core-net/
H A Ddummy-callback.c101 char binary; member
174 pkt->binary = (char)lws_frame_is_binary(wsi); in lws_callback_ws_proxy()
190 pkt->binary ? LWS_WRITE_BINARY : LWS_WRITE_TEXT, in lws_callback_ws_proxy()
218 pkt->binary = (char)lws_frame_is_binary(wsi); in lws_callback_ws_proxy()
234 pkt->binary ? LWS_WRITE_BINARY : LWS_WRITE_TEXT, in lws_callback_ws_proxy()
/third_party/mesa3d/src/mesa/program/
H A Dprog_print.c828 * Return binary representation of 64-bit value (as a string).
835 binary(GLbitfield64 val) in binary() function
863 (uint64_t) prog->info.inputs_read, binary(prog->info.inputs_read)); in _mesa_fprint_program_parameters()
866 binary(prog->info.outputs_written)); in _mesa_fprint_program_parameters()
874 binary(prog->arb.IndirectRegisterFiles)); in _mesa_fprint_program_parameters()
876 prog->SamplersUsed, binary(prog->SamplersUsed)); in _mesa_fprint_program_parameters()
/third_party/skia/src/gpu/gl/builders/
H A DGrGLProgramBuilder.cpp168 // binary cache in storeShaderInCache()
178 SkAutoSMalloc<2048> binary(length); in storeShaderInCache()
180 GL_CALL(GetProgramBinary(programID, length, &length, &binaryFormat, binary.get())); in storeShaderInCache()
184 writer.writePad32(binary.get(), length); in storeShaderInCache()
290 // Program binary cache hit. We may opt not to use this if we don't trust program in finalize()
299 const void* binary = reader.skip(length); in finalize() local
306 const_cast<void*>(binary), length)); in finalize()
/third_party/skia/third_party/externals/spirv-tools/source/
H A Dtext.cpp32 #include "source/binary.h"
177 /// @brief Translate an Opcode operand to binary form
183 /// @param[out] pInst return binary Opcode
501 /// @brief Translate single Opcode and operands to binary form
506 /// @param[out] pInst returned binary Opcode
682 // Populates a binary stream's |header|. The target environment is specified via
729 // Translates a given assembly language module into binary form.
737 // The ids in this set will have the same values both in source and binary. in spvTextToBinaryInternal()
790 spv_binary binary = new spv_binary_t(); in spvTextToBinaryInternal()
791 if (!binary) { in spvTextToBinaryInternal()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Dtext.cpp32 #include "source/binary.h"
177 /// @brief Translate an Opcode operand to binary form
183 /// @param[out] pInst return binary Opcode
501 /// @brief Translate single Opcode and operands to binary form
506 /// @param[out] pInst returned binary Opcode
682 // Populates a binary stream's |header|. The target environment is specified via
729 // Translates a given assembly language module into binary form.
737 // The ids in this set will have the same values both in source and binary. in spvTextToBinaryInternal()
790 spv_binary binary = new spv_binary_t(); in spvTextToBinaryInternal()
791 if (!binary) { in spvTextToBinaryInternal()
[all...]
/third_party/spirv-tools/source/
H A Dtext.cpp32 #include "source/binary.h"
177 /// @brief Translate an Opcode operand to binary form
183 /// @param[out] pInst return binary Opcode
515 /// @brief Translate single Opcode and operands to binary form
520 /// @param[out] pInst returned binary Opcode
699 // Populates a binary stream's |header|. The target environment is specified via
752 // Translates a given assembly language module into binary form.
760 // The ids in this set will have the same values both in source and binary. in spvTextToBinaryInternal()
813 spv_binary binary = new spv_binary_t(); in spvTextToBinaryInternal()
814 if (!binary) { in spvTextToBinaryInternal()
[all...]
/third_party/vk-gl-cts/framework/opengl/
H A DgluShaderProgram.cpp458 if (!shaderBinary.binary.empty()) in init()
460 const char* binary = (const char*)shaderBinary.binary.data(); in init() local
461 const int length = (int)(shaderBinary.binary.size() * sizeof(deUint32)); in init()
477 setBinary(gl, shaders, binaries.binaryFormat, binary, length); in init()
/third_party/json/include/nlohmann/detail/input/
H A Djson_sax.hpp83 @brief a binary value was read
84 @param[in] val binary value
86 @note It is safe to move the passed binary value.
88 virtual bool binary(binary_t& val) = 0;
94 @note binary formats may report the number of elements
116 @note binary formats may report the number of elements
223 bool binary(binary_t& val) in binary() function in detail::json_sax_dom_parser
407 bool binary(binary_t& val) in binary() function in detail::json_sax_dom_callback_parser
691 bool binary(binary_t& /*unused*/) in binary() function in detail::json_sax_acceptor

Completed in 24 milliseconds

1...<<11121314151617181920>>...48