/third_party/python/Lib/test/ |
H A D | test_ssl.py | 1495 # combined 1497 combined = "\n".join((cacert_pem, neuronio_pem)) 1498 ctx.load_verify_locations(cadata=combined) 1503 combined = ["head", cacert_pem, "other", neuronio_pem, "again", 1505 ctx.load_verify_locations(cadata="\n".join(combined)) 1517 # combined 1519 combined = b"".join((cacert_der, neuronio_der)) 1520 ctx.load_verify_locations(cadata=combined)
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cShaderSubroutineTests.cpp | 4614 * @param out_combined Expected result of "combined" operation 4641 Utils::vec4<glw::GLfloat> combined = left; in calculate() local 4656 calculate(function, combined, right, combined); in calculate() 4665 out_combined = combined; in calculate() 4671 out_loop = combined; in calculate()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | MessageSchema.java | 697 int[] combined = in newSchemaForMessageInfo() 699 System.arraycopy(checkInitialized, 0, combined, 0, checkInitialized.length); in newSchemaForMessageInfo() 701 mapFieldPositions, 0, combined, checkInitialized.length, mapFieldPositions.length); in newSchemaForMessageInfo() 705 combined, in newSchemaForMessageInfo() 717 combined, in newSchemaForMessageInfo()
|
/third_party/mesa3d/src/panfrost/midgard/ |
H A D | midgard_compile.c | 1961 bool combined = instr->intrinsic == in emit_intrinsic() local 1968 if (combined) { in emit_intrinsic()
|
/third_party/mesa3d/src/compiler/spirv/ |
H A D | spirv_to_nir.c | 2092 nir_const_value combined[NIR_MAX_VEC_COMPONENTS * 2]; in vtn_handle_constant() local 2096 combined[i] = v0->constant->values[i]; in vtn_handle_constant() 2100 combined[len0 + i] = v1->constant->values[i]; in vtn_handle_constant() 2114 val->constant->values[j] = combined[comp]; in vtn_handle_constant()
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bifrost_compile.c | 836 bool combined = instr->intrinsic == in bi_emit_fragment_out() local 839 unsigned writeout = combined ? nir_intrinsic_component(instr) : in bi_emit_fragment_out()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/ |
H A D | vktMeshShaderMiscTestsEXT.cpp | 4560 const std::string combined = "layout (set=0, binding=1) uniform sampler2D greenComponent;\n"; in initPrograms() local 4589 << combined in initPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/ |
H A D | vktMeshShaderMiscTestsEXT.cpp | 4557 const std::string combined = "layout (set=0, binding=1) uniform sampler2D greenComponent;\n"; in initPrograms() local 4586 << combined in initPrograms()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fTessellationTests.cpp | 6628 CombinedUniformLimitCase (Context& context, const char* name, const char* desc, glw::GLenum combined, glw::GLenum numBlocks, glw::GLenum defaultComponents); 6637 CombinedUniformLimitCase::CombinedUniformLimitCase (Context& context, const char* name, const char* desc, glw::GLenum combined, glw::GLenum numBlocks, glw::GLenum defaultComponents) 6639 , m_combined (combined) 7432 // combined limits in init()
|
/third_party/ffmpeg/libavutil/x86/ |
H A D | x86inc.asm | 25 ; NASM/YASM syntax combined with a large number of macros to provide easy
|
/third_party/node/deps/v8/src/torque/ |
H A D | implementation-visitor.cc | 4558 // the class field and the combined offsets of any nested struct fields in EmitLoadFieldStatement() 4626 // the class field and the combined offsets of any nested struct fields in EmitStoreFieldStatement() 5066 if (auto combined = Combine(section_kind, slots[i])) { in GenerateBodyDescriptors() 5067 next_section_kind = *combined; in GenerateBodyDescriptors()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 79 STATISTIC(NodesCombined , "Number of dag nodes combined"); 159 /// Set of nodes which have been combined (at least once). 162 /// which have not yet been combined to the worklist. 250 // Skip handle nodes as they can't usefully be combined and confuse the in AddToWorklist() 633 /// can be combined into narrow loads. 1444 // Add any operands of the new node which have not yet been combined to the in Run() 3655 SDValue combined; in useDivRem() local 3669 if (!combined) { in useDivRem() 3672 combined = DAG.getNode(DivRemOpc, SDLoc(Node), VTs, Op0, Op1); in useDivRem() 3674 combined in useDivRem() [all...] |
/third_party/node/deps/simdutf/ |
H A D | simdutf.cpp | 13985 const uint16x8_t combined = vorrq_u16(vandq_u16(one_byte_bytemask, onemask), vandq_u16(one_or_two_bytes_bytemask, twomask)); in arm_convert_utf16_to_utf8() local 13986 const uint16_t mask = vaddvq_u16(combined); in arm_convert_utf16_to_utf8() 14239 const uint16x8_t combined = vorrq_u16(vandq_u16(one_byte_bytemask, onemask), vandq_u16(one_or_two_bytes_bytemask, twomask)); in arm_convert_utf16_to_utf8_with_errors() local 14240 const uint16_t mask = vaddvq_u16(combined); in arm_convert_utf16_to_utf8_with_errors() 14693 const uint16x8_t combined = vorrq_u16(vandq_u16(one_byte_bytemask, onemask), vandq_u16(one_or_two_bytes_bytemask, twomask)); in arm_convert_utf32_to_utf8() local 14694 const uint16_t mask = vaddvq_u16(combined); in arm_convert_utf32_to_utf8() 14931 const uint16x8_t combined = vorrq_u16(vandq_u16(one_byte_bytemask, onemask), vandq_u16(one_or_two_bytes_bytemask, twomask)); in arm_convert_utf32_to_utf8_with_errors() local 14932 const uint16_t mask = vaddvq_u16(combined); in arm_convert_utf32_to_utf8_with_errors() [all...] |
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 125 // can be combined, en-mass, with the _NO_ forms later. 8756 Columns combined = *this; 8757 combined += col; 8758 return combined;
|
/third_party/ffmpeg/ |
H A D | configure | 477 Cannot be combined with --target-exec
|
/third_party/glslang/glslang/HLSL/ |
H A D | hlslParseHelper.cpp | 3319 // Create a combined sampler/texture from separate sampler and texture. 3330 samplerType.combined = true; in handleSamplerTextureCombine() 4340 // Create combined sampler & texture op in decomposeSampleMethods() 10220 // Finalization step: patch texture shadow modes to match samplers they were combined with
|
/third_party/typescript/lib/ |
H A D | typingsInstaller.js | 9469 List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime: diag(6168, ts.DiagnosticCategory.Message, "List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime_6168", "List of root folders whose combined content represents the structure of the project at runtime."), 9584 Options_0_and_1_cannot_be_combined: diag(6370, ts.DiagnosticCategory.Error, "Options_0_and_1_cannot_be_combined_6370", "Options '{0}' and '{1}' cannot be combined."), [all...] |
H A D | tsc.js | 6606 List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime: diag(6168, ts.DiagnosticCategory.Message, "List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime_6168", "List of root folders whose combined content represents the structure of the project at runtime."), 6721 Options_0_and_1_cannot_be_combined: diag(6370, ts.DiagnosticCategory.Error, "Options_0_and_1_cannot_be_combined_6370", "Options '{0}' and '{1}' cannot be combined."), [all...] |
H A D | tsserverlibrary.js | 9488 List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime: diag(6168, ts.DiagnosticCategory.Message, "List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime_6168", "List of root folders whose combined content represents the structure of the project at runtime."), 9603 Options_0_and_1_cannot_be_combined: diag(6370, ts.DiagnosticCategory.Error, "Options_0_and_1_cannot_be_combined_6370", "Options '{0}' and '{1}' cannot be combined."), [all...] |
H A D | typescript.js | 9479 List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime: diag(6168, ts.DiagnosticCategory.Message, "List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime_6168", "List of root folders whose combined content represents the structure of the project at runtime."), 9594 Options_0_and_1_cannot_be_combined: diag(6370, ts.DiagnosticCategory.Error, "Options_0_and_1_cannot_be_combined_6370", "Options '{0}' and '{1}' cannot be combined."), [all...] |
H A D | typescriptServices.js | 9479 List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime: diag(6168, ts.DiagnosticCategory.Message, "List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime_6168", "List of root folders whose combined content represents the structure of the project at runtime."), 9594 Options_0_and_1_cannot_be_combined: diag(6370, ts.DiagnosticCategory.Error, "Options_0_and_1_cannot_be_combined_6370", "Options '{0}' and '{1}' cannot be combined."), [all...] |
H A D | tsserver.js | 9489 List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime: diag(6168, ts.DiagnosticCategory.Message, "List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime_6168", "List of root folders whose combined content represents the structure of the project at runtime."), 9604 Options_0_and_1_cannot_be_combined: diag(6370, ts.DiagnosticCategory.Error, "Options_0_and_1_cannot_be_combined_6370", "Options '{0}' and '{1}' cannot be combined."), [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | 9403 List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime: diag(6168, ts.DiagnosticCategory.Message, "List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime_6168", "List of root folders whose combined content represents the structure of the project at runtime."), 9518 Options_0_and_1_cannot_be_combined: diag(6370, ts.DiagnosticCategory.Error, "Options_0_and_1_cannot_be_combined_6370", "Options '{0}' and '{1}' cannot be combined."), [all...] |