Home
last modified time | relevance | path

Searched refs:x_p (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/util/
Drb_tree.c235 struct rb_node *x, *x_p; in rb_tree_remove() local
240 x_p = rb_node_parent(z); in rb_tree_remove()
244 x_p = rb_node_parent(z); in rb_tree_remove()
253 x_p = y; in rb_tree_remove()
255 x_p = rb_node_parent(y); in rb_tree_remove()
267 assert(x_p == NULL || x == x_p->left || x == x_p->right); in rb_tree_remove()
274 if (x == x_p->left) { in rb_tree_remove()
275 struct rb_node *w = x_p->right; in rb_tree_remove()
278 rb_node_set_red(x_p); in rb_tree_remove()
279 rb_tree_rotate_left(T, x_p); in rb_tree_remove()
[all …]
/external/webrtc/modules/audio_processing/aec3/
Dmatched_filter.cc54 const float* x_p = &x[x_start_index]; in MatchedFilterCore_NEON() local
73 for (int k = limit_by_4; k > 0; --k, h_p += 4, x_p += 4) { in MatchedFilterCore_NEON()
75 const float32x4_t x_k = vld1q_f32(x_p); in MatchedFilterCore_NEON()
83 for (int k = limit - limit_by_4 * 4; k > 0; --k, ++h_p, ++x_p) { in MatchedFilterCore_NEON()
84 const float x_k = *x_p; in MatchedFilterCore_NEON()
89 x_p = &x[0]; in MatchedFilterCore_NEON()
111 x_p = &x[x_start_index]; in MatchedFilterCore_NEON()
117 for (int k = limit_by_4; k > 0; --k, h_p += 4, x_p += 4) { in MatchedFilterCore_NEON()
120 const float32x4_t x_k = vld1q_f32(x_p); in MatchedFilterCore_NEON()
129 for (int k = limit - limit_by_4 * 4; k > 0; --k, ++h_p, ++x_p) { in MatchedFilterCore_NEON()
[all …]
/external/tensorflow/tensorflow/python/keras/utils/
Dlosses_utils_test.py39 x_p, _ = losses_utils.remove_squeezable_dimensions(x, x)
40 self.assertEqual(x_p.shape.ndims, rank)
56 x_p, _ = losses_utils.remove_squeezable_dimensions(y, x)
57 x_p.shape.assert_is_compatible_with(x.shape)
58 self.assertEqual(x_p.shape.ndims, 3)
66 x_p, _ = losses_utils.remove_squeezable_dimensions(y, x)
67 x_p.shape.assert_is_compatible_with(x.shape)
81 x_p, _ = losses_utils.remove_squeezable_dimensions(y, x)
82 x_p.shape.assert_is_compatible_with(x.shape)
/external/libxaac/decoder/drc_src/
Dimpd_drc_filter_bank.c258 FLOAT32 st1 = filter->x_p[chan_idx * 2]; in impd_iir_second_order_filter_all_pass()
267 filter->x_p[chan_idx * 2] = st1; in impd_iir_second_order_filter_all_pass()
285 FLOAT32 st1_l = pstr_lp_filt_coeff->x_p[chan_idx * 2 + 0]; in impd_apply_low_high_filter()
286 FLOAT32 st2_l = pstr_lp_filt_coeff->x_p[chan_idx * 2 + 1]; in impd_apply_low_high_filter()
296 FLOAT32 st1_h = pstr_hp_filt_coeff->x_p[chan_idx * 2 + 0]; in impd_apply_low_high_filter()
297 FLOAT32 st2_h = pstr_hp_filt_coeff->x_p[chan_idx * 2 + 1]; in impd_apply_low_high_filter()
322 pstr_lp_filt_coeff->x_p[chan_idx * 2 + 0] = st1_l; in impd_apply_low_high_filter()
323 pstr_lp_filt_coeff->x_p[chan_idx * 2 + 1] = st2_l; in impd_apply_low_high_filter()
327 pstr_hp_filt_coeff->x_p[chan_idx * 2 + 0] = st1_h; in impd_apply_low_high_filter()
328 pstr_hp_filt_coeff->x_p[chan_idx * 2 + 1] = st2_h; in impd_apply_low_high_filter()
Dimpd_drc_filter_bank.h63 FLOAT32 x_p[MAX_CHANNEL_COUNT * 2]; member
/external/llvm-project/flang/test/Evaluate/
Dfolding04.f9044 real(4), parameter :: x_p = (x_nop) variable
45 logical, parameter :: test_parentheses1 = acos(x_p).EQ.acos(x_nop)
/external/tensorflow/tensorflow/python/kernel_tests/
Dbetainc_op_test.py107 x_p = array_ops.placeholder(dtype)
108 math_ops.betainc(a_p, b_p, x_p).eval(
111 x_p: [[0.5]]})
/external/webrtc/modules/audio_processing/agc2/rnn_vad/
Drnn.cc250 const float* x_p = input.data(); in ComputeFullyConnectedLayerOutputSse2() local
252 for (size_t i = 0; i < input_size_by_4; ++i, x_p += 4, w_p += 4) { in ComputeFullyConnectedLayerOutputSse2()
254 _mm_mul_ps(_mm_loadu_ps(x_p), _mm_loadu_ps(w_p))); in ComputeFullyConnectedLayerOutputSse2()
/external/llvm-project/llvm/test/Transforms/LoopVectorize/
Druntime-check.ll163 define dso_local void @forced_optsize(i64* noalias nocapture readonly %x_p, i64* noalias nocapture …
177 %arrayidx = getelementptr inbounds i64, i64* %x_p, i64 %indvars.iv
/external/python/cpython3/Objects/
Dlongobject.c71 _PyLong_Negate(PyLongObject **x_p) in _PyLong_Negate() argument
75 x = (PyLongObject *)*x_p; in _PyLong_Negate()
81 *x_p = (PyLongObject *)PyLong_FromLong(-MEDIUM_VALUE(x)); in _PyLong_Negate()