Home
last modified time | relevance | path

Searched refs:column1 (Results 1 – 8 of 8) sorted by relevance

/external/javaparser/javaparser-core-testing-bdd/src/test/java/com/github/javaparser/steps/
DPositionRangeSteps.java60 public void givenTheRange(int line1, int column1, int line2, int column2) { in givenTheRange() argument
61 this.range = range(line1, column1, line2, column2); in givenTheRange()
74 public void whenICompareToRange(int line1, int column1, int line2, int column2) { in whenICompareToRange() argument
75 this.secondRange = range(line1, column1, line2, column2); in whenICompareToRange()
/external/libsrtp2/crypto/cipher/
Daes.c1679 uint32_t column0, column1, column2, column3; in aes_round() local
1687 column1 = T0[state->v8[4]] ^ T1[state->v8[9]] ^ T2[state->v8[14]] ^ in aes_round()
1697 state->v32[1] = column1 ^ round_key->v32[1]; in aes_round()
1704 uint32_t column0, column1, column2, column3; in aes_inv_round() local
1712 column1 = U0[state->v8[4]] ^ U1[state->v8[1]] ^ U2[state->v8[14]] ^ in aes_inv_round()
1722 state->v32[1] = column1 ^ round_key->v32[1]; in aes_inv_round()
1803 uint32_t column0, column1, column2, column3; in aes_round() local
1811 column1 = T0[state->v32[1] >> 24] ^ T1[(state->v32[2] >> 16) & 0xff] ^ in aes_round()
1823 column1 = T0[state->v32[1] & 0xff] ^ T1[(state->v32[2] >> 8) & 0xff] ^ in aes_round()
1834 state->v32[1] = column1 ^ round_key->v32[1]; in aes_round()
[all …]
/external/libavc/common/arm/
Dih264_inter_pred_luma_horz_qpel_a9q.s172 vld1.32 {d12, d13}, [r7], r2 @Load value for interpolation (column1,row0)
181 vld1.32 {d12, d13}, [r7], r2 @Load value for interpolation (column1,row1)
215 vld1.32 d12, [r7], r2 @Load value for interpolation (column1,row0)
216 vld1.32 d13, [r7], r2 @Load value for interpolation (column1,row1)
243 vld1.32 d12, [r7], r2 @Load value for interpolation (column1,row0)
244 vld1.32 d13, [r7], r2 @Load value for interpolation (column1,row1)
/external/webrtc/tools_webrtc/matlab/
DrtpAnalyze.m203 % column1: double (%f)
/external/tensorflow/tensorflow/python/feature_column/
Dfeature_column_v2_test.py4305 column1 = _LoggerColumn('1')
4308 fc._transform_features_v2({}, [column1, column2], None)
4309 self.assertEqual(0, column1.call_order)
4313 fc._transform_features_v2({}, [column2, column1], None)
4314 self.assertEqual(0, column1.call_order)
Dfeature_column_test.py4550 column1 = _LoggerColumn('1')
4553 _transform_features({}, [column1, column2])
4554 self.assertEqual(0, column1.call_order)
4558 _transform_features({}, [column2, column1])
4559 self.assertEqual(0, column1.call_order)
/external/skqp/src/sksl/
DSkSLSPIRVCodeGenerator.cpp1234 SpvId column1 = this->nextId(); in writeMatrixConstructor() local
1235 this->writeInstruction(SpvOpCompositeConstruct, columnType, column1, v[0], v[1], out); in writeMatrixConstructor()
1238 this->writeInstruction(SpvOpCompositeConstruct, this->getType(c.fType), result, column1, in writeMatrixConstructor()
/external/skia/src/sksl/codegen/
DSkSLSPIRVCodeGenerator.cpp1549 SpvId column1 = this->nextId(&type); in writeMatrixConstructor() local
1550 this->writeInstruction(SpvOpCompositeConstruct, columnType, column1, v[0], v[1], out); in writeMatrixConstructor()
1553 this->writeInstruction(SpvOpCompositeConstruct, this->getType(type), result, column1, in writeMatrixConstructor()