HomeSort by relevance Sort by last modified time
    Searched refs:lambda (Results 126 - 150 of 3369) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/scapy/scapy/contrib/
ripng.py 37 lambda pkt: pkt.metric != 255),
39 lambda pkt: pkt.metric == 255),
  /external/selinux/python/sepolicy/sepolicy/
booleans.py 39 for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]), allows)):
communicate.py 48 for l in map(lambda y: y[sepolicy.TARGET], filter(lambda x: set(perm).issubset(x[sepolicy.PERMS]), allows)):
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
prefetch_dataset_op_test.py 34 self.run_core_tests(lambda: self.build_dataset(10),
35 lambda: self.build_dataset(20), num_outputs)
  /external/valgrind/drd/tests/
std_thread2.stderr.exp 4 at 0x........: main::{lambda()#1}::operator()() const (std_thread2.cpp:21)
  /frameworks/ml/nn/runtime/test/specs/V1_0/
relu_float_2.mod.py 33 input_values = (lambda r = rng: [x * (x % 2 - .5) * 2 for x in range(r)])()
35 output_values = (lambda r = rng: [x * (x % 2) for x in range(r)])()
relu_quant8_2.mod.py 33 input_values = (lambda r = rng: [x % 256 for x in range(r)])()
35 output_values = (lambda r = rng: [x % 256 if x % 256 > 128 else 128 for x in range(r)])()
  /frameworks/ml/nn/runtime/test/specs/V1_1/
relu_float_2_relaxed.mod.py 34 input_values = (lambda r = rng: [x * (x % 2 - .5) * 2 for x in range(r)])()
36 output_values = (lambda r = rng: [x * (x % 2) for x in range(r)])()
  /system/extras/simpleperf/scripts/
profile_pb2.py 5 _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
  /external/mesa3d/src/mesa/swrast/
s_texfilter.c 613 linear_mipmap_level(const struct gl_texture_object *tObj, GLfloat lambda)
615 if (lambda < 0.0F)
617 else if (lambda > tObj->_MaxLambda)
620 return (GLint) (tObj->BaseLevel + lambda);
628 nearest_mipmap_level(const struct gl_texture_object *tObj, GLfloat lambda)
632 if (lambda <= 0.5F)
634 else if (lambda > tObj->_MaxLambda + 0.4999F)
637 l = lambda;
659 * The lambda[] array values are always monotonic. Either the whole span
665 GLuint n, const GLfloat lambda[],
    [all...]
  /external/autotest/client/cros/
login.py 79 lambda: os.system('pgrep ^%s$ >/dev/null' % constants.BROWSER) == 0,
98 lambda: os.system('pgrep ^%s$ >/dev/null' % constants.BROWSER) != 0,
117 condition=lambda: cryptohome.is_vault_mounted(user),
134 condition=lambda: os.access(constants.OWNER_KEY_FILE, os.F_OK),
  /external/autotest/client/site_tests/logging_AsanCrash/
logging_AsanCrash.py 40 cr.did_browser_crash(lambda: extension.ExecuteJavaScript(
44 lambda: os.path.isfile(asan_log_name),
56 lambda: ui_log.can_find('ERROR: AddressSanitizer'),
65 lambda: ui_log.can_find("'testarray"),
  /external/autotest/client/site_tests/power_CheckAC/
power_CheckAC.py 20 lambda: power_status.get_status().on_ac() == power_on,
  /external/autotest/server/site_tests/firmware_ECPowerButton/
firmware_ECPowerButton.py 80 lambda:self.shutdown_and_wake(
90 lambda:self.shutdown_and_wake(
99 lambda:self.shutdown_and_wake(
109 lambda:self.shutdown_and_wake(
  /external/chromium-trace/catapult/devil/devil/android/sdk/
dexdump.py 10 _dexdump_path = lazy.WeakConstant(lambda: build_tools.GetPath('dexdump'))
  /external/chromium-trace/catapult/devil/devil/utils/
timeout_retry_unittest.py 33 lambda x: x, 30, 3, [True], {}))
50 TestException, timeout_retry.Run, lambda: _CountTries(tries),
57 TestException, timeout_retry.Run, lambda: _CountTries(tries),
62 self.assertTrue(timeout_retry.Run(lambda: True, _DEFAULT_TIMEOUT, 3))
  /external/clang/test/SemaCXX/
new-delete-0x.cpp 26 expected-error {{a lambda expression may not appear inside of a constant expression}}
  /external/deqp/scripts/opengl/
gen_es_direct_init.py 37 check = lambda api, _: api == 'gles2',
  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
dexdump.py 10 _dexdump_path = lazy.WeakConstant(lambda: build_tools.GetPath('dexdump'))
  /external/libmojo/third_party/catapult/devil/devil/utils/
timeout_retry_unittest.py 33 lambda x: x, 30, 3, [True], {}))
50 TestException, timeout_retry.Run, lambda: _CountTries(tries),
57 TestException, timeout_retry.Run, lambda: _CountTries(tries),
62 self.assertTrue(timeout_retry.Run(lambda: True, _DEFAULT_TIMEOUT, 3))
  /external/perfetto/
PRESUBMIT.py 21 long_line_sources = lambda x: input.FilterSourceFile(
46 build_file_filter = lambda x: input_api.FilterSourceFile(
69 file_filter = lambda x: input_api.FilterSourceFile(
84 build_file_filter = lambda x: input_api.FilterSourceFile(
  /external/python/cpython3/Lib/test/crashers/
underlying_dict.py 18 dct["f"] = lambda self: 2
  /external/tensorflow/tensorflow/contrib/py2tf/utils/
context_managers.py 38 return contextlib.contextmanager(lambda: (yield))()
  /external/tensorflow/tensorflow/contrib/solvers/python/ops/
util.py 44 apply=lambda v: math_ops.matmul(matrix, v, adjoint_a=False),
45 apply_adjoint=lambda v: math_ops.matmul(matrix, v, adjoint_a=True))
61 apply=lambda v: v,
62 apply_adjoint=lambda v: v)
  /external/v8/tools/
gc-nvp-to-csv.py 23 print ', '.join(map(lambda key: str(entry[key]), keys))

Completed in 768 milliseconds

1 2 3 4 56 7 8 91011>>