| /third_party/glslang/glslang/MachineIndependent/ |
| H A D | Intermediate.cpp | 9 // Redistribution and use in source and binary forms, with or without 16 // Redistributions in binary form must reproduce the above 110 // Connect two nodes with a new parent that does a binary operation on the nodes. 228 // Low level: add binary node (no promotions or other argument modifications) 310 // Like adding binary math, except the conversion can only go in addAssign() 867 // For converting a pair of operands to a binary operation to compatible 903 // List all the binary ops that can implicitly convert one operand to the other's type; in addPairConversion() 2707 const TIntermBinary* binary = node->getAsBinaryNode(); in traverseLValueBase() local 2708 if (binary == nullptr) { in traverseLValueBase() 2714 TOperator op = binary in traverseLValueBase() [all...] |
| /third_party/gn/src/gn/ |
| H A D | variables.cc | 457 When you use this, both targets must be included in a final binary for it to 1244 targets to include private headers. Applies to all binary targets. 1397 Inputs for binary targets 1404 Inputs for binary targets will be treated as implicit dependencies, meaning 1475 These libraries will be linked into the final binary (executable or shared 1620 This variable is valid for all binary output target types. 1698 "pool: [string] Label of the pool used by binary targets and actions."; 1700 R"(pool: Label of the pool used by binary targets actions. 1702 A fully-qualified label representing the pool that will be used for binary 1707 executable("binary") { [all...] |
| /third_party/json/include/nlohmann/detail/input/ |
| H A D | binary_reader.hpp | 43 store ///< store tags as binary type 60 // binary reader // 80 @brief create a binary reader 97 @param[in] format the binary format to parse 238 @param[in,out] result A reference to the binary variable where the read 251 exception_message(input_format_t::bson, concat("byte array length cannot be negative, is ", std::to_string(len)), "binary"), nullptr)); in get_bson_binary() 254 // All BSON binary values have a subtype in get_bson_binary() 300 case 0x05: // binary in parse_bson_element_internal() 304 return get_number<std::int32_t, true>(input_format_t::bson, len) && get_bson_binary(len, value) && sax->binary(value); in parse_bson_element_internal() 343 The same binary layou [all...] |
| /third_party/json/docs/docset/ |
| H A D | docSet.sql | 23 INSERT INTO searchIndex(name, type, path) VALUES ('basic_json::binary', 'Function', 'api/basic_json/binary/index.html'); 142 INSERT INTO searchIndex(name, type, path) VALUES ('json_sax::binary', 'Method', 'api/json_sax/binary/index.html');
|
| /third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
| H A D | cbor_test.cc | 534 std::vector<uint8_t> binary = {'H', 'e', 'l', 'l', 'o', ',', ' ', in TEST() local 537 EncodeBinary(span<uint8_t>(binary.data(), binary.size()), &encoded); in TEST() 538 // So, on the wire we see that the binary blob travels unmodified. in TEST() 551 EXPECT_THAT(decoded, ElementsAreArray(binary)); in TEST() 711 // Hits all the cases except binary and error in ParserHandler, first in TEST() 801 // binary type. So, we can't fully roundtrip. However, the other direction in TEST() 802 // works: binary will be rendered in JSON, as a base64 string. So, we make in TEST() 804 // these calls is ::HandleBinary, to which we pass a "binary" string in TEST() 813 // Emit the binary payloa in TEST() [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
| H A D | vktMemoryAddressBindingTests.cpp | 683 const ProgramBinary& binary; 686 : binary(env.programBinaries.get(params.binaryName)) 736 res.binary.getSize(), // size_t codeSize; 737 (const deUint32*)res.binary.getBinary(), // const uint32_t* pCode;
|
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
| H A D | vktMemoryAddressBindingTests.cpp | 644 const ProgramBinary& binary; 647 : binary(env.programBinaries.get(params.binaryName)) 697 res.binary.getSize(), // size_t codeSize; 698 (const deUint32*)res.binary.getBinary(), // const uint32_t* pCode;
|
| /third_party/mesa3d/include/GLES3/ |
| H A D | gl31.h | 480 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 623 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 1091 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1092 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); 1196 GL_APICALL void GL_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1197 GL_APICALL void GL_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
| H A D | gl3.h | 480 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 623 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 1091 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1092 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); 1196 GL_APICALL void GL_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1197 GL_APICALL void GL_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
| /third_party/openGLES/api/GLES3/ |
| H A D | gl3.h | 461 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); 604 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); 1072 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1073 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); 1177 GL_APICALL void GL_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1178 GL_APICALL void GL_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
| H A D | gl31.h | 461 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 604 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 1072 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1073 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); 1177 GL_APICALL void GL_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1178 GL_APICALL void GL_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
| /third_party/mesa3d/src/panfrost/midgard/ |
| H A D | midgard_compile.c | 1015 * the other arguments up one to be a binary in emit_alu() 3130 struct util_dynarray *binary, in midgard_compile_shader_nir() 3282 /* Emit flat binary from the instruction arrays. Iterate each block in in midgard_compile_shader_nir() 3316 emit_binary_bundle(ctx, block, bundle, binary, lookahead); in midgard_compile_shader_nir() 3332 disassemble_midgard(stdout, binary->data, in midgard_compile_shader_nir() 3333 binary->size, inputs->gpu_id, in midgard_compile_shader_nir() 3341 if (binary->size) in midgard_compile_shader_nir() 3342 memset(util_dynarray_grow(binary, uint8_t, 16), 0, 16); in midgard_compile_shader_nir() 3128 midgard_compile_shader_nir(nir_shader *nir, const struct panfrost_compile_inputs *inputs, struct util_dynarray *binary, struct pan_shader_info *info) midgard_compile_shader_nir() argument
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
| H A D | vktPipelineShaderModuleIdentifierTests.cpp | 1431 for (const auto& binary : binaries) in runTest() 1434 binary.setUsed(); in runTest() 1436 const auto binSize = binary.getSize(); in runTest() 1437 const auto binData = reinterpret_cast<const uint32_t*>(binary.getBinary()); in runTest() 1438 const auto shaderModule1 = (m_params->needsVkModule() ? createShaderModule(vkd1, device1, binary) : Move<VkShaderModule>()); in runTest() 1439 const auto shaderModule2 = (m_params->needsVkModule() ? createShaderModule(vkd2, device2, binary) : Move<VkShaderModule>()); in runTest()
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
| H A D | Renderer9.cpp | 2726 ID3DBlob *binary = nullptr; in compileToExecutable() local 2729 nullptr, &binary, &debugInfo); in compileToExecutable() 2732 // It's possible that binary is NULL if the compiler failed in all configurations. Set the in compileToExecutable() 2735 if (!binary) in compileToExecutable() 2741 error = loadExecutable(context, reinterpret_cast<const uint8_t *>(binary->GetBufferPointer()), in compileToExecutable() 2742 binary->GetBufferSize(), type, streamOutVaryings, separatedOutputBuffers, in compileToExecutable() 2745 SafeRelease(binary); in compileToExecutable()
|
| /third_party/skia/third_party/externals/swiftshader/include/GLES3/ |
| H A D | gl3.h | 480 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 623 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 1091 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1092 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); 1196 GL_APICALL void GL_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1197 GL_APICALL void GL_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
| /third_party/skia/third_party/externals/opengl-registry/api/GLES3/ |
| H A D | gl3.h | 480 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 623 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 1091 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1092 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); 1196 GL_APICALL void GL_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1197 GL_APICALL void GL_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
| H A D | gl31.h | 482 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 625 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 1093 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1094 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); 1198 GL_APICALL void GL_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1199 GL_APICALL void GL_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
| /third_party/skia/third_party/externals/angle2/include/GLES3/ |
| H A D | gl3.h | 461 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); 604 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); 1072 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1073 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); 1177 GL_APICALL void GL_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1178 GL_APICALL void GL_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
| H A D | gl31.h | 461 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 604 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); 1072 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1073 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); 1177 GL_APICALL void GL_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1178 GL_APICALL void GL_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
| H A D | vktPipelineShaderModuleIdentifierTests.cpp | 1425 for (const auto& binary : binaries) in runTest() 1428 binary.setUsed(); in runTest() 1430 const auto binSize = binary.getSize(); in runTest() 1431 const auto binData = reinterpret_cast<const uint32_t*>(binary.getBinary()); in runTest() 1432 const auto shaderModule1 = (m_params->needsVkModule() ? createShaderModule(vkd1, device1, binary) : Move<VkShaderModule>()); in runTest() 1433 const auto shaderModule2 = (m_params->needsVkModule() ? createShaderModule(vkd2, device2, binary) : Move<VkShaderModule>()); in runTest()
|
| /third_party/mesa3d/src/freedreno/.gitlab-ci/traces/ |
| H A D | afuc_test.asm | 26 ; binary, then disassambled and compared to the reference disassembly. We do
|
| /third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/bn/ |
| H A D | armv4-gf2m.S | 162 moveq pc,lr @ be binary compatible with V4, yet
|
| /third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/bn/ |
| H A D | armv4-gf2m.S | 162 moveq pc,lr @ be binary compatible with V4, yet
|
| /third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
| H A D | armv4-gf2m.pl | 247 moveq pc,lr @ be binary compatible with V4, yet
|
| /third_party/rust/crates/clap/clap_bench/benches/ |
| H A D | 05_ripgrep.rs | 545 doc!(h, "text", "Search binary files as if they were text."); 645 -u flags will additionally search binary files. -uu is \
|