/third_party/astc-encoder/Source/ |
H A D | astcenc_color_unquantize.cpp | 47 vint4& output1 in rgba_delta_unpack() 63 output1 = clamp(0, 255, input1); in rgba_delta_unpack() 74 * @param[out] output1 The unpacked endpoint 1 color. 80 vint4& output1 in rgb_delta_unpack() 82 rgba_delta_unpack(input0, input1, output0, output1); in rgb_delta_unpack() 84 output1.set_lane<3>(255); in rgb_delta_unpack() 91 vint4& output1 in rgba_unpack() 102 output1 = input1; in rgba_unpack() 113 * @param[out] output1 The unpacked endpoint 1 color. 119 vint4& output1 in rgb_unpack() [all...] |
H A D | astcenc_internal.h | 1881 * @param[out] output1 The output color for endpoint 1. 1890 vint4& output1); 1898 * @param[out] output1 The unpacked endpoint 1 color. 1904 vint4& output1); 1912 * @param[out] output1 The unpacked endpoint 1 color. 1918 vint4& output1);
|
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/ |
H A D | astc_color_unquantize.cpp | 30 uint4* output1 in rgb_delta_unpack() 133 output1->x = r1e; in rgb_delta_unpack() 134 output1->y = g1e; in rgb_delta_unpack() 135 output1->z = b1e; in rgb_delta_unpack() 136 output1->w = 0xFF; in rgb_delta_unpack() 145 uint4* output1 in rgb_unpack() 167 output1->x = ri0b; in rgb_unpack() 168 output1->y = gi0b; in rgb_unpack() 169 output1->z = bi0b; in rgb_unpack() 170 output1 in rgb_unpack() [all...] |
H A D | astc_codec_internals.h | 315 uint4* output1);
|
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/ |
H A D | v8_suppressions.py | 93 def get_output_capped(output1, output2): 100 if (len(output1.stdout) == len(output2.stdout) or 101 (not output1.HasCrashed() and not output2.HasCrashed())): 102 return output1.stdout, output2.stdout 105 if output1.HasCrashed() and output2.HasCrashed(): 106 cap = min(len(output1.stdout), len(output2.stdout)) 108 elif output1.HasCrashed(): 109 cap = len(output1.stdout) 114 return output1.stdout[0:cap], output2.stdout[0:cap] 152 def diff_output(output1, output [all...] |
H A D | v8_foozzie_test.py | 204 output1 = output(stdout1, is_crash1) 208 v8_suppressions.get_output_capped(output1, output2))
|
/third_party/PyYAML/tests/lib/ |
H A D | test_recursive.py | 30 output1 = None 34 output1 = yaml.dump(value1) 35 value2 = yaml.unsafe_load(output1) 37 assert output1 == output2, (output1, output2) 43 print(output1)
|
H A D | test_input_output.py | 123 output1 = yaml.emit(yaml.parse(input), allow_unicode=True) 130 assert isinstance(output1, str), (type(output1), encoding) 132 assert isinstance(output2, str), (type(output1), encoding) 134 assert isinstance(output2, bytes), (type(output1), encoding)
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsm64bitCompareTests.cpp | 218 layout(binding = 2) buffer Output1 { int values[]; } output1; 223 output1.values[i] = int(input1.values[i] == input2.values[i]); 241 OpName %output1 "output1" 251 OpDecorate %output1 DescriptorSet 0 252 OpDecorate %output1 Binding 2 273 %output1 = OpVariable %_ptr_Uniform_Output1 Uniform 308 %44 = OpAccessChain %_ptr_Uniform_int %output1 %int_0 %23 330 layout(binding = 2) buffer Output1 { ivec4 values[]; } output1; 335 output1 1187 BufferWithMemory output1 = createStorageBuffer(vkdi, device, allocator, m_outputBufferSize); iterate() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsm64bitCompareTests.cpp | 218 layout(binding = 2) buffer Output1 { int values[]; } output1; 223 output1.values[i] = int(input1.values[i] == input2.values[i]); 241 OpName %output1 "output1" 251 OpDecorate %output1 DescriptorSet 0 252 OpDecorate %output1 Binding 2 273 %output1 = OpVariable %_ptr_Uniform_Output1 Uniform 308 %44 = OpAccessChain %_ptr_Uniform_int %output1 %int_0 %23 330 layout(binding = 2) buffer Output1 { ivec4 values[]; } output1; 335 output1 1187 BufferWithMemory output1 = createStorageBuffer(vkdi, device, allocator, m_outputBufferSize); iterate() local [all...] |
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_tgsi.c | 280 emit_data.output1[chan_index] = bld_base->base.undef; in lp_build_tgsi_inst_llvm() 325 val = emit_data.output1[0]; in lp_build_tgsi_inst_llvm() 326 memset(emit_data.output1, 0, sizeof(emit_data.output1)); in lp_build_tgsi_inst_llvm() 328 emit_data.output1[chan_index] = val; in lp_build_tgsi_inst_llvm() 337 bld_base->emit_store(bld_base, inst, info, 1, emit_data.output1); in lp_build_tgsi_inst_llvm()
|
H A D | lp_bld_tgsi_action.h | 87 LLVMValueRef output1[4]; member
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktAtomicOperationTests.cpp | 335 Expected (T inout, T output0, T output1) in Expected() 339 m_output[1] = output1; in Expected() 342 bool compare (T inout, T output0, T output1) in compare() 346 && deMemCmp((const void*)&m_output[1], (const void*)&output1, sizeof(output1)) == 0); in compare() 459 Expected(T inout, T output0, T output1) in Expected() 463 m_output[1] = output1; in Expected() 466 bool compare(T inout, T output0, T output1) in compare() 470 nanSafeSloppyEquals(m_output[1], output1); in compare()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
H A D | vktAtomicOperationTests.cpp | 335 Expected (T inout, T output0, T output1) in Expected() 339 m_output[1] = output1; in Expected() 342 bool compare (T inout, T output0, T output1) in compare() 346 && deMemCmp((const void*)&m_output[1], (const void*)&output1, sizeof(output1)) == 0); in compare() 459 Expected(T inout, T output0, T output1) in Expected() 463 m_output[1] = output1; in Expected() 466 bool compare(T inout, T output0, T output1) in compare() 470 nanSafeSloppyEquals(m_output[1], output1); in compare()
|
/third_party/googletest/googlemock/test/ |
H A D | gmock-spec-builders_test.cc | 891 const std::string output1 = GetCapturedStdout(); in TEST() local 892 EXPECT_STREQ("", output1.c_str()); in TEST() 1982 const std::string output1 = GetCapturedStdout(); in TEST() local 1988 output1.c_str()); in TEST()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | idnatest.c | 649 UChar output1[40] = {0}; in TestJB4490() local 655 UChar* dest1 = output1; in TestJB4490()
|
/third_party/mbedtls/3rdparty/everest/library/legacy/ |
H A D | Hacl_Curve25519.c | 472 uint64_t output1 = i1 >> (uint32_t)3U & (uint64_t)0x7ffffffffffffU; in Hacl_EC_Format_fexpand() local 477 output[1U] = output1; in Hacl_EC_Format_fexpand()
|
/third_party/mbedtls/3rdparty/everest/library/ |
H A D | Hacl_Curve25519.c | 427 uint64_t output1 = i1 >> (uint32_t)3U & (uint64_t)0x7ffffffffffffU; in Hacl_EC_Format_fexpand() local 432 output[1U] = output1; in Hacl_EC_Format_fexpand()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | map_test.cc | 2144 std::string output1, output2, output3; in TEST() local 2145 TextFormat::PrintToString(*message1, &output1); in TEST() 2148 EXPECT_EQ(output1, output2); in TEST() 2149 EXPECT_EQ(output1, output3); in TEST() 2219 std::string output1, output2; in TEST() local 2220 TextFormat::PrintToString(message1, &output1); in TEST() 2222 EXPECT_EQ(output1, output2); in TEST()
|