| /third_party/pcre2/pcre2/ |
| H A D | RunGrepTest.bat | 249 (pushd %srcdir% & %pcre2grep% -A1 "before the binary zero" ./testdata/grepinput & popd) >>testtrygrep
253 (pushd %srcdir% & %pcre2grep% -B1 "after the binary zero" ./testdata/grepinput & popd) >>testtrygrep
257 (pushd %srcdir% & %pcre2grep% -B1 -o "\w+ the binary zero" ./testdata/grepinput & popd) >>testtrygrep
261 (pushd %srcdir% & %pcre2grep% -B1 -onH "\w+ the binary zero" ./testdata/grepinput & popd) >>testtrygrep
273 (pushd %srcdir% & %pcre2grep% -on -f ./testdata/greplist -e binary ./testdata/grepinput & popd) >>testtrygrep
460 (pushd %srcdir% & %pcre2grep% --binary-files=without-match "dog" ./testdata/grepbinary & popd) >>testtrygrep 2>&1
468 (pushd %srcdir% & %pcre2grep% --binary-files=text "dog" ./testdata/grepbinary & popd) >>testtrygrep 2>&1
506 (pushd %srcdir% & %pcre2grep% -Ho2 --only-matching=1 -o3 "(\w+) binary (\w+)(\.)?" ./testdata/grepinput & popd) >>testtrygrep
510 (pushd %srcdir% & %pcre2grep% -o3 -Ho2 -o12 --only-matching=1 -o3 --colour=always --om-separator="|" "(\w+) binary (\w+)(\.)?" ./testdata/grepinput & popd) >>testtrygrep
589 (pushd %srcdir% & %pcre2grep% -HO "$0:$2$1$3" "(\w+) binary (\ [all...] |
| /third_party/mesa3d/src/gallium/drivers/radeonsi/ |
| H A D | si_shader.h | 29 * that is, for every API shader, there is exactly one shader binary in 38 * - patch shaders at the binary level 65 * one binary on the output. The result is the same as the non-monolithic 862 /* The following data is all that's needed for binary shaders. */ 863 struct si_shader_binary binary; member 962 struct si_shader_binary binary; member 983 void si_shader_binary_clean(struct si_shader_binary *binary);
|
| /third_party/node/deps/v8/third_party/wasm-api/example/ |
| H A D | hostref.cc | 118 // Load binary. in run() 119 std::cout << "Loading binary..." << std::endl; in run() 124 auto binary = wasm::vec<byte_t>::make_uninitialized(file_size); in run() local 125 file.read(binary.get(), file_size); in run() 134 auto module = wasm::Module::make(store, binary); in run()
|
| /third_party/mesa3d/src/nouveau/codegen/ |
| H A D | nv50_ir_target.cpp | 204 INFO("program binary (%u bytes)", codeSize); in printBinary() 390 // the nvc0 driver will print the binary itself together with the header in emitBinary() 450 RelocEntry::apply(uint32_t *binary, const RelocInfo *info) const in apply() argument 465 binary[offset / 4] &= ~mask; in apply() 466 binary[offset / 4] |= value & mask; in apply()
|
| /third_party/ltp/tools/sparse/sparse-src/ |
| H A D | scheck.c | 104 static void binary(Btor *btor, BoolectorSort s, struct instruction *insn) in binary() function 146 binary(btor, s, insn); in binop() 152 binary(btor, s, insn); in icmp()
|
| /third_party/skia/third_party/externals/angle2/src/tests/ |
| H A D | run_perf_tests.py | 63 def get_binary_name(binary): 65 return '.\\%s.exe' % binary 67 return './%s' % binary
|
| /third_party/vk-gl-cts/framework/opengl/ |
| H A D | gluShaderProgram.hpp | 382 ShaderBinaryDataType binary; member 389 ShaderBinary (const ShaderBinaryDataType binary_) : binary(binary_) in ShaderBinary() 393 ShaderBinary (const ShaderBinaryDataType binary_, glu::ShaderType shaderType_) : binary(binary_) in ShaderBinary()
|
| /third_party/mesa3d/src/panfrost/bifrost/ |
| H A D | bifrost_compile.c | 4747 bi_pack_clauses(bi_context *ctx, struct util_dynarray *binary, unsigned offset) in bi_pack_clauses() argument 4749 unsigned final_clause = bi_pack(ctx, binary); in bi_pack_clauses() 4765 if (binary->size - offset) { in bi_pack_clauses() 4766 memset(util_dynarray_grow(binary, uint8_t, prefetch_size), in bi_pack_clauses() 4934 struct util_dynarray *binary, in bi_compile_variant_nir() 4942 unsigned offset = binary->size; in bi_compile_variant_nir() 5157 bi_pack_clauses(ctx, binary, offset); in bi_compile_variant_nir() 5159 bi_pack_valhall(ctx, binary); in bi_compile_variant_nir() 5164 disassemble_bifrost(stdout, binary->data + offset, in bi_compile_variant_nir() 5165 binary in bi_compile_variant_nir() 4932 bi_compile_variant_nir(nir_shader *nir, const struct panfrost_compile_inputs *inputs, struct util_dynarray *binary, struct hash_table_u64 *sysval_to_id, struct bi_shader_info info, enum bi_idvs_mode idvs) bi_compile_variant_nir() argument 5189 bi_compile_variant(nir_shader *nir, const struct panfrost_compile_inputs *inputs, struct util_dynarray *binary, struct hash_table_u64 *sysval_to_id, struct pan_shader_info *info, enum bi_idvs_mode idvs) bi_compile_variant() argument 5304 bifrost_compile_shader_nir(nir_shader *nir, const struct panfrost_compile_inputs *inputs, struct util_dynarray *binary, struct pan_shader_info *info) bifrost_compile_shader_nir() argument [all...] |
| /third_party/elfio/examples/anonymizer/ |
| H A D | anonymizer.cpp | 57 std::ios::in | std::ios::out | std::ios::binary ); in overwrite_data()
|
| /third_party/glslang/glslang/HLSL/ |
| H A D | hlslOpMap.cpp | 6 // Redistribution and use in source and binary forms, with or without 13 // Redistributions in binary form must reproduce the above 37 // form (e.g., binary subtract or unary negate). 64 // Map parsing tokens that could be binary operations into binary operators. 65 TOperator HlslOpMap::binary(EHlslTokenClass op) in binary() function in glslang::HlslOpMap
|
| /third_party/json/docs/examples/ |
| H A D | sax_parse__binary.cpp | 82 bool binary(json::binary_t& val) override 84 events.push_back("binary(val=[...])");
|
| H A D | sax_parse.cpp | 82 bool binary(json::binary_t& val) override 84 events.push_back("binary(val=[...])");
|
| /third_party/mesa3d/src/asahi/compiler/ |
| H A D | agx_compile.h | 196 struct util_dynarray *binary,
|
| /third_party/mesa3d/src/imagination/rogue/ |
| H A D | rogue_build_data.h | 151 struct rogue_shader_binary *binary[MESA_SHADER_FRAGMENT + 1]; member
|
| /third_party/node/tools/snapshot/ |
| H A D | node_mksnapshot.cc | 81 std::ofstream out(out_path, std::ios::out | std::ios::binary);
|
| /third_party/mesa3d/src/microsoft/clc/ |
| H A D | clc_compiler.h | 103 } binary; member
|
| /third_party/mesa3d/src/microsoft/spirv_to_dxil/ |
| H A D | spirv_to_dxil.h | 81 } binary; member
|
| /third_party/mesa3d/src/panfrost/lib/ |
| H A D | pan_blend.h | 88 struct util_dynarray binary; member
|
| /third_party/mesa3d/src/gallium/drivers/panfrost/ |
| H A D | pan_screen.h | 94 struct util_dynarray *binary,
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| H A D | MemoryProgramCache.h | 35 // Check if the cache contains a binary matching the specified program. 46 // Evict a program from the binary cache. 57 // Store a binary directly. TODO(syoussefi): deprecated. Will be removed once Chrome supports 60 const uint8_t *binary,
|
| /third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
| H A D | spirv_reduce_mutator.h | 33 /// Mutates SPIR-V binary by running spirv-reduce tool. 35 /// The initial `binary` must be valid according to `target_env`. Applies at 42 /// @param target_env - the target environment for the `binary`. 43 /// @param binary - SPIR-V binary. Must be valid. 54 std::vector<uint32_t> binary, 90 // The SPIR-V binary that is being reduced. 103 // Whether the last call to the `Mutate` method produced the valid binary. 116 // Whether we want to validate all the binary after each reduction. 119 // The original binary tha [all...] |
| /third_party/skia/third_party/externals/angle2/src/common/ |
| H A D | angleutils.cpp | 22 : mOfs(filePathIn, std::ios::binary | std::ios::out), mFilePath(filePathIn) in SaveFileHelper()
|
| /third_party/glslang/SPIRV/ |
| H A D | SpvTools.cpp | 7 // Redistribution and use in source and binary forms, with or without 14 // Redistributions in binary form must reproduce the above 153 spv_const_binary_t binary = { spirv.data(), spirv.size() }; in SpirvToolsValidate() local 160 spvValidateWithOptions(context, options, &binary, &diagnostic); in SpirvToolsValidate()
|
| /third_party/mesa3d/src/mesa/main/ |
| H A D | glspirv.c | 72 const void* binary, size_t length) in _mesa_spirv_shader_binary() 85 memcpy(&module->Binary[0], binary, length); in _mesa_spirv_shader_binary() 70 _mesa_spirv_shader_binary(struct gl_context *ctx, unsigned n, struct gl_shader **shaders, const void* binary, size_t length) _mesa_spirv_shader_binary() argument
|
| /third_party/protobuf/editors/ |
| H A D | proto.vim | 5 " Redistribution and use in source and binary forms, with or without 11 " * Redistributions in binary form must reproduce the above
|