Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Ddct.cpp41 Int k0, k1, k2, k3, k4, k5, k6, k7; in BlockDCT_AANwSub() local
68 k3 = mask & (tmp >> 15); in BlockDCT_AANwSub()
69 k2 = k3 - (k2 << 1); in BlockDCT_AANwSub()
70 k3 = (tmp2 >> 24) & 0xFF; in BlockDCT_AANwSub()
72 k3 = k4 - (k3 << 1); in BlockDCT_AANwSub()
97 k3 = k3 + k4; in BlockDCT_AANwSub()
98 k4 = k3 - (k4 << 1); in BlockDCT_AANwSub()
100 k0 = k0 + k3; in BlockDCT_AANwSub()
101 k3 = k0 - (k3 << 1); in BlockDCT_AANwSub()
114 k2 = k2 + k3; in BlockDCT_AANwSub()
[all …]
Ddct_inline.h82 __inline int32 sum_abs(int32 k0, int32 k1, int32 k2, int32 k3, in sum_abs() argument
93 carry = k3 >> 31; in sum_abs()
94 abs_sum += (k3 ^ carry) - carry; in sum_abs()
241 __inline int32 sum_abs(int32 k0, int32 k1, int32 k2, int32 k3, in sum_abs() argument
252 eors carry, k3, k3, asr #31 ; in sum_abs() local
347 __inline int32 sum_abs(int32 k0, int32 k1, int32 k2, int32 k3, in sum_abs() argument
355 register int32 dd = (int32)k3; in sum_abs()
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
DUtils.java133 Keyframe k3 = Keyframe.ofFloat(1f, 1f); in getPulseAnimator() local
135 PropertyValuesHolder scaleX = PropertyValuesHolder.ofKeyframe("scaleX", k0, k1, k2, k3); in getPulseAnimator()
136 PropertyValuesHolder scaleY = PropertyValuesHolder.ofKeyframe("scaleY", k0, k1, k2, k3); in getPulseAnimator()
/frameworks/ml/nn/runtime/test/generated/models/
Dtopk_v2.model.cpp487 auto k3 = model->addOperand(&type1); in CreateModel_4() local
492 model->setOperandValue(k3, k3_init, sizeof(int32_t) * 1); in CreateModel_4()
493 model->addOperation(ANEURALNETWORKS_TOPK_V2, {input3, k3}, {out_values3, out_indices3}); in CreateModel_4()
513 auto k3 = model->addOperand(&type1); in CreateModel_relaxed_4() local
518 model->setOperandValue(k3, k3_init, sizeof(int32_t) * 1); in CreateModel_relaxed_4()
519 model->addOperation(ANEURALNETWORKS_TOPK_V2, {input3, k3}, {out_values3, out_indices3}); in CreateModel_relaxed_4()
541 auto k3 = model->addOperand(&type1); in CreateModel_float16_4() local
546 model->setOperandValue(k3, k3_init, sizeof(int32_t) * 1); in CreateModel_float16_4()
547 model->addOperation(ANEURALNETWORKS_TOPK_V2, {input3, k3}, {out_values3, out_indices3}); in CreateModel_float16_4()
567 auto k3 = model->addOperand(&type1); in CreateModel_dynamic_output_shape_4() local
[all …]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
DTimePickerDialog.java817 int k3 = KeyEvent.KEYCODE_3;
829 Node minuteFirstDigit = new Node(k0, k1, k2, k3, k4, k5);
830 Node minuteSecondDigit = new Node(k0, k1, k2, k3, k4, k5, k6, k7, k8, k9);
839 Node secondDigit = new Node(k0, k1, k2, k3, k4, k5);
860 secondDigit = new Node(k0, k1, k2, k3);
872 firstDigit = new Node(k3, k4, k5, k6, k7, k8, k9);
894 Node thirdDigit = new Node(k0, k1, k2, k3, k4, k5);
901 Node fourthDigit = new Node(k0, k1, k2, k3, k4, k5, k6, k7, k8, k9);
913 secondDigit = new Node(k3, k4, k5);
917 thirdDigit = new Node(k0, k1, k2, k3, k4, k5, k6, k7, k8, k9);
[all …]
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Dshadows.rs106 int k3=1<<(ABITS-1);
131 X=( (X+iv*(k1 - is ))/k1 + k3 ) >> ABITS;
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Dshadows.rs106 int k3=1<<(ABITS-1);
131 X=( (X+iv*(k1 - is ))/k1 + k3 ) >> ABITS;
/frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
Dshadows_f.rs106 int k3=1<<(ABITS-1);
131 X=( (X+iv*(k1 - is ))/k1 + k3 ) >> ABITS;
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Dshadows.rs106 int k3=1<<(ABITS-1);
131 X=( (X+iv*(k1 - is ))/k1 + k3 ) >> ABITS;
/frameworks/base/core/jni/
Dandroid_hardware_camera2_DngCreator.cpp994 const float k3 = distortion[3]; in undistort() local
998 double kr = k0 + ((k3 * r2 + k2) * r2 + k1) * r2; in undistort()