/third_party/node/deps/v8/src/compiler/ |
H A D | basic-block-instrumentor.cc | 96 Node* one = graph->NewNode(common.Int32Constant(1)); in Instrument() local 117 Node* inc = graph->NewNode(machine.Int32Add(), load, one); in Instrument() 134 counters_array, zero, one, offset_to_counter, in Instrument()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
H A D | vertexconversion.h | 128 static T one() { return static_cast<T>(1); } in one() function 136 static T one() { return std::numeric_limits<T>::max(); } in one() function 169 copyComponent(out, ein, 3, static_cast<OutputType>(DefaultValueRule::one())); in convertArray()
|
/third_party/toybox/lib/ |
H A D | net.c | 43 int fd = -1, one = 1; in xconnbind() local 49 xsetsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)); in xconnbind() 109 // Poll loop copying data from each fd to the other one. in pollinate()
|
/third_party/json/include/nlohmann/detail/conversions/ |
H A D | to_chars.hpp | 340 // If c were an exact power of ten, i.e. c = 10^k, one may determine k as in get_cached_power_for_binary_exponent() 618 const diyfp one(std::uint64_t{1} << -M_plus.e, M_plus.e); in grisu2_digit_gen() 620 auto p1 = static_cast<std::uint32_t>(M_plus.f >> -one.e); // p1 = f div 2^-e (Since -e >= 32, p1 fits into a 32-bit int.) in grisu2_digit_gen() 621 std::uint64_t p2 = M_plus.f & (one.f - 1); // p2 = f mod 2^-e in grisu2_digit_gen() 683 const std::uint64_t rest = (std::uint64_t{p1} << -one.e) + p2; in grisu2_digit_gen() 699 const std::uint64_t ten_n = std::uint64_t{pow10} << -one.e; in grisu2_digit_gen() 763 const std::uint64_t d = p2 >> -one.e; // d = (10 * p2) div 2^-e in grisu2_digit_gen() 764 const std::uint64_t r = p2 & (one.f - 1); // r = (10 * p2) mod 2^-e in grisu2_digit_gen() 804 const std::uint64_t ten_m = one.f; in grisu2_digit_gen()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | declarationsWithRecursiveInternalTypesProduceUniqueTypeParams.js | 32 let p1 = testRecFun({ one: '1' }) 33 void p1.result.one; 35 void p2.result.one; 38 void p3.result.one; 83 var p1 = (0, exports.testRecFun)({ one: '1' });
84 void p1.result.one;
86 void p2.result.one;
89 void p3.result.one;
|
H A D | noAsConstNameLookup.js | 27 let one = 1 as const; 67 let one = 1;
|
H A D | unusedLocalsAndObjectSpread.js | 4 function one() { function 45 function one() {
|
/third_party/typescript/tests/ts_extra_tests/tool/ |
H A D | test_helper.py | 110 for one in disable_list: 111 if file_path.endswith(one.strip()):
|
/third_party/node/deps/openssl/openssl/crypto/ec/asm/ |
H A D | ecp_nistp521-ppc64.pl | 151 my ($zero, $one) = ("r8", "r9"); 239 li $one,1 240 mtvsrdd $t1,$one,$zero 333 li $one,1 334 mtvsrdd $t1,$one,$zero 388 mtvsrdd $t1,$one,$zero
|
/third_party/openssl/crypto/ec/asm/ |
H A D | ecp_nistp521-ppc64.pl | 151 my ($zero, $one) = ("r8", "r9"); 239 li $one,1 240 mtvsrdd $t1,$one,$zero 333 li $one,1 334 mtvsrdd $t1,$one,$zero 388 mtvsrdd $t1,$one,$zero
|
/third_party/python/Lib/unittest/test/testmock/ |
H A D | testhelpers.py | 15 def one(self, a, b): pass member in SomeClass 257 self.assertEqual(call('foo', 'bar', one=3, two=4), 258 ('', ('foo', 'bar'), {'one': 3, 'two': 4})) 383 mock.one(1, 2) 384 mock.one.assert_called_with(1, 2) 386 mock.one.assert_called_with, 3, 4) 387 self.assertRaises(TypeError, mock.one, 1) 579 mock.one(1, 2) 583 expected = [call.one(1, 2), call.two(), call.three(3)] 586 mock.attr.one( [all...] |
/third_party/python/Lib/test/ |
H A D | test_yield_from.py | 886 def one(): function 897 g1 = one() 900 g1 = one() 911 def one(): function 934 g1 = one() 953 def one(): function 955 g1 = one()
|
/third_party/mesa3d/src/gallium/targets/libgl-gdi/ |
H A D | stw_wgl.c | 227 FIXED one, minus_one, zero; in wglUseFontBitmapsW() local 231 one.value = 1; in wglUseFontBitmapsW() 232 one.fract = 0; in wglUseFontBitmapsW() 238 tra.eM11 = one; in wglUseFontBitmapsW()
|
/third_party/node/deps/openssl/openssl/crypto/ocsp/ |
H A D | ocsp_prn.c | 92 OCSP_ONEREQ *one = NULL; in OCSP_REQUEST_print() local 109 one = sk_OCSP_ONEREQ_value(inf->requestList, i); in OCSP_REQUEST_print() 110 cid = one->reqCert; in OCSP_REQUEST_print() 114 one->singleRequestExtensions, flags, 8)) in OCSP_REQUEST_print()
|
/third_party/rust/crates/bindgen/bindgen/codegen/ |
H A D | helpers.rs | 23 .map(|one| TokenStream::from_str(one).expect("repr to be valid")); in repr_list() 33 .map(|one| TokenStream::from_str(one).expect("derive to be valid")); in derives() 195 // Also, maybe this one shouldn't be the default? in float_kind_rust_type()
|
/third_party/openssl/crypto/ocsp/ |
H A D | ocsp_prn.c | 92 OCSP_ONEREQ *one = NULL; in OCSP_REQUEST_print() local 109 one = sk_OCSP_ONEREQ_value(inf->requestList, i); in OCSP_REQUEST_print() 110 cid = one->reqCert; in OCSP_REQUEST_print() 114 one->singleRequestExtensions, flags, 8)) in OCSP_REQUEST_print()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/converged/ |
H A D | CompositorNativeWindow11.cpp | 412 HRESULT RoHelper::WindowsCompareStringOrdinal(HSTRING one, HSTRING two, int *result) in WindowsCompareStringOrdinal() argument 418 return mFpWindowsCompareStringOrdinal(one, two, result); in WindowsCompareStringOrdinal() 432 HRESULT RoHelper::WindowsDeleteString(HSTRING one) in WindowsDeleteString() argument 438 return mFpWindowsDeleteString(one); in WindowsDeleteString()
|
/third_party/rust/crates/regex/src/literal/ |
H A D | imp.rs | 245 LiteralIter::Single(ref mut one) => { in next() 246 if one.is_empty() { in next() 249 let next = &one[..]; in next() 250 *one = &[]; in next()
|
/third_party/mesa3d/src/compiler/spirv/ |
H A D | vtn_glsl450.c | 172 nir_ssa_def *one = nir_imm_floatN_t(b, 1.0f, x->bit_size); in build_asin() local 185 nir_fsqrt(b, nir_fsub(b, one, abs_x)), in build_asin() 201 nir_ssa_def *q = nir_ffma_imm1(b, x2, qS1, one); in build_asin() 475 nir_ssa_def *one = NIR_IMM_FP(nb, 1.0); in handle_glsl450_alu() local 493 nir_a_minus_bc(nb, one, eta, in handle_glsl450_alu() 494 nir_fmul(nb, eta, nir_a_minus_bc(nb, one, n_dot_i, n_dot_i))); in handle_glsl450_alu() 576 nir_ssa_def *one = nir_imm_floatN_t(nb, 1.0, src[0]->bit_size); in handle_glsl450_alu() local 578 nir_fmul_imm(nb, nir_flog(nb, nir_fdiv(nb, nir_fadd(nb, src[0], one), in handle_glsl450_alu() 579 nir_fsub(nb, one, src[0]))), in handle_glsl450_alu()
|
/third_party/lzma/Asm/x86/ |
H A D | AesOpt.asm | 589 one equ @CatStr(xmm, %(ways_start_reg + ways + 1))
define 596 paddq iv, one
616 movd one, koffs_x
646 paddq iv, one
683 vmovd one, koffs_x
685 vpaddq one, one, one
686 AVX__vinserti128_TO_HIGH one_ymm, one
|
/foundation/arkui/napi/sample/native_module_demo/ |
H A D | demo_javascript_class.cpp | 36 napi_value one = nullptr; in DemoJavascriptClassInit() local 41 napi_create_int32(env, TestEnum::ONE, &one); in DemoJavascriptClassInit() 51 DECLARE_NAPI_STATIC_PROPERTY("ONE", one), in DemoJavascriptClassInit()
|
/foundation/multimodalinput/input/service/timer_manager/src/ |
H A D | timer_manager.cpp | 85 uint64_t one = 1; in TakeNextTimerId() local 88 timerSlot |= (one << timer->id); in TakeNextTimerId() 92 if ((timerSlot & (one << i)) == 0) { in TakeNextTimerId()
|
/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A D | deDefs.hpp | 58 template<typename T> inline T rightSetMask (T n) { DE_ASSERT(n < T(sizeof(T) * 8)); T one = T(1); return T((one << n) - one); } in rightSetMask()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_blend.c | 87 nir_ssa_def *one = nir_imm_floatN_t(b, 1.0, src->bit_size); in nir_alpha_saturate() local 88 nir_ssa_def *Adsti = nir_fsub(b, one, Adst); in nir_alpha_saturate() 90 return (chan < 3) ? nir_fmin(b, Asrc, Adsti) : one; in nir_alpha_saturate() 320 nir_ssa_def *one = nir_imm_floatN_t(b, 1.0, dst->bit_size); in nir_blend() local 325 desc->nr_channels > 3 ? nir_channel(b, dst, 3) : one); in nir_blend()
|
/third_party/node/src/ |
H A D | node_internals.h | 285 #define TRACING_CATEGORY_NODE1(one) \ 287 TRACING_CATEGORY_NODE "." #one 288 #define TRACING_CATEGORY_NODE2(one, two) \ 290 TRACING_CATEGORY_NODE "." #one "," \ 291 TRACING_CATEGORY_NODE "." #one "." #two
|