HomeSort by relevance Sort by last modified time
    Searched refs:l1 (Results 176 - 200 of 467) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/boringssl/src/crypto/cipher_extra/
e_rc2.c 71 #define c2ln(c, l1, l2, n) \
74 (l1) = (l2) = 0; \
89 (l1) = ((uint32_t)(*(--(c)))) << 24L; \
92 (l1) |= ((uint32_t)(*(--(c)))) << 16L; \
95 (l1) |= ((uint32_t)(*(--(c)))) << 8L; \
98 (l1) |= ((uint32_t)(*(--(c)))); \
110 #define l2cn(l1, l2, c, n) \
127 *(--(c)) = (uint8_t)(((l1) >> 24L) & 0xff); \
130 *(--(c)) = (uint8_t)(((l1) >> 16L) & 0xff); \
133 *(--(c)) = (uint8_t)(((l1) >> 8L) & 0xff);
    [all...]
  /art/libdexfile/external/include/art_api/
dex_file_support.h 99 size_t l1, l2; local
100 const char* str1 = DexString::g_ExtDexFileGetString(s1.ext_string_, &l1);
103 return l1 == l2 && !std::memcmp(str1, str2, l1);
  /art/test/578-bce-visit/src/
Main.java 32 int l1 = (((l0 >= ( ~mA[6][7][5])) && ((921 <= l0) && (mA[3][9][6] > l0))) ? mX : (l0--)); local
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p23.cpp 40 auto l1 = [x...] {}; // expected-error{{pack expansion does not contain any unexpanded parameter packs}} local
  /external/python/cpython3/Modules/_decimal/tests/
randfloat.py 241 l1 = random.choice(TESTCASES)
243 yield random.choice(l1), random.choice(l2)
247 l1 = random.choice(TESTCASES)
250 yield random.choice(l1), random.choice(l2), random.choice(l3)
  /external/selinux/libsepol/cil/src/
cil_list.h 62 int cil_list_match_any(struct cil_list *l1, struct cil_list *l2);
  /external/tensorflow/tensorflow/python/autograph/utils/
tensor_list_test.py 107 l1 = l[0]
108 l0, l1, a, b = self.evaluate([l0, l1, a, b])
110 self.assertEqual(l1, b)
  /external/python/cpython2/Lib/test/
test_glob.py 58 def assertSequencesEqual_noorder(self, l1, l2):
59 l1 = list(l1)
61 self.assertEqual(set(l1), set(l2))
62 self.assertEqual(sorted(l1), sorted(l2))
  /external/tensorflow/tensorflow/python/keras/layers/
gru_test.py 210 l1 = layer_class(units=1, stateful=stateful)
211 l2 = layer_class.from_config(l1.get_config())
212 assert l1.get_config() == l2.get_config()
222 kernel_regularizer=keras.regularizers.l1(0.01),
223 recurrent_regularizer=keras.regularizers.l1(0.01),
225 activity_regularizer='l1')
simplernn_test.py 115 l1 = layer_class(units=1, stateful=stateful)
116 l2 = layer_class.from_config(l1.get_config())
117 assert l1.get_config() == l2.get_config()
127 kernel_regularizer=keras.regularizers.l1(0.01),
128 recurrent_regularizer=keras.regularizers.l1(0.01),
130 activity_regularizer='l1')
  /external/tensorflow/tensorflow/python/training/
training_ops_test.py 94 l1=0.0,
105 apply_ftrl = training_ops.apply_ftrl(var, accum, linear, grad, lr, l1, l2,
114 np.sign(linear_update[i]) * l1 - linear_update[i]) / (quadratic[i]) if
115 np.abs(linear_update[i]) > l1 else 0.0
149 l1 = np.array(3.0).astype(dtype)
152 self._testTypesForFtrl(x, y, z, lr, grad, use_gpu=False, l1=l1, l2=l2)
182 l1=0.0,
200 l1,
  /external/icu/icu4c/source/test/intltest/
numbertest_api.cpp 2357 LocalizedNumberFormatter l1; local
2465 const LocalizedNumberFormatter l1 = f.threshold(0).locale(locale); \/\/ no self-regulation local
2506 const LocalizedNumberFormatter l1 = f.threshold(0).locale(locale); \/\/ no self-regulation local
2544 const LocalizedNumberFormatter l1 = f.threshold(0).locale(locale); \/\/ no self-regulation local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
radeon_vce.c 112 * sort l0 and l1 to the top of the list
116 struct rvce_cpb_slot *i, *l0 = NULL, *l1 = NULL; local
123 l1 = i;
129 l0 && l1)
133 if (l1) {
134 LIST_DEL(&l1->list);
135 LIST_ADD(&l1->list, &enc->cpb_slots);
215 * Get the slot for L1
  /external/tensorflow/tensorflow/core/kernels/
training_ops.h 52 typename TTypes<T>::ConstScalar l1,
61 typename TTypes<T>::ConstScalar l1,
80 typename TTypes<T>::ConstScalar l1,
90 typename TTypes<T>::ConstScalar l1,
102 typename TTypes<T>::ConstScalar l1,
114 typename TTypes<T>::ConstScalar l1,
  /cts/tests/tests/animation/src/android/animation/cts/
ValueAnimatorTest.java 232 Animator.AnimatorPauseListener l1 = mock(Animator.AnimatorPauseListener.class); local
235 a1.addPauseListener(l1);
240 verify(l1, times(1)).onAnimationPause(a1);
247 verify(l1, times(1)).onAnimationResume(a1);
341 ValueAnimator.AnimatorUpdateListener l1 = mock(ValueAnimator.AnimatorUpdateListener.class); local
350 a1.addUpdateListener(l1);
370 verify(l1, times(0)).onAnimationUpdate(a1);
400 AnimatorListenerAdapter l1 = mock(AnimatorListenerAdapter.class); local
401 a1.addListener(l1);
408 verify(l1, within(200)).onAnimationEnd(a1, false)
438 AnimatorListenerAdapter l1 = mock(AnimatorListenerAdapter.class); local
    [all...]
  /art/test/903-hello-tagging/src/art/
Test903.java 120 int l1 = objects == null ? 0 : objects.length; local
122 int l = Math.max(l1, l2);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_glob.py 45 def assertSequencesEqual_noorder(self, l1, l2):
46 self.assertEqual(set(l1), set(l2))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/
msgfmt.py 84 for o1, l1, o2, l2 in offsets:
85 koffsets += [l1, o1+keystart]
  /external/clang/test/Analysis/
lambdas.cpp 36 auto l1 = [i]() mutable { local
50 l1();
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 149 long l1 = 1; local
150 Agg<int> i1 = {l1}; // expected-error {{ cannot be narrowed }} expected-note {{silence}}
p7-cxx11-nowarn.cpp 147 long l1 = 1; local
148 Agg<int> i1 = {l1}; // expected-warning {{ cannot be narrowed }} expected-note {{silence}}
  /external/eigen/Eigen/src/Core/products/
Parallelizer.h 54 std::ptrdiff_t l1, l2, l3; local
55 internal::manage_caching_sizes(GetAction, &l1, &l2, &l3);
  /external/python/cpython2/Tools/i18n/
msgfmt.py 85 for o1, l1, o2, l2 in offsets:
86 koffsets += [l1, o1+keystart]
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
regularizers.py 38 """Returns a function that can be used to apply L1 regularization to weights.
40 L1 regularization encourages sparsity.
47 A function with signature `l1(weights)` that apply L1 regularization.
62 def l1(weights, name=None): function in function:l1_regularizer
63 """Applies L1 regularization to weights."""
73 return l1
113 """Returns a function that can be used to apply L1 L2 regularizations.
116 scale_l1: A scalar multiplier `Tensor` for L1 regularization.
122 L1 L2 regularization
    [all...]
  /external/tensorflow/tensorflow/contrib/receptive_field/python/util/
graph_compute_order_test.py 43 l1 = slim.conv2d(x, 1, [1, 1], stride=4, scope='L1', padding='VALID')
49 l4 = nn.relu(l1 + l3, name='L4_relu')
127 'L1/Conv2D': [224, 224],
138 'L1/Conv2D': [56, 56],

Completed in 4021 milliseconds

1 2 3 4 5 6 78 91011>>