Home
last modified time | relevance | path

Searched refs:one (Results 301 - 325 of 2349) sorted by relevance

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

/third_party/pulseaudio/src/modules/rtp/
H A Dmodule-rtp-recv.c402 int af, fd = -1, r, one; in mcast_socket() local
416 one = 1; in mcast_socket()
417 if (setsockopt(fd, SOL_SOCKET, SO_TIMESTAMP, &one, sizeof(one)) < 0) { in mcast_socket()
426 one = 1; in mcast_socket()
427 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0) { in mcast_socket()
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A D020-define-func-2-arg-multi.c2 foo(one fish, blue fish)
H A D096-paste-twice.c2 paste_twice(just, one, token)
/kernel/linux/linux-5.10/arch/s390/include/uapi/asm/
H A Dschid.h12 __u32 one : 1; member
/third_party/libabigail/tests/data/test-annotate/
H A Dtest-anonymous-members-0.cc18 enum {one, two} e1; enumerator
/kernel/linux/linux-6.6/arch/mips/sibyte/common/
H A Dcfe.c74 static const int one = 1; in cfe_linux_halt() local
76 cfe_linux_exit((void *)&one); in cfe_linux_halt()
/kernel/linux/linux-6.6/tools/testing/selftests/rcutorture/bin/
H A Dkvm-again.sh90 echo Only one of --datestamp or --rundir may be specified
146 echo Only one of --datestamp or --rundir may be specified
/third_party/gptfdisk/
H A Dattributes.cc185 const uint64_t one = 1; in OperateOnAttributes() local
186 attributeBitMask = one << bitNum; in OperateOnAttributes()
/third_party/typescript/tests/baselines/reference/
H A DarrayAssignmentTest1.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};
131 * Type 2 of the following throws an error but shouldn't: () => void[], SomeClass[], and {one: 1}[].
133 * Type 2 of the following doesn't throw an error but should: {one: 1}, new() => SomeClass, SomeClass.
141 var o1 = { one: 1 };
H A DnumericIndexerConstraint2.js4 var a: { one: number; };
/third_party/python/Lib/test/
H A D_testcppext.cpp75 PyObject *one = PyTuple_GET_ITEM(const_obj, 0); in Py_UNUSED() local
76 assert(PyLong_AsLong(one) == 1); in Py_UNUSED()
201 // When adding a new one, add a call there.
/third_party/ffmpeg/tests/fate/
H A Dfilter-audio.mak274 FATE_FILTER_CHANNELMAP += fate-filter-channelmap-one-int
275 fate-filter-channelmap-one-int: tests/data/filtergraphs/channelmap_one_int
276 fate-filter-channelmap-one-int: SRC = $(TARGET_PATH)/tests/data/asynth-44100-6.wav
277 fate-filter-channelmap-one-int: tests/data/asynth-44100-6.wav
278 fate-filter-channelmap-one-int: CMD = md5 -auto_conversion_filters -i $(SRC) -filter_complex_script $(TARGET_PATH)/tests/data/filtergraphs/channelmap_one_int -f wav -fflags +bitexact
279 fate-filter-channelmap-one-int: CMP = oneline
280 fate-filter-channelmap-one-int: REF = 8cfe553d65ed4696756d8c1b824fcdd3
282 FATE_FILTER_CHANNELMAP += fate-filter-channelmap-one-str
283 fate-filter-channelmap-one-str: tests/data/filtergraphs/channelmap_one_str
284 fate-filter-channelmap-one
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/
H A Dsockmap_helpers.h365 int err, one = 1; in enable_reuseport() local
367 err = xsetsockopt(s, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one)); in enable_reuseport()
H A Dsk_lookup.c149 const int one = 1; in make_server() local
158 err = setsockopt(fd, SOL_IP, IP_RECVORIGDSTADDR, &one, in make_server()
159 sizeof(one)); in make_server()
167 err = setsockopt(fd, SOL_IPV6, IPV6_RECVORIGDSTADDR, &one, in make_server()
168 sizeof(one)); in make_server()
176 err = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, in make_server()
177 sizeof(one)); in make_server()
185 err = setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, in make_server()
186 sizeof(one)); in make_server()
207 /* Late attach reuseport prog so we can have one ini in make_server()
[all...]
/third_party/libunwind/libunwind/doc/
H A Dlibunwind-setjmp.tex29 library is that setting up a non-local goto via one of the
31 need to be saved in the jump-buffer (plus one call to
33 other hand, executing a non-local goto by calling one of the
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_task_shader.c114 nir_ssa_def *one = nir_imm_int(b, 1); in append_launch_mesh_workgroups_to_nv_task() local
115 nir_ssa_def *dispatch_3d = nir_vec3(b, task_count, one, one); in append_launch_mesh_workgroups_to_nv_task()
365 * - Ensures that task shaders always have at least one
397 * executes a launch_mesh_workgroups, let's add one at the end. in nir_lower_task_shader()
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dupsampling_sse2.c46 const __m128i tmp4 = _mm_and_si128(tmp3, one); /* & 1 -> lsb_correction */ \
62 const __m128i one = _mm_set1_epi8(1); \
77 const __m128i t3 = _mm_and_si128(t2, one); /* (a^d) | (b^c) | (s^t) & 1 */ \
H A Dupsampling_sse41.c48 const __m128i tmp4 = _mm_and_si128(tmp3, one); /* & 1 -> lsb_correction */ \
64 const __m128i one = _mm_set1_epi8(1); \
79 const __m128i t3 = _mm_and_si128(t2, one); /* (a^d) | (b^c) | (s^t) & 1 */ \
/third_party/python/PCbuild/
H A Dfind_python.bat32 @rem If there is an active virtual env, use that one
38 @rem If we have Python in externals, use that one
44 @rem If py.exe finds a recent enough version, use that one
/kernel/linux/linux-5.10/arch/s390/include/asm/
H A Dschid.h13 schid->one = 1; in init_subchannel_id()
/kernel/linux/linux-6.6/arch/s390/include/asm/
H A Dschid.h13 schid->one = 1; in init_subchannel_id()
/kernel/linux/linux-6.6/arch/s390/include/uapi/asm/
H A Dschid.h14 __u32 one : 1; member
/third_party/googletest/googletest/include/gtest/hwext/
H A Dgtest-utils.h15 bool compareStringsByIgnoreCase(const char* one, const char* two);
/third_party/rust/crates/clap/examples/tutorial_builder/
H A D02_crate.rs7 .arg(arg!(--one <VALUE>).required(true)) in main()
15 "one: {:?}", in main()
16 matches.get_one::<String>("one").expect("required") in main()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/
H A Dsk_lookup.c150 const int one = 1; in make_server() local
159 err = setsockopt(fd, SOL_IP, IP_RECVORIGDSTADDR, &one, in make_server()
160 sizeof(one)); in make_server()
168 err = setsockopt(fd, SOL_IPV6, IPV6_RECVORIGDSTADDR, &one, in make_server()
169 sizeof(one)); in make_server()
177 err = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, in make_server()
178 sizeof(one)); in make_server()
186 err = setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, in make_server()
187 sizeof(one)); in make_server()
208 /* Late attach reuseport prog so we can have one ini in make_server()
[all...]

Completed in 10 milliseconds

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