/device/soc/hisilicon/common/hal/middleware/ffmpeg_adapt/ |
H A D | configure_llvm | 4153 # we need to build at least one lib type 4156 At least one library type must be built. 6999 # enabled, one would also have to either add attribute_align_arg on 7172 die "ERROR: Only one thread type must be selected." ||
|
/third_party/ffmpeg/ |
H A D | configure | 4243 # we need to build at least one lib type 4246 At least one library type must be built. 7195 # enabled, one would also have to either add attribute_align_arg on 7373 die "ERROR: Only one thread type must be selected." ||
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | numfmtst.cpp | 1881 UnicodeString one((UChar32)0x10001); in TestSurrogateSupport() 1885 custom.setSymbol(DecimalFormatSymbols::kOneDigitSymbol, one); in TestSurrogateSupport() 2425 * version of this test on Java, since Java has only one method.) 6072 // Following are missing one last char in the currency name in TestParseCurrencyInUCurr() 7100 /* one that we initially thought. */ in TestAvailableNumberingSystems() 8411 MessageFormat fmt("{0, plural, one {I have # friend.} other {I have # friends.}}", status); in TestBenchmark() 8413 Formattable one(1.0); in TestBenchmark() 8418 fmt.format(&one, 1, append, fpos, status); in TestBenchmark() 9301 info.setCurrencyPluralPattern(u"one", u"0 qwerty", errorCode); in Test11626_CustomizeCurrencyPluralInfo() 9309 assertEquals("Plural one", in Test11626_CustomizeCurrencyPluralInfo() [all...] |
/third_party/mesa3d/src/microsoft/compiler/ |
H A D | nir_to_dxil.c | 2445 const struct dxil_value *one = dxil_module_get_float_const(&ctx->mod, 1.0f); in emit_alu() local 2446 return emit_binop(ctx, alu, DXIL_BINOP_SDIV, one, src[0]); in emit_alu() 2819 /* This source might be one of: in get_resource_handle() 3759 * scalar when the image only has one component. in emit_image_load() 5207 * value has a different type then the one expected by the phi node. in prepare_phi_values()
|
/third_party/node/deps/v8/src/compiler/backend/x64/ |
H A D | code-generator-x64.cc | 82 static ScaleFactor ScaleFor(AddressingMode one, AddressingMode mode) { in ScaleFor() argument 87 int scale = static_cast<int>(mode - one); in ScaleFor() 1191 // encode one byte shorter. in AssembleArchInstruction() 1398 // claim there is a stack frame, without generating one. in AssembleArchInstruction() 3825 if (instr->InputCount() == 5) { // only one input operand in AssembleArchInstruction() 4823 // Functions with JS linkage have at least one parameter (the receiver). in AssembleReturn()
|
/third_party/node/deps/v8/src/torque/ |
H A D | implementation-visitor.cc | 921 VisitResult one = {TypeOracle::GetConstInt31Type(), "1"}; in Visit() local 923 args.parameters = {current_value, one}; in Visit() 1198 // str might include indentation, squash multiple space characters into one. in FormatAssertSource() 2827 "Builtin with stub linkage is expected to return one or two " in GenerateCall() 2834 "Builtin with JS linkage is expected to return one value but " in GenerateCall() 3886 bool all_single_bits = true; // Track whether every field is one bit. in GenerateBitFields() 3902 // If every field is one bit, we can also generate a convenient enum. in GenerateBitFields() 5288 // verifiers, so skip to the nearest super class that has one. in GenerateClassVerifiers()
|
/third_party/node/deps/undici/ |
H A D | undici.js | 1804 const plural = context.types.length === 1 ? "" : " one of"; 2000 message: `Expected ${dictionary} to be one of: Null, Undefined, Object.` 2023 message: `${value} is not an accepted type. Expected one of ${options.allowedValues.join(", ")}.` 5720 // Returns response’s URL, if it has one; otherwise the empty string. 11835 failWebsocketConnection(ws, "Received different permessage-deflate than the one set.");
|
/third_party/python/Lib/test/ |
H A D | datetimetester.py | 842 # Rounding due to contributions from more than one field. 1382 # Adds one test case for every day of the specified weeks 1461 self.assertRaises(TypeError, t.strftime, "one", "two") # too many args 1976 # Take a valid base tuple and transform it to contain one argument 2483 one = fts(1e-6) 2506 self.assertEqual(t, one) 3972 # Try one without a tzinfo. 3981 # Try one with a tzinfo. 4070 # Ensure we can add one. 4423 # Try one withou [all...] |
H A D | test_descr.py | 2430 d = dict({'one':1, 'two':2}) 2431 self.assertEqual(d, dict(one=1, two=2)) 2433 self.assertEqual(d, dict({"one": 1}, two=2)) 2434 self.assertEqual(d, dict([("two", 2)], one=1)) 2435 self.assertEqual(d, dict([("one", 100), ("two", 200)], **d)) 2447 # one seemed better as a ValueError than a TypeError. 2996 ## a maximum of one greater than the number of lines in the file. 3087 d = {cistr('one'): 1, cistr('two'): 2, cistr('tHree'): 3} 3088 self.assertEqual(d[cistr('one')], 1) 4139 # with an exception set (which was possible at one poin [all...] |
/third_party/node/deps/v8/src/execution/s390/ |
H A D | simulator-s390.cc | 66 // Set or delete breakpoint (there can be only one). 276 // Execute the one instruction we broke at with breakpoints disabled. in Debug() 568 PrintF(" step one/num instruction(s) (alias 'si')\n"); in Debug() 645 bool Simulator::ICacheMatch(void* one, void* two) { in ICacheMatch() argument 646 DCHECK_EQ(reinterpret_cast<intptr_t>(one) & CachePage::kPageMask, 0); in ICacheMatch() 648 return one == two; in ICacheMatch() 1763 // - one double argument and zero or one integer arguments. 2019 double dval0, dval1; // one or two double parameters in SoftwareInterrupt() 2020 intptr_t ival; // zero or one intege in SoftwareInterrupt() [all...] |
/third_party/vixl/src/aarch64/ |
H A D | simulator-aarch64.cc | 1755 // We want to assume that we'll access at least one lane. in Simulator() 3824 // Check for interceptions to the target address, if one is found, call it. in Simulator() 4662 // `write` will normally return after one invocation, but it is allowed to in Simulator() 4690 // write in one invocation, but cannot guarantee that, so we wrap it in a in Simulator() 7048 // These instructions all use a one bit size field, except XTN, SQXTUN, in Simulator() 8797 // These instructions all use a one bit size field, except SQXTUN, SQXTN in Simulator() 8862 // size S as size<0>=1. There's only one case, so we ignore the form. in Simulator() 10257 uint64_t one = FPToRawbitsWithSize(LaneSizeInBitsFromFormat(vform), 1.0); in Simulator() local 10259 dup_immediate(vform, add_sub_imm, i1 ? one : half); in Simulator() 10260 dup_immediate(vform, min_max_imm, i1 ? one in Simulator() [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | all.sh | 70 # The bulk of the code is organized into functions that follow one of the 249 By default, run all tests. With one or more COMPONENT, run only those. 666 # The same command failed twice in a row, but this time one level 1109 # No PSA equivalent - we should probably have one in the future. 1500 # To save time, only test one protocol version, since this part of 1527 # To save time, only test one protocol version, since this part of 1854 # Disable AEAD (controlled by the presence of one of GCM_C, CCM_C, CHACHAPOLY_C 1860 # Disable CBC-legacy (controlled by MBEDTLS_CIPHER_MODE_CBC plus at least one block cipher (AES, ARIA, Camellia, DES)) 1882 # Disable AEAD (controlled by the presence of one of GCM_C, CCM_C, CHACHAPOLY_C) 1888 # Disable CBC-legacy (controlled by MBEDTLS_CIPHER_MODE_CBC plus at least one bloc [all...] |
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
H A D | aesv8-armx.pl | 33 # interleaving. But which factor to use? There is optimal one for 407 # as one iteration, every loop the left size lsize -= 5*16. 408 # If 5*16 > lsize >= 3*16 bytes, take 3 blocks as one iteration, 412 # There is one special case, if the original input data size dsize 414 # performance: one independent code block without LR, FP load and 2208 # as one iteration, every loop the left size lsize -= 5*16. 2212 # There is one special case, if the original input data size dsize 2214 # performance: one independent code block without LR, FP load and 2569 // The iv for first block of one iteration
|
/third_party/node/deps/openssl/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-sparcv9.pl | 1656 ! borrow, only with 32-bit one. For this reason we "decompose" 64-bit 3025 # so that one can compile the module without having to specify VIS
|
/third_party/openssl/crypto/aes/asm/ |
H A D | aesv8-armx.pl | 33 # interleaving. But which factor to use? There is optimal one for 423 # as one iteration, every loop the left size lsize -= 5*16. 424 # If 5*16 > lsize >= 3*16 bytes, take 3 blocks as one iteration, 428 # There is one special case, if the original input data size dsize 430 # performance: one independent code block without LR, FP load and 2224 # as one iteration, every loop the left size lsize -= 5*16. 2228 # There is one special case, if the original input data size dsize 2230 # performance: one independent code block without LR, FP load and 2585 // The iv for first block of one iteration
|
/third_party/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-sparcv9.pl | 1656 ! borrow, only with 32-bit one. For this reason we "decompose" 64-bit 3025 # so that one can compile the module without having to specify VIS
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | dpp.c | 2618 u8 one = 1; in dpp_gen_i_auth() local 2674 addr[num_elem] = &one; in dpp_gen_i_auth() 7231 "DPP: No PKEX code identifier received, but expected one"); in dpp_pkex_identifier_match() 7237 "DPP: PKEX code identifier received, but not expecting one"); in dpp_pkex_identifier_match() 9086 "DPP: Too many ongoing Relay connections to the Controller - cannot start a new one"); in dpp_relay_new_conn() 9339 "Already in DPP authentication exchange - ignore new one"); in dpp_controller_rx_auth_req()
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 6034 // Use static method for one-shot changes 7189 // Run and analyse one benchmark 7819 auto n = static_cast<int>(last - first); // seriously, one can't use integral types without hell in C++ 7972 // raise() called from it, i.e. one stack frame below. 8247 // If you find your debugger stopping you here then go one level up on the 9200 static_assert( UnaryLambdaTraits<L>::isValid, "Supplied lambda must take exactly one argument" ); 9212 static_assert( UnaryLambdaTraits<L>::isValid, "Supplied lambda must take exactly one argument" ); 9773 return ParserResult::runtimeError( "colour mode must be one of: auto, yes or no. '" + useColour + "' not recognised" ); 9787 return ParserResult::runtimeError( "keypress argument must be one of: never, start, exit or both. '" + keypress + "' not recognised" ); 10925 assert(!altStackMem && "Cannot initialize POSIX signal handler when one alread [all...] |
/third_party/eudev/ |
H A D | ltmain.sh | 252 # Best one so far, save it but keep looking for a better one 288 # Best one so far, save it but keep looking for a better one 343 # that contains forward slashes, into one that contains 405 # the _XPG environment variable is not equal to 1 (one), the special 872 # try to create one of the directories concurrently. Don't 976 # there is one (and only one) here. 1008 # Restore leading double-slash if one wa [all...] |
/third_party/curl/ |
H A D | ltmain.sh | 79 # <http://www.gnu.org/licenses/gpl-2.0.html>. You must apply one of 266 # Best one so far, save it but keep looking for a better one 302 # Best one so far, save it but keep looking for a better one 357 # that contains forward slashes, into one that contains 448 # the _XPG environment variable is not equal to 1 (one), the special 903 # try to create one of the directories concurrently. Don't 1007 # there is one (and only one) her [all...] |
/third_party/lame/ |
H A D | ltmain.sh | 252 # Best one so far, save it but keep looking for a better one 288 # Best one so far, save it but keep looking for a better one 343 # that contains forward slashes, into one that contains 405 # the _XPG environment variable is not equal to 1 (one), the special 872 # try to create one of the directories concurrently. Don't 976 # there is one (and only one) here. 1008 # Restore leading double-slash if one wa [all...] |
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/sha/ |
H A D | sha256-armv4.S | 36 @ Add NEON implementation. On Cortex A8 it was measured to process one
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/sha/ |
H A D | sha256-armv4.S | 36 @ Add NEON implementation. On Cortex A8 it was measured to process one
|
/third_party/node/deps/cares/ |
H A D | ltmain.sh | 79 # <http://www.gnu.org/licenses/gpl-2.0.html>. You must apply one of 266 # Best one so far, save it but keep looking for a better one 302 # Best one so far, save it but keep looking for a better one 357 # that contains forward slashes, into one that contains 448 # the _XPG environment variable is not equal to 1 (one), the special 903 # try to create one of the directories concurrently. Don't 1007 # there is one (and only one) her [all...] |
/third_party/node/deps/cares/config/ |
H A D | ltmain.sh | 79 # <http://www.gnu.org/licenses/gpl-2.0.html>. You must apply one of 266 # Best one so far, save it but keep looking for a better one 302 # Best one so far, save it but keep looking for a better one 357 # that contains forward slashes, into one that contains 448 # the _XPG environment variable is not equal to 1 (one), the special 903 # try to create one of the directories concurrently. Don't 1007 # there is one (and only one) her [all...] |