Home
last modified time | relevance | path

Searched refs:result (Results 9776 - 9800 of 10825) sorted by relevance

1...<<391392393394395396397398399400>>...433

/third_party/spirv-tools/source/val/
H A Dvalidate_extensions.cpp89 // is a result id of an instruction with |expected_opcode|.
105 << "expected operand " << operand_name << " must be a result id of " in ValidateOperandForDebugInfo()
112 // instruction |inst| at |word_index| is a result id of a 32-bit integer
122 << " must be a result id of 32-bit unsigned OpConstant"; in ValidateUint32ConstantOperandForDebugInfo()
129 auto result = ValidateOperandForDebugInfo(_, NAME, opcode, inst, index, \
131 if (result != SPV_SUCCESS) return result; \
136 auto result = ValidateUint32ConstantOperandForDebugInfo( \
138 if (result != SPV_SUCCESS) return result; \
[all...]
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan.hpp6546 [[noreturn]] VULKAN_HPP_INLINE void throwResultException( Result result, char const * message ) in throwResultException() argument
6548 switch ( result ) in throwResultException()
6587 default: throw SystemError( make_error_code( result ), message ); in throwResultException()
6606 : result( r ), value( v ) in VULKAN_HPP_NOEXCEPT()
6615 : result( r ), value( std::move( v ) ) in VULKAN_HPP_NOEXCEPT()
6619 Result result; member
6624 return std::tuple<Result &, T &>( result, value );
6637 : result( r )
6647 return std::make_tuple( result, std::move( value ) ); in asTuple()
6652 return std::make_tuple( result, st in asTuple()
6655 Result result; global() member
6685 Result result; global() member
6720 createResultValueType( Result result, T & data ) createResultValueType() argument
6731 createResultValueType( Result result, T && data ) createResultValueType() argument
6741 resultCheck( Result result, char const * message ) resultCheck() argument
6755 resultCheck( Result result, char const * message, std::initializer_list<Result> successCodes ) resultCheck() argument
[all...]
/third_party/toybox/toys/pending/
H A Dbc.c173 BcStatus bc_num_ulong(BcNum *n, unsigned long *result);
699 "POSIX does not allow a period ('.') as a shortcut for the last result",
988 int result = bc_id_cmp(ptr, id); in bc_map_find() local
990 if (!result) return mid; in bc_map_find()
991 else if (result < 0) high = mid; in bc_map_find()
1840 BcNum temp, mult, result; in bc_num_parseBase() local
1865 bc_num_init(&result, base->len); in bc_num_parseBase()
1872 s = bc_num_mul(&result, base, &result, 0); in bc_num_parseBase()
1875 s = bc_num_add(&result, in bc_num_parseBase()
2122 bc_num_ulong(BcNum *n, unsigned long *result) bc_num_ulong() argument
2426 bc_result_free(void *result) bc_result_free() argument
[all...]
/third_party/ffmpeg/libavdevice/
H A Ddecklink_dec.cpp1170 HRESULT result; in ff_decklink_read_header() local
1396 result = ctx->dli->EnableAudioInput(bmdAudioSampleRate48kHz, cctx->audio_depth == 32 ? bmdAudioSampleType32bitInteger : bmdAudioSampleType16bitInteger, ctx->audio_st->codecpar->ch_layout.nb_channels); in ff_decklink_read_header()
1398 if (result != S_OK) { in ff_decklink_read_header()
1404 result = ctx->dli->EnableVideoInput(ctx->bmd_mode, in ff_decklink_read_header()
1408 if (result != S_OK) { in ff_decklink_read_header()
/third_party/alsa-lib/src/alisp/
H A Dalisp.c3182 lisp_verbose(instance, "** result"); in alisp_include_file()
3243 lisp_verbose(instance, "** result"); in alsa_lisp()
3307 int alsa_lisp_function(struct alisp_instance *instance, struct alisp_seq_iterator **result, in alsa_lisp_function() argument
3415 if (err == 0 && result) { in alsa_lisp_function()
3416 *result = res; in alsa_lisp_function()
3425 struct alisp_seq_iterator *result) in alsa_lisp_result_free()
3427 delete_tree(instance, result); in alsa_lisp_result_free()
3424 alsa_lisp_result_free(struct alisp_instance *instance, struct alisp_seq_iterator *result) alsa_lisp_result_free() argument
/third_party/icu/icu4c/source/test/intltest/
H A Dreldatefmttest.cpp1520 UnicodeString result; in TestRBNF() local
1522 fmt.format(5, UDAT_DIRECTION_NEXT, UDAT_RELATIVE_SECONDS, result, status)); in TestRBNF()
1524 fmt.formatNumeric(-1, UDAT_REL_UNIT_WEEK, result.remove(), status)); in TestRBNF()
1526 fmt.format(UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_DAY, result.remove(), status)); in TestRBNF()
1528 fmt.format(42, UDAT_REL_UNIT_MONTH, result.remove(), status)); in TestRBNF()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DIBMCalendarTest.java776 String result = sdf.format(ms); in TestJB1684()
777 if (!result.equals(test.normalized)) { in TestJB1684()
779 "\n '" + result + "'" + in TestJB1684()
788 ms3 = sdf.parse(result); in TestJB1684()
796 log("\nError: Re-parse of '" + result + "' gave time of " + in TestJB1684()
1965 + ", result:" + res.toString() + " - expected:" + d.expected.toString()); in TestAddAcrossZoneTransition()
2003 assertEquals("subFormat result", "2000", subFormatResult); in TestSimpleDateFormatCoverage()
2012 assertEquals("subParseResult result", 26, subParseResult); in TestSimpleDateFormatCoverage()
/third_party/mbedtls/library/
H A Dbignum.c60 mbedtls_ct_condition_t different_sign, X_is_negative, Y_is_negative, result; in mbedtls_mpi_lt_mpi_ct() local
79 result = mbedtls_ct_bool_and(different_sign, X_is_negative); in mbedtls_mpi_lt_mpi_ct()
83 * order if they are negative so that we get the right result, regardles of in mbedtls_mpi_lt_mpi_ct()
93 * Store in result iff the signs are the same (i.e., iff different_sign == false). If in mbedtls_mpi_lt_mpi_ct()
94 * the signs differ, result has already been set, so we don't change it. in mbedtls_mpi_lt_mpi_ct()
96 result = mbedtls_ct_bool_or(result, in mbedtls_mpi_lt_mpi_ct()
99 *ret = mbedtls_ct_uint_if_else_0(result, 1); in mbedtls_mpi_lt_mpi_ct()
1015 * X must always be positive as a result of unsigned additions. in mbedtls_mpi_add_abs()
1094 /* If we have further carry/borrow, the result i in mbedtls_mpi_sub_abs()
[all...]
/third_party/lame/frontend/
H A Dparse.c410 int result; in id3_tag() local
428 case TENC_LATIN1: result = set_id3tag(gfp, type, x); break; in id3_tag()
429 case TENC_UTF16: result = set_id3v2tag(gfp, type, x); break; in id3_tag()
431 case TENC_RAW: result = set_id3tag(gfp, type, x); break; in id3_tag()
435 return result; in id3_tag()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_tex.c394 nir_ssa_def *result = in convert_yuv_to_rgb() local
397 nir_ssa_def_rewrite_uses(&tex->dest.ssa, result); in convert_yuv_to_rgb()
643 * result = log2(max(sqrt(dot(dx, dx)), sqrt(dy, dy)) * 0.5 * L) in lower_gradient_cube_map()
650 * float M, result; in lower_gradient_cube_map()
653 * result = -1.0 + 0.5 * log2(L * L * M); in lower_gradient_cube_map()
918 /* and move the result back into a single vecN: */ in saturate_src()
1016 nir_ssa_def *result = nir_vec4(b, in linearize_srgb_result() local
1022 nir_ssa_def_rewrite_uses_after(&tex->dest.ssa, result, in linearize_srgb_result()
1023 result->parent_instr); in linearize_srgb_result()
1027 * Lowers texture instructions from giving a vec4 result t
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dlower_instructions.cpp193 * result = sign_mantissa | in ldexp_to_arith()
196 * return csel(extracted_biased_exp >= 255, x, bitcast_u2f(result)); in ldexp_to_arith()
201 * floating-point type, the result is undefined." in ldexp_to_arith()
221 ir_variable *result = new(ir) ir_variable(uvec, "result", ir_var_temporary); in ldexp_to_arith() local
275 * an overflow should produce a +/-inf result. in ldexp_to_arith()
303 i.insert_before(result); in ldexp_to_arith()
305 i.insert_before(assign(result, in ldexp_to_arith()
311 i.insert_before(assign(result, in ldexp_to_arith()
322 ir->operands[2] = bitcast_u2f(result); in ldexp_to_arith()
[all...]
/third_party/lz4/lib/
H A Dlz4hc.c844 int result; in LZ4HC_compress_generic_internal() local
847 result = LZ4HC_compress_hashChain(ctx, in LZ4HC_compress_generic_internal()
852 result = LZ4HC_compress_optimal(ctx, in LZ4HC_compress_generic_internal()
858 if (result <= 0) ctx->dirty = 1; in LZ4HC_compress_generic_internal()
859 return result; in LZ4HC_compress_generic_internal()
/third_party/node/deps/v8/src/compiler/
H A Dload-elimination.cc649 base::Optional<LoadElimination::FieldInfo const*> result; in LookupField() local
663 if (!result.has_value()) { in LookupField()
664 result = info; in LookupField()
665 } else if (**result != *info) { in LookupField()
674 return *result; in LookupField()
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-ir.h664 inline ValueLocation& result();
688 // All non-control nodes with a result.
691 ValueLocation& result() { return result_; } in result() function in v8::internal::maglev::ValueNode
692 const ValueLocation& result() const { return result_; } in result() function in v8::internal::maglev::ValueNode
814 ValueLocation& Node::result() { in result() function in v8::internal::maglev::Node
816 return Cast<ValueNode>()->result(); in result()
/third_party/python/Lib/
H A Ddoctest.py239 every non-blank line in `s`, and return the result.
258 result = StringIO.getvalue(self)
262 if result and not result.endswith("\n"):
263 result += "\n"
264 return result
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A Dglslang_lex_autogen.cpp902 #define YY_INPUT(buf, result, max_size) result = string_input(buf, max_size, yyscanner);
1119 * is returned in "result".
1122 # define YY_INPUT(buf, result, max_size) \
1133 result = n; \
1138 while ((result = (int)fread(buf, 1, (yy_size_t)max_size, yyin)) == 0 && ferror(yyin)) \
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
H A Dpreprocessor_lex_autogen.cpp755 #define YY_INPUT(buf, result, maxSize) result = yyextra->input.read(buf, maxSize, &yylineno);
911 * is returned in "result".
914 # define YY_INPUT(buf, result, max_size) \
925 result = n; \
930 while ((result = (int)fread(buf, 1, (yy_size_t)max_size, yyin)) == 0 && ferror(yyin)) \
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_memory.cpp270 int result = 1; // Count the mask in MemoryAccessNumWords() local
271 if (mask & SpvMemoryAccessAlignedMask) ++result; in MemoryAccessNumWords()
272 if (mask & SpvMemoryAccessMakePointerAvailableKHRMask) ++result; in MemoryAccessNumWords()
273 if (mask & SpvMemoryAccessMakePointerVisibleKHRMask) ++result; in MemoryAccessNumWords()
274 return result; in MemoryAccessNumWords()
499 << "operand of the result type."; in ValidateVariable()
1209 // The result type must be OpTypePointer. in ValidateAccessChain()
1234 // The result pointer storage class and base pointer storage class must match. in ValidateAccessChain()
1240 << "The result pointer storage class and base " in ValidateAccessChain()
1269 // instruction. The second index will apply similarly to that result, an in ValidateAccessChain()
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/val/
H A Dval_memory_test.cpp352 "operand of the result type.")); in TEST_F()
3582 spv_result_t result = ValidateInstructions(target); in TEST_P() local
3586 EXPECT_EQ(SPV_ERROR_WRONG_VERSION, result); in TEST_P()
3590 EXPECT_EQ(SPV_ERROR_WRONG_VERSION, result); in TEST_P()
3594 EXPECT_EQ(SPV_SUCCESS, result); in TEST_P()
3596 EXPECT_EQ(SPV_ERROR_INVALID_ID, result); in TEST_P()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A Dglslang_lex.cpp1170 #define YY_INPUT(buf, result, max_size) \
1171 result = string_input(buf, max_size, yyscanner);
1418 * is returned in "result".
1421 #define YY_INPUT(buf,result,max_size) \
1433 result = n; \
1438 while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
H A DTokenizer.cpp968 #define YY_INPUT(buf, result, maxSize) \
969 result = yyextra->input.read(buf, maxSize, &yylineno);
1205 * is returned in "result".
1208 #define YY_INPUT(buf,result,max_size) \
1220 result = n; \
1225 while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_memory.cpp270 int result = 1; // Count the mask in MemoryAccessNumWords() local
271 if (mask & SpvMemoryAccessAlignedMask) ++result; in MemoryAccessNumWords()
272 if (mask & SpvMemoryAccessMakePointerAvailableKHRMask) ++result; in MemoryAccessNumWords()
273 if (mask & SpvMemoryAccessMakePointerVisibleKHRMask) ++result; in MemoryAccessNumWords()
274 return result; in MemoryAccessNumWords()
499 << "operand of the result type."; in ValidateVariable()
1209 // The result type must be OpTypePointer. in ValidateAccessChain()
1234 // The result pointer storage class and base pointer storage class must match. in ValidateAccessChain()
1240 << "The result pointer storage class and base " in ValidateAccessChain()
1269 // instruction. The second index will apply similarly to that result, an in ValidateAccessChain()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/
H A Dval_memory_test.cpp352 "operand of the result type.")); in TEST_F()
3582 spv_result_t result = ValidateInstructions(target); in TEST_P() local
3586 EXPECT_EQ(SPV_ERROR_WRONG_VERSION, result); in TEST_P()
3590 EXPECT_EQ(SPV_ERROR_WRONG_VERSION, result); in TEST_P()
3594 EXPECT_EQ(SPV_SUCCESS, result); in TEST_P()
3596 EXPECT_EQ(SPV_ERROR_INVALID_ID, result); in TEST_P()
/third_party/skia/tests/
H A DMatrixTest.cpp31 int result; in float_bits() local
32 memcpy(&result, &f, 4); in float_bits()
33 return result; in float_bits()
475 bool result = scalar_nearly_equal_relative(mat[SkMatrix::kMScaleX], in check_matrix_recomposition() local
483 return result; in check_matrix_recomposition()
/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc1170 bool result = true; in ParseInputFiles() local
1177 result = false; in ParseInputFiles()
1188 result = false; in ParseInputFiles()
1207 result = false; in ParseInputFiles()
1213 return result; in ParseInputFiles()

Completed in 93 milliseconds

1...<<391392393394395396397398399400>>...433