Home
last modified time | relevance | path

Searched refs:select (Results 251 - 275 of 909) sorted by relevance

1...<<11121314151617181920>>...37

/third_party/musl/Benchmark/musl/
H A Dlibc_select.cpp16 #include "sys/select.h"
35 benchmark::DoNotOptimize(select(MAX_MONITOR_FDS, &readfds, &writefds, 0, 0)); in Bm_function_Select()
/third_party/skia/third_party/externals/swiftshader/src/Common/
H A DSocket.hpp35 bool select(int us);
/third_party/skia/third_party/externals/swiftshader/src/System/
H A DSocket.hpp35 bool select(int us);
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn30/
H A Ddcn30_dwb_cm.c301 enum cm_gamut_remap_select select) in dwb3_program_gamut_remap()
307 if (regval == NULL || select == CM_GAMUT_REMAP_MODE_BYPASS) { in dwb3_program_gamut_remap()
320 switch (select) { in dwb3_program_gamut_remap()
348 DWB_GAMUT_REMAP_MODE, select); in dwb3_program_gamut_remap()
297 dwb3_program_gamut_remap( struct dwbc *dwbc, const uint16_t *regval, enum cm_gamut_coef_format coef_format, enum cm_gamut_remap_select select) dwb3_program_gamut_remap() argument
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn30/
H A Ddcn30_dwb_cm.c301 enum cm_gamut_remap_select select) in dwb3_program_gamut_remap()
307 if (regval == NULL || select == CM_GAMUT_REMAP_MODE_BYPASS) { in dwb3_program_gamut_remap()
320 switch (select) { in dwb3_program_gamut_remap()
348 DWB_GAMUT_REMAP_MODE, select); in dwb3_program_gamut_remap()
297 dwb3_program_gamut_remap( struct dwbc *dwbc, const uint16_t *regval, enum cm_gamut_coef_format coef_format, enum cm_gamut_remap_select select) dwb3_program_gamut_remap() argument
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralFormat.java513 keyword=selector.select(context, number-offset); in findSubMessage()
551 public String select(Object context, double number); in select() method
559 public String select(Object context, double number) { in select() method in PluralFormat.PluralSelectorAdapter
561 return pluralRules.select(dec); in select()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DPluralFormat.java498 keyword=selector.select(context, number-offset); in findSubMessage()
536 public String select(Object context, double number); in select() method
544 public String select(Object context, double number) { in select() method in PluralFormat.PluralSelectorAdapter
546 return pluralRules.select(dec); in select()
/third_party/python/Lib/
H A Dtelnetlib.py136 # poll/select have the advantage of not requiring any extra file descriptor,
318 if selector.select(timeout):
537 return bool(selector.select(0))
549 for key, events in selector.select():
631 ready = selector.select(timeout)
/third_party/pulseaudio/src/pulsecore/
H A Dpoll-win32.c56 # include <sys/select.h>
252 /* Convert fd_sets returned by select into revents values. */
295 /* Convert select(2) returned fd_sets into poll(2) revents values. */
425 /* see select(2): "the only exceptional condition detectable in pa_poll()
447 rc = select (maxfd + 1, &rfds, &wfds, &efds, ptv); in pa_poll()
505 /* see above; socket handles are mapped onto select. */ in pa_poll()
539 /* We poll current status using select(). It cannot be used to check in pa_poll()
542 state, so we can't remove this select(). */ in pa_poll()
545 if (select (0, &rfds, &wfds, &xfds, &tv) > 0) in pa_poll()
548 no need to call select agai in pa_poll()
[all...]
/third_party/skia/src/core/
H A DSkVM.h458 M(select)
893 I32 min(I32 x, I32 y) { return select(lte(x,y), x, y); } in abs()
897 I32 max(I32 x, I32 y) { return select(gte(x,y), x, y); } in abs()
901 I32 select(I32 cond, I32 t, I32 f); // cond ? t : f in abs()
902 I32 select(I32 cond, int t, I32 f) { return select(cond, splat(t), f ); } in abs() function in skvm::Builder
903 I32 select(I32 cond, I32 t, int f) { return select(cond, t , splat(f)); } in abs() function in skvm::Builder
904 I32 select(I32 cond, int t, int f) { return select(con in abs() function in skvm::Builder
906 F32 select(I32 cond, F32 t, F32 f) { abs() function in skvm::Builder
910 F32 select(I32 cond, float t, F32 f) { return select(cond, splat(t), f ); } abs() function in skvm::Builder
911 F32 select(I32 cond, F32 t, float f) { return select(cond, t , splat(f)); } abs() function in skvm::Builder
912 F32 select(I32 cond, float t, float f) { return select(cond, splat(t), splat(f)); } abs() function in skvm::Builder
1288 SI I32 select(I32 c, I32 t, I32 f) { return c->select(c, t , f ); } select() function
1289 SI I32 select(I32 c, I32 t, int f) { return c->select(c, t , c->splat(f)); } select() function
1290 SI I32 select(I32 c, int t, I32 f) { return c->select(c, c->splat(t), f ); } select() function
1291 SI I32 select(I32 c, int t, int f) { return c->select(c, c->splat(t), c->splat(f)); } select() function
1293 SI F32 select(I32 c, F32 t, F32 f) { return c->select(c, t , f ); } select() function
1294 SI F32 select(I32 c, F32 t, float f) { return c->select(c, t , c->splat(f)); } select() function
1295 SI F32 select(I32 c, float t, F32 f) { return c->select(c, c->splat(t), f ); } select() function
1296 SI F32 select(I32 c, float t, float f) { return c->select(c, c->splat(t), c->splat(f)); } select() function
[all...]
H A DSkVM.cpp362 case Op::select: write(o, V{id}, "=", op, V{x}, V{y}, V{z}); break; in write_one_instruction()
480 case Op::select: write(o, R{d}, "=", op, R{x}, R{y}, R{z}); break; in dump()
845 return select(is_x, x, approx_pow2(mul(approx_log2(x), y))); in approx_powf()
861 x = select(neg, x - Pi, x); in approx_sin()
865 x = select(neg, -x, x); in approx_sin()
897 x = select(neg, -x, x); in approx_tan()
901 x = select(use_quotient, x - (Pi/4), x); in approx_tan()
905 x = select(use_quotient, (1+x)/(1-x), x); in approx_tan()
906 x = select(neg, -x, x); in approx_tan()
915 x = select(ne in approx_asin()
1103 I32 Builder::select(I32 x, I32 y, I32 z) { select() function in skvm::Builder
[all...]
/kernel/linux/linux-5.10/include/uapi/linux/
H A Dvirtio_input.h58 __u8 select; member
/kernel/linux/linux-6.6/include/uapi/linux/
H A Dvirtio_input.h58 __u8 select; member
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/
H A Dga102.c28 .select = ga102_flcn_select,
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/
H A Dvirtio_input.h45 __u8 select; member
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/
H A Dvirtio_input.h32 __u8 select; member
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/
H A Dvirtio_input.h45 __u8 select; member
/third_party/libuv/include/uv/
H A Ddarwin.h57 void* select; \
/third_party/ltp/testcases/kernel/syscalls/pselect/
H A Dpselect03.c10 #include <sys/select.h>
H A Dpselect01.c5 #include <sys/select.h>
/third_party/musl/libc-test/src/api/
H A Dsys_time.c28 {int(*p)(int,fd_set*restrict,fd_set*restrict,fd_set*restrict,struct timeval*restrict) = select;} in f()
/third_party/node/deps/uv/include/uv/
H A Ddarwin.h57 void* select; \
/third_party/skia/experimental/sktext/editor/
H A DSelection.cpp9 void Selection::select(TextRange range, SkRect rect) { in select() function in skia::editor::Selection
/kernel/linux/linux-5.10/sound/soc/codecs/
H A Dmax98090.c357 unsigned int *select; in max98090_get_enab_tlv() local
361 select = &(max98090->pa1en); in max98090_get_enab_tlv()
364 select = &(max98090->pa2en); in max98090_get_enab_tlv()
367 select = &(max98090->sidetone); in max98090_get_enab_tlv()
378 *select = val; in max98090_get_enab_tlv()
381 val = *select; in max98090_get_enab_tlv()
399 unsigned int *select; in max98090_put_enab_tlv() local
403 select = &(max98090->pa1en); in max98090_put_enab_tlv()
406 select = &(max98090->pa2en); in max98090_put_enab_tlv()
409 select in max98090_put_enab_tlv()
[all...]
/kernel/linux/linux-6.6/sound/soc/codecs/
H A Dmax98090.c356 unsigned int *select; in max98090_get_enab_tlv() local
360 select = &(max98090->pa1en); in max98090_get_enab_tlv()
363 select = &(max98090->pa2en); in max98090_get_enab_tlv()
366 select = &(max98090->sidetone); in max98090_get_enab_tlv()
377 *select = val; in max98090_get_enab_tlv()
380 val = *select; in max98090_get_enab_tlv()
398 unsigned int *select; in max98090_put_enab_tlv() local
403 select = &(max98090->pa1en); in max98090_put_enab_tlv()
406 select = &(max98090->pa2en); in max98090_put_enab_tlv()
409 select in max98090_put_enab_tlv()
[all...]

Completed in 24 milliseconds

1...<<11121314151617181920>>...37