Home
last modified time | relevance | path

Searched refs:one (Results 276 - 300 of 2349) sorted by relevance

1...<<11121314151617181920>>...94

/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_blit.c254 nir_ssa_def *one = nir_imm_int(&b, 1); in vc4_get_yuv_fs() local
268 nir_ishl(&b, nir_iand(&b, x, one), two); in vc4_get_yuv_fs()
270 nir_ishl(&b, nir_iand(&b, x, nir_imm_int(&b, ~3)), one); in vc4_get_yuv_fs()
277 nir_ishl(&b, y, one), in vc4_get_yuv_fs()
278 nir_ushr(&b, nir_iand(&b, x, two), one)), in vc4_get_yuv_fs()
286 nir_load_ubo(&b, 1, 32, one, nir_iadd(&b, x_offset, y_offset), in vc4_get_yuv_fs()
384 /* Restore cb1 (util_blitter doesn't handle this one). */ in vc4_yuv_blit()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4_gs_visitor.cpp131 * to be interleaved, so one register contains two attribute slots. in setup_payload()
359 src_reg one(this, glsl_type::uint_type); in emit_control_data_bits()
360 inst = emit(MOV(dst_reg(one), brw_imm_ud(1u))); in emit_control_data_bits()
363 inst = emit(SHL(dst_reg(channel_mask), one, channel)); in emit_control_data_bits()
525 /* Cut bits use one bit per vertex. */ in gs_end_primitive()
550 src_reg one(this, glsl_type::uint_type); in gs_end_primitive()
551 emit(MOV(dst_reg(one), brw_imm_ud(1u))); in gs_end_primitive()
560 emit(SHL(dst_reg(mask), one, prev_count)); in gs_end_primitive()
652 * may be used to terminate the current strip and start a new one in brw_compile_gs()
685 * (minus one) in brw_compile_gs()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstr_cat_test.cc164 std::string one = in TEST() local
168 result = absl::StrCat("And a ", one.size(), " and a ", in TEST()
169 &result[2] - &result[0], " and a ", one, " 2 3 4", "!"); in TEST()
184 absl::StrCat("A hundred K and one and a half is ", absl::SixDigits(f)); in TEST()
185 EXPECT_EQ(result, "A hundred K and one and a half is 100002"); in TEST()
377 std::string one = in TEST() local
382 absl::StrAppend(&result, "And a ", one.size(), " and a ", in TEST()
383 &result[2] - &result[0], " and a ", one, " 2 3 4", "!"); in TEST()
/kernel/linux/linux-5.10/drivers/media/radio/
H A Dradio-rtrack2.c60 static void one(struct radio_isa_card *isa) in one() function
82 one(isa); in rtrack2_s_frequency()
/kernel/linux/linux-6.6/drivers/media/radio/
H A Dradio-rtrack2.c60 static void one(struct radio_isa_card *isa) in one() function
82 one(isa); in rtrack2_s_frequency()
/third_party/ffmpeg/libavcodec/
H A Dlibgsmenc.c78 int one = 1; in libgsm_encode_init() local
79 gsm_option(avctx->priv_data, GSM_OPT_WAV49, &one); in libgsm_encode_init()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_texcoord_replace.c95 nir_ssa_def *one = nir_imm_floatN_t(&b, 1.0, new_coord->bit_size); in nir_lower_texcoord_replace_impl() local
101 zero, one); in nir_lower_texcoord_replace_impl()
H A Dnir_lower_tex_shadow.c117 nir_ssa_def *one = nir_imm_float(b, 1.0); in nir_lower_tex_shadow_impl() local
120 nir_ssa_def *lookup[6] = {result, NULL, NULL, NULL, zero, one}; in nir_lower_tex_shadow_impl()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
H A D2-1.c19 * The new process is a copy of the original one -- with few exceptions.
52 char one; member
125 if ((mystruct.one != 1) || (mystruct.two != 2) || in main()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/converged/
H A DCompositorNativeWindow11.h34 HRESULT WindowsCompareStringOrdinal(HSTRING one, HSTRING two, int *result);
38 HRESULT WindowsDeleteString(HSTRING one);
/third_party/optimized-routines/string/arm/
H A Dmemset.S63 @ POSIX says that ch is cast to an unsigned char. A uxtb is one
64 @ byte and takes two cycles, where an AND is four bytes but one
/third_party/typescript/tests/baselines/reference/
H A DarrayAssignmentTest2.js25 * Type 2 of the following throws an error but shouldn't: () => void[], SomeClass[], and {one: 1}[].
27 * Type 2 of the following doesn't throw an error but should: {one: 1}, new() => SomeClass, SomeClass.
35 var o1 = {one : 1};
105 * Type 2 of the following throws an error but shouldn't: () => void[], SomeClass[], and {one: 1}[].
107 * Type 2 of the following doesn't throw an error but should: {one: 1}, new() => SomeClass, SomeClass.
115 var o1 = { one: 1 };
/third_party/json/tests/src/
H A Dunit-deserialization.cpp228 ss1 << R"(["foo",1,2,3,false,{"one":1}])"; variable
229 ss2 << R"(["foo",1,2,3,false,{"one":1}])"; variable
230 ss3 << R"(["foo",1,2,3,false,{"one":1}])"; variable
233 CHECK(j == json({"foo", 1, 2, 3, false, {{"one", 1}}}));
242 "start_object()", "key(one)", "number_unsigned(1)",
249 const auto* s = R"(["foo",1,2,3,false,{"one":1}])";
252 CHECK(j == json({"foo", 1, 2, 3, false, {{"one", 1}}}));
261 "start_object()", "key(one)", "number_unsigned(1)",
268 json::string_t s = R"(["foo",1,2,3,false,{"one":1}])";
271 CHECK(j == json({"foo", 1, 2, 3, false, {{"one",
288 ss << R"(["foo",1,2,3,false,{"one":1}])"; global() variable
297 ss << R"(["foo",1,2,3,false,{"one":1}])"; global() variable
317 ss1 << R"(["foo",1,2,3,false,{"one":1})"; global() variable
318 ss3 << R"(["foo",1,2,3,false,{"one":1})"; global() variable
319 ss4 << R"(["foo",1,2,3,false,{"one":1})"; global() variable
320 ss5 << R"(["foo",1,2,3,false,{"one":1})"; global() variable
368 ss << R"(["foo",1,2,3,false,{"one":1})"; global() variable
376 ss << R"(["foo",1,2,3,false,{"one":1})"; global() variable
[all...]
/third_party/vulkan-loader/tests/
H A Dloader_unknown_ext_tests.cpp1081 using one = HelperTypedef<FunctionOne>;
1163 Functions::one::physical_device::add_to_driver(unknown_funcs.at(1), physical_device); in TEST()
1164 Functions::one::physical_device::add_to_layer(unknown_funcs.at(1), layer_0, D<0>{}); in TEST()
1184 Functions::one::device::add_to_driver(unknown_funcs.at(6), physical_device); in TEST()
1199 Functions::one::device::add_to_layer(unknown_funcs.at(11), layer_0, D<11>{}); in TEST()
1200 Functions::one::device::add_implementation_to_layer(unknown_funcs.at(11), layer_1); in TEST()
1211 unknown_funcs.at(1).check<Functions::one::physical_device>(env.vulkan_functions, inst.inst, phys_dev); in TEST()
1218 unknown_funcs.at(6).check<Functions::one::device>(env.vulkan_functions, inst.inst, dev.dev); in TEST()
1223 unknown_funcs.at(11).check<Functions::one::device>(env.vulkan_functions, inst.inst, dev.dev); in TEST()
1226 unknown_funcs.at(6).check<Functions::one in TEST()
[all...]
/third_party/node/deps/v8/src/objects/
H A Dstring.cc235 // sentinel maps: one for each InstanceType that may be migrated from. in MigrateStringMapUnderLockIfNeeded()
910 // common case of sequential one-byte right child. in WriteToFlat()
963 // Include one character beyond the end of script. The rewriter uses that in CalculateLineEndsImpl()
1024 // Fast check: if at least one ThinString is involved, dereference it/them in SlowEquals()
1075 bool String::SlowEquals(Isolate* isolate, Handle<String> one, in SlowEquals() argument
1078 const int one_length = one->length(); in SlowEquals()
1082 // Fast check: if at least one ThinString is involved, dereference it/them in SlowEquals()
1084 if (one->IsThinString() || two->IsThinString()) { in SlowEquals()
1085 if (one->IsThinString()) { in SlowEquals()
1086 one in SlowEquals()
[all...]
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A D097-paste-with-non-function-macro.c1 #define PASTE_MACRO one ## token
H A D040-token-pasting.c2 paste(one , token)
H A D019-define-func-1-arg-multi.c2 foo(this is more than one word)
/third_party/rust/crates/proc-macro-error/tests/ui/
H A Doption_ext.rs4 option_ext!(one, two);
H A Dexplicit_span_range.rs4 explicit_span_range!(one, two, three, four);
H A Dchildren_messages.rs4 children_messages!(one, two, three, four);
/kernel/linux/linux-6.6/lib/
H A Dmemcpy_kunit.c22 u32 one; member
40 #define compare(name, one, two) do { \
41 BUILD_BUG_ON(sizeof(one) != sizeof(two)); \
42 for (size_t i = 0; i < sizeof(one); i++) { \
43 KUNIT_EXPECT_EQ_MSG(test, one.data[i], two.data[i], \
45 __LINE__, #one, i, one.data[i], #two, i, two.data[i]); \
/third_party/mesa3d/src/compiler/glsl/
H A Dopt_algebraic.cpp239 * base types matched, and at least one of the operands of the 2 in reassociate_operands()
299 /* When eliminating an expression and just returning one of its operands,
552 /* Multiply found on one of the operands. Now check for an in handle_expression()
562 /* Inner addition found on one of the operands. Now check for in handle_expression()
563 * one of the operands of the inner addition to be the negative in handle_expression()
979 ir_constant *one; in handle_expression() local
983 one = new(mem_ctx) ir_constant(float16_t::one(), op2_components); in handle_expression()
986 one = new(mem_ctx) ir_constant(1.0f, op2_components); in handle_expression()
989 one in handle_expression()
[all...]
/third_party/node/deps/v8/src/codegen/s390/
H A Dassembler-s390.cc206 uint64_t one = static_cast<uint64_t>(1); in ProbeImpl() local
208 if (facilities[0] & (one << (63 - 45))) { in ProbeImpl()
212 if (facilities[0] & (one << (63 - 34))) { in ProbeImpl()
216 if (facilities[0] & (one << (63 - 37))) { in ProbeImpl()
220 if (facilities[2] & (one << (63 - (129 - 128))) && in ProbeImpl()
225 if (facilities[2] & (one << (63 - (135 - 128))) && in ProbeImpl()
230 if (facilities[2] & (one << (63 - (148 - 128))) && in ProbeImpl()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c238 value = lp_build_min(&bld->bld_base.base, value, bld->bld_base.base.one); in lp_emit_store_aos()
425 * Emit LLVM for one TGSI instruction.
529 dst0 = lp_build_select(&bld->bld_base.base, tmp0, bld->bld_base.base.one, bld->bld_base.base.zero); in lp_emit_instruction_aos()
537 dst0 = lp_build_select(&bld->bld_base.base, tmp0, bld->bld_base.base.one, bld->bld_base.base.zero); in lp_emit_instruction_aos()
631 dst0 = lp_build_select(&bld->bld_base.base, tmp0, bld->bld_base.base.one, bld->bld_base.base.zero); in lp_emit_instruction_aos()
638 dst0 = lp_build_select(&bld->bld_base.base, tmp0, bld->bld_base.base.one, bld->bld_base.base.zero); in lp_emit_instruction_aos()
651 dst0 = lp_build_select(&bld->bld_base.base, tmp0, bld->bld_base.base.one, bld->bld_base.base.zero); in lp_emit_instruction_aos()
658 dst0 = lp_build_select(&bld->bld_base.base, tmp0, bld->bld_base.base.one, bld->bld_base.base.zero); in lp_emit_instruction_aos()

Completed in 19 milliseconds

1...<<11121314151617181920>>...94