| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/include/spirv-tools/ |
| H A D | libspirv.h | 105 // Some operand types are "concrete". The binary parser uses a concrete 117 // NOTE: Although we don't promise binary compatibility, as a courtesy, please 189 // the assembler and the binary parser. 198 // binary form. Instead of using enum ranges, use characteristic function 201 // new values into a range without also breaking binary compatibility. 322 // This determines at a high level the kind of a binary-encoded literal 336 // Numeric IDs in the binary will have the same values as in the source. 368 // Information about an operand parsed from a binary SPIR-V module. 369 // Note that the values are not included. You still need access to the binary 386 // An instruction parsed from a binary SPI [all...] |
| /third_party/json/include/nlohmann/detail/ |
| H A D | json_pointer.hpp | 324 case detail::value_t::binary: in get_and_create() 405 case detail::value_t::binary: in get_unchecked() 456 case detail::value_t::binary: in get_checked() 512 case detail::value_t::binary: in get_unchecked() 563 case detail::value_t::binary: in get_checked() 642 case detail::value_t::binary: in contains() 784 case detail::value_t::binary: in flatten()
|
| /third_party/mesa3d/src/gallium/frontends/clover/api/ |
| H A D | program.cpp | 146 std::vector<std::pair<cl_int, binary>> result = map( in clCreateProgramWithBinary() 147 [](const unsigned char *p, size_t l) -> std::pair<cl_int, binary> { in clCreateProgramWithBinary() 155 return { CL_SUCCESS, binary::deserialize(s) }; in clCreateProgramWithBinary() 192 // the context. That is the version used for validating the SPIR-V binary. in CreateProgramWithILKHR() 200 std::string binary(stream, stream + length); in CreateProgramWithILKHR() 201 const enum program::il_type il_type = identify_and_validate_il(binary, in CreateProgramWithILKHR() 210 return new program(ctx, std::move(binary), il_type); in CreateProgramWithILKHR() 288 // with clCreateProgramWithBinary, then the program binary must be an in clBuildProgram() 289 // executable binary (not a compiled binary o in clBuildProgram() [all...] |
| /third_party/mesa3d/src/imagination/rogue/ |
| H A D | rogue.c | 104 * \brief Converts a Rogue shader to binary. 113 struct rogue_shader_binary *binary; in rogue_to_binary() local 132 binary = rzalloc_size(ctx, sizeof(*binary) + buf_size); in rogue_to_binary() 133 if (!binary) { in rogue_to_binary() 138 binary->size = buf_size; in rogue_to_binary() 139 memcpy(binary->data, buf, buf_size); in rogue_to_binary() 143 return binary; in rogue_to_binary() 781 /* nir/rogue/binary shaders need to be default-zeroed; in rogue_create_build_context()
|
| /third_party/node/tools/gyp/pylib/gyp/ |
| H A D | mac_tool.py | 77 """Compiles a XIB file with ibtool into a binary plist in the bundle.""" 292 # Find the name of the binary based on the part before the ".framework". 293 binary = os.path.basename(framework).split(".")[0] 303 "}\n" % (binary, binary) 312 # Find the name of the binary based on the part before the ".framework". 313 binary = os.path.basename(framework).split(".")[0] 319 if not os.path.exists(os.path.join(framework, VERSIONS, version, binary)): 332 self._Relink(os.path.join(VERSIONS, CURRENT, binary), binary) [all...] |
| /third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
| H A D | mac_tool.py | 77 """Compiles a XIB file with ibtool into a binary plist in the bundle.""" 292 # Find the name of the binary based on the part before the ".framework". 293 binary = os.path.basename(framework).split(".")[0] 303 "}\n" % (binary, binary) 312 # Find the name of the binary based on the part before the ".framework". 313 binary = os.path.basename(framework).split(".")[0] 319 if not os.path.exists(os.path.join(framework, VERSIONS, version, binary)): 332 self._Relink(os.path.join(VERSIONS, CURRENT, binary), binary) [all...] |
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
| H A D | SeparateCompoundExpressions.cpp | 38 if (auto *binary = expr.getAsBinaryNode()) in IsIndex() 40 return IsIndex(binary->getOp()); in IsIndex() 47 TIntermBinary *binary = node.getAsBinaryNode(); in ViewBinaryChain() local 48 if (!binary || binary->getOp() != op) in ViewBinaryChain() 53 TIntermTyped *left = binary->getLeft(); in ViewBinaryChain() 54 TIntermTyped *right = binary->getRight(); in ViewBinaryChain()
|
| H A D | ToposortStructs.cpp | 254 bool visitBinary(Visit, TIntermBinary *binary) override 256 const TOperator op = binary->getOp(); 263 const TType &leftType = binary->getLeft()->getType(); 264 const TType &rightType = binary->getRight()->getType();
|
| H A D | RewriteUnaddressableReferences.cpp | 31 bool IsVectorAccess(TIntermBinary &binary) in IsVectorAccess() argument 33 TOperator op = binary.getOp(); in IsVectorAccess() 44 const TType &leftType = binary.getLeft()->getType(); in IsVectorAccess() 50 ASSERT(IsScalarBasicType(binary.getType())); in IsVectorAccess() 92 // Only includes ($=) style assigns, where ($) is a binary op.
|
| /third_party/skia/third_party/externals/spirv-tools/source/opt/ |
| H A D | instruction.cpp | 193 std::vector<uint32_t>* binary) const { in ToBinaryWithoutAttachedDebugInsts() 195 binary->push_back((num_words << 16) | static_cast<uint16_t>(opcode_)); in ToBinaryWithoutAttachedDebugInsts() 197 binary->insert(binary->end(), operand.words.begin(), operand.words.end()); in ToBinaryWithoutAttachedDebugInsts() 810 // Convert the module to binary. in PrettyPrint() 814 // Convert the instruction to binary. This is used to identify the correct in PrettyPrint() 1046 std::vector<uint32_t>* binary) const { in ToBinary() 1062 binary->insert(binary->end(), operands.begin(), operands.end()); in ToBinary() 1064 binary in ToBinary() [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| H A D | instruction.cpp | 193 std::vector<uint32_t>* binary) const { in ToBinaryWithoutAttachedDebugInsts() 195 binary->push_back((num_words << 16) | static_cast<uint16_t>(opcode_)); in ToBinaryWithoutAttachedDebugInsts() 197 binary->insert(binary->end(), operand.words.begin(), operand.words.end()); in ToBinaryWithoutAttachedDebugInsts() 810 // Convert the module to binary. in PrettyPrint() 814 // Convert the instruction to binary. This is used to identify the correct in PrettyPrint() 1046 std::vector<uint32_t>* binary) const { in ToBinary() 1062 binary->insert(binary->end(), operands.begin(), operands.end()); in ToBinary() 1064 binary in ToBinary() [all...] |
| /third_party/mesa3d/src/util/ |
| H A D | xxd.py | 36 parser.add_argument("-b", "--binary", dest='binary', action='store_const', 73 if not args.binary: 81 if not args.binary:
|
| /third_party/ltp/testcases/network/rpc/rpc-tirpc/ |
| H A D | rpc_test.sh | 29 -c clprog client program binary 30 -s sprog server program binary
|
| /third_party/protobuf/examples/ |
| H A D | add_person.cc | 77 fstream input(argv[1], ios::in | ios::binary); in main() 91 fstream output(argv[1], ios::out | ios::trunc | ios::binary); in main()
|
| /third_party/skia/third_party/externals/spirv-tools/test/fuzz/ |
| H A D | fuzz_test_util.h | 36 // Assembles the given text and returns true if and only if the resulting binary 37 // is bit-wise equal to the given binary. 41 // Assembles the given text and turns the given IR into binary, then returns 51 // Turns |ir_2| into a binary, then returns true if and only if the resulting 52 // binary is bit-wise equal to |binary_1|. 60 // Returns the disassembly of the given binary as a string. 62 std::string ToString(spv_target_env env, const std::vector<uint32_t>& binary); 76 // Dumps |binary| to file |filename|. Useful for interactive debugging. 77 void DumpShader(const std::vector<uint32_t>& binary, const char* filename); 79 // Dumps |transformations| to file |filename| in binary forma [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/ |
| H A D | fuzz_test_util.h | 36 // Assembles the given text and returns true if and only if the resulting binary 37 // is bit-wise equal to the given binary. 41 // Assembles the given text and turns the given IR into binary, then returns 51 // Turns |ir_2| into a binary, then returns true if and only if the resulting 52 // binary is bit-wise equal to |binary_1|. 60 // Returns the disassembly of the given binary as a string. 62 std::string ToString(spv_target_env env, const std::vector<uint32_t>& binary); 76 // Dumps |binary| to file |filename|. Useful for interactive debugging. 77 void DumpShader(const std::vector<uint32_t>& binary, const char* filename); 79 // Dumps |transformations| to file |filename| in binary forma [all...] |
| /third_party/spirv-tools/test/fuzz/ |
| H A D | fuzz_test_util.h | 36 // Assembles the given text and returns true if and only if the resulting binary 37 // is bit-wise equal to the given binary. 41 // Assembles the given text and turns the given IR into binary, then returns 51 // Turns |ir_2| into a binary, then returns true if and only if the resulting 52 // binary is bit-wise equal to |binary_1|. 60 // Returns the disassembly of the given binary as a string. 62 std::string ToString(spv_target_env env, const std::vector<uint32_t>& binary); 76 // Dumps |binary| to file |filename|. Useful for interactive debugging. 77 void DumpShader(const std::vector<uint32_t>& binary, const char* filename); 79 // Dumps |transformations| to file |filename| in binary forma [all...] |
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
| H A D | HLSLCompiler.cpp | 235 ID3DBlob *binary = nullptr; in compileToBinary() local 242 "main", profile.c_str(), configs[i].flags, 0, &binary, in compileToBinary() 301 *outCompiledBlob = binary; in compileToBinary() 332 ANGLE_TRY(disassembleBinary(context, binary, &disassembly)); in compileToBinary()
|
| /third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
| H A D | cli.cc | 76 Whether to validate SPIR-V binary after each fuzzer pass. 82 Whether to validate SPIR-V binary after each optimization pass. 88 Whether to validate SPIR-V binary after each reduction pass. 140 binary during a mutation session (i.e. if no mutator exists 141 for that binary in the mutator cache). By default, the 148 mutator type, the seed and the path to the SPIR-V binary that triggered the 149 error. This tool will run the mutator on the binary until the error is 156 invalid binary in LLVMFuzzerCustomMutator. 169 The path to the SPIR-V binary that the faulty mutator was 176 the console when the mutator produces an invalid binary [all...] |
| /third_party/skia/third_party/externals/angle2/include/EGL/ |
| H A D | eglext_angle.h | 202 typedef void (EGLAPIENTRYP PFNEGLPROGRAMCACHEQUERYANGLEPROC) (EGLDisplay dpy, EGLint index, void *key, EGLint *keysize, void *binary, EGLint *binarysize); 203 typedef void (EGLAPIENTRYP PFNEGLPROGRAMCACHEPOPULATEANGLEPROC) (EGLDisplay dpy, const void *key, EGLint keysize, const void *binary, EGLint binarysize); 207 EGLAPI void EGLAPIENTRY eglProgramCacheQueryANGLE(EGLDisplay dpy, EGLint index, void *key, EGLint *keysize, void *binary, EGLint *binarysize); 208 EGLAPI void EGLAPIENTRY eglProgramCachePopulateANGLE(EGLDisplay dpy, const void *key, EGLint keysize, const void *binary, EGLint binarysize);
|
| /third_party/selinux/checkpolicy/ |
| H A D | checkmodule.c | 132 printf(" -b treat input as a binary policy file\n"); in usage() 133 printf(" -C output CIL policy instead of binary policy\n"); in usage() 151 unsigned int binary = 0, cil = 0; in main() local 158 {"binary", no_argument, NULL, 'b'}, in main() 176 binary = 1; in main() 247 if (binary && (policy_type != POLICY_BASE)) { in main() 264 if (binary) { in main()
|
| /third_party/node/deps/v8/tools/ |
| H A D | run_perf.py | 17 "binary": <name of binary to run, default "d8">, 306 def __init__(self, binary = 'd8'): 308 self.binary = binary 353 self.binary = suite.get('binary', parent.binary) 467 if self.binary != 'd8' and '--prof' in extra_flags: 472 if self.binary [all...] |
| /third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-echo/ |
| H A D | protocol_lws_minimal_client_echo.c | 28 char binary; member 176 pmsg->binary ? LWS_WRITE_BINARY : LWS_WRITE_TEXT, in callback_minimal_client_echo() 222 amsg.binary = (char)lws_frame_is_binary(wsi); in callback_minimal_client_echo()
|
| /third_party/node/lib/ |
| H A D | os.js | 211 // Returns the number of ones in the binary representation of the decimal 249 const binary = NumberParseInt(part, range); 250 const binaryOnes = countBinaryOnes(binary); 253 if ((binary & 1) !== 0) {
|
| /third_party/node/deps/v8/third_party/wasm-api/example/ |
| H A D | memory.cc | 71 // Load binary. in run() 72 std::cout << "Loading binary..." << std::endl; in run() 77 auto binary = wasm::vec<byte_t>::make_uninitialized(file_size); in run() local 78 file.read(binary.get(), file_size); in run() 87 auto module = wasm::Module::make(store, binary); in run()
|