Home
last modified time | relevance | path

Searched +defs:val +defs:bound (Results 1 – 25 of 927) sorted by relevance

12345678910>>...38

/aosp_15_r20/prebuilts/tools/common/m2/repository/com/google/turbine/0.1/
HDturbine-0.1.jar ... sym/ com/google/turbine/binder/bound/ com/google/turbine/binder/env ...
/aosp_15_r20/prebuilts/tools/common/m2/repository/com/google/turbine/0.2.1/
HDturbine-0.2.1.jar ... bytecode/ com/google/turbine/binder/bound/ com/google/turbine/binder/lookup ...
/aosp_15_r20/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Darg_op.cc45 const Tensor* val; in Compile() local
93 xla::Literal bound = HostTensorToLiteral(*arg.value_bound()).ValueOrDie(); in Compile() local
/aosp_15_r20/out/soong/.intermediates/external/turbine/turbine/linux_glibc_common/javac/
Dturbine.jar ... final synthetic com.google.turbine.binder.bound.TypeBoundClass$FieldInfo val$field void <init ...
/aosp_15_r20/external/mesa3d/src/intel/vulkan/
H A Danv_nir_lower_ubo_loads.c38 nir_def *bound = NULL; in lower_ubo_load_instr() local
46 nir_def *val; in lower_ubo_load_instr() local
/aosp_15_r20/external/mesa3d/src/intel/vulkan_hasvk/
H A Danv_nir_lower_ubo_loads.c38 nir_def *bound = NULL; in lower_ubo_load_instr() local
46 nir_def *val; in lower_ubo_load_instr() local
/aosp_15_r20/external/libchrome-gestures/src/
H A Dbox_filter_interpreter.cc53 float val = fs.*field; in SyncInterpretImpl() local
54 float bound = kBounds[f_idx]; in SyncInterpretImpl() local
/aosp_15_r20/external/python/cpython2/Python/
Dsymtable.c376 PyObject *bound, PyObject *local, PyObject *free, in analyze_name()
532 PyObject *bound, PyObject *free, int classflag) in update_symbols()
624 analyze_block(PySTEntryObject *ste, PyObject *bound, PyObject *free, in analyze_block()
736 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free, in analyze_child_block()
889 long val; in symtable_add_def() local
/aosp_15_r20/external/mbedtls/library/
H A Doid.c978 static int oid_parse_number(unsigned int *num, const char **p, const char *bound) in oid_parse_number()
1009 unsigned char *bound, in oid_subidentifier_encode_into()
1036 unsigned int val = 0; in mbedtls_oid_from_numeric_string() local
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/library/
H A Doid.c990 static int oid_parse_number(unsigned int *num, const char **p, const char *bound) in oid_parse_number()
1021 unsigned char *bound, in oid_subidentifier_encode_into()
1048 unsigned int val = 0; in mbedtls_oid_from_numeric_string() local
/aosp_15_r20/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
Dbcmutils.h685 #define MODDEC(x, bound) MUX((x) == 0, (bound) - 1, (x) - 1) argument
686 #define MODINC(x, bound) MUX((x) == (bound) - 1, 0, (x) + 1) argument
689 #define MODDEC_POW2(x, bound) (((x) - 1) & ((bound) - 1)) argument
690 #define MODINC_POW2(x, bound) (((x) + 1) & ((bound) - 1)) argument
693 #define MODADD(x, y, bound) \ argument
695 #define MODSUB(x, y, bound) \ argument
699 #define MODADD_POW2(x, y, bound) (((x) + (y)) & ((bound) - 1)) argument
700 #define MODSUB_POW2(x, y, bound) (((x) - (y)) & ((bound) - 1)) argument
823 #define mboolmaskset(mb, mask, val) ((mb) = (((mb) & ~(mask)) | (val))) argument
/aosp_15_r20/external/python/cpython3/Python/
Dsymtable.c502 PyObject *bound, PyObject *local, PyObject *free, in analyze_name()
628 PyObject *bound, PyObject *free, int classflag) in update_symbols()
739 analyze_block(PySTEntryObject *ste, PyObject *bound, PyObject *free, in analyze_block()
886 analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free, in analyze_child_block()
1028 long val; in symtable_add_def_helper() local
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/
H A Dtest_offload.py256 def int2str(fmt, val): argument
340 def ctrl_write(path, val): argument
459 def wait_for_flush(self, bound=0, total=0, n_retry=20): argument
508 def tc_flush_filters(self, bound=0, total=0): argument
1251 val = str2int(entries[i]["value"]) variable
/aosp_15_r20/external/mesa3d/src/compiler/glsl/
H A Dir_print_visitor.cpp205 const char *const bound = (ir->data.bound) ? "bound " : ""; in visit() local
484 print_float_constant(FILE *f, float val) in print_float_constant()
/aosp_15_r20/external/mesa3d/src/nouveau/mme/tests/
H A Dmme_fermi_sim_hw_test.cpp65 mme_fermi_value_as_reg(mme_value val) in mme_fermi_value_as_reg()
459 mme_value val = mme_load(&b); in SHIFT_TEST() local
589 #define WHILE_TEST(op, start, step, bound) \ argument
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
H A DBigIntegerTest.java850 public MyBigInteger(String val) { in MyBigInteger()
939 BigInteger bound = i.multiply(two); in testDivRanges() local
/aosp_15_r20/external/python/cpython3/Lib/
Dtyping.py938 def __init__(self, bound, covariant, contravariant): argument
1012 def __init__(self, name, *constraints, bound=None, argument
1209 def __init__(self, name, *, bound=None, covariant=False, contravariant=False): argument
1290 def __setattr__(self, attr, val): argument
2246 def cast(typ, val): argument
2257 def assert_type(val, typ, /): argument
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dtyping.py938 def __init__(self, bound, covariant, contravariant): argument
1012 def __init__(self, name, *constraints, bound=None, argument
1209 def __init__(self, name, *, bound=None, covariant=False, contravariant=False): argument
1290 def __setattr__(self, attr, val): argument
2246 def cast(typ, val): argument
2257 def assert_type(val, typ, /): argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dtyping.py938 def __init__(self, bound, covariant, contravariant): argument
1012 def __init__(self, name, *constraints, bound=None, argument
1209 def __init__(self, name, *, bound=None, covariant=False, contravariant=False): argument
1290 def __setattr__(self, attr, val): argument
2246 def cast(typ, val): argument
2257 def assert_type(val, typ, /): argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dtyping.py938 def __init__(self, bound, covariant, contravariant): argument
1012 def __init__(self, name, *constraints, bound=None, argument
1209 def __init__(self, name, *, bound=None, covariant=False, contravariant=False): argument
1290 def __setattr__(self, attr, val): argument
2246 def cast(typ, val): argument
2257 def assert_type(val, typ, /): argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/
Dtyping.py938 def __init__(self, bound, covariant, contravariant): argument
1012 def __init__(self, name, *constraints, bound=None, argument
1209 def __init__(self, name, *, bound=None, covariant=False, contravariant=False): argument
1290 def __setattr__(self, attr, val): argument
2246 def cast(typ, val): argument
2257 def assert_type(val, typ, /): argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dtyping.py938 def __init__(self, bound, covariant, contravariant): argument
1012 def __init__(self, name, *constraints, bound=None, argument
1209 def __init__(self, name, *, bound=None, covariant=False, contravariant=False): argument
1290 def __setattr__(self, attr, val): argument
2246 def cast(typ, val): argument
2257 def assert_type(val, typ, /): argument
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/source/
H A Dtext.cpp108 for (const char* val = textValue + 1; val != textValue + len - 1; ++val) { in spvTextToLiteral() local
702 spv_result_t SetHeader(spv_target_env env, const uint32_t bound, in SetHeader()
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/
H A Dtext.cpp108 for (const char* val = textValue + 1; val != textValue + len - 1; ++val) { in spvTextToLiteral() local
703 spv_result_t SetHeader(spv_target_env env, const uint32_t bound, in SetHeader()
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/source/
Dtext.cpp108 for (const char* val = textValue + 1; val != textValue + len - 1; ++val) { in spvTextToLiteral() local
701 spv_result_t SetHeader(spv_target_env env, const uint32_t bound, in SetHeader()

12345678910>>...38