Home
last modified time | relevance | path

Searched refs:col (Results 101 - 125 of 733) sorted by relevance

12345678910>>...30

/kernel/linux/linux-6.6/drivers/input/keyboard/
H A Dmt6779-keypad.c37 unsigned int *row, unsigned int *col);
55 unsigned int row, col; in mt6779_keypad_irq_handler() local
74 keypad->calc_row_col(key, &row, &col); in mt6779_keypad_irq_handler()
76 scancode = MATRIX_SCAN_CODE(row, col, row_shift); in mt6779_keypad_irq_handler()
102 unsigned int *col) in mt6779_keypad_calc_row_col_single()
105 *col = key % 9; in mt6779_keypad_calc_row_col_single()
110 unsigned int *col) in mt6779_keypad_calc_row_col_double()
113 *col = (key % 13) / 2; in mt6779_keypad_calc_row_col_double()
100 mt6779_keypad_calc_row_col_single(unsigned int key, unsigned int *row, unsigned int *col) mt6779_keypad_calc_row_col_single() argument
108 mt6779_keypad_calc_row_col_double(unsigned int key, unsigned int *row, unsigned int *col) mt6779_keypad_calc_row_col_double() argument
H A Dpmic8xxx-keypad.c108 static u8 pmic8xxx_col_state(struct pmic8xxx_kp *kp, u8 col) in pmic8xxx_col_state() argument
111 if (col == 0x00) in pmic8xxx_col_state()
114 return col & ((1 << kp->num_cols) - 1); in pmic8xxx_col_state()
222 int row, col, code; in __pmic8xxx_kp_scan_matrix() local
230 for (col = 0; col < kp->num_cols; col++) { in __pmic8xxx_kp_scan_matrix()
231 if (!(bits_changed & (1 << col))) in __pmic8xxx_kp_scan_matrix()
234 dev_dbg(kp->dev, "key [%d:%d] %s\n", row, col, in __pmic8xxx_kp_scan_matrix()
235 !(new_state[row] & (1 << col)) in __pmic8xxx_kp_scan_matrix()
[all...]
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djdmrgext.c33 JDIMENSION col; in h2v1_merged_upsample_internal() local
47 for (col = cinfo->output_width >> 1; col > 0; col--) { in h2v1_merged_upsample_internal()
105 JDIMENSION col; in h2v2_merged_upsample_internal() local
121 for (col = cinfo->output_width >> 1; col > 0; col--) { in h2v2_merged_upsample_internal()
H A Dwrtarga.c100 register JDIMENSION col; in put_pixel_rows() local
104 for (col = cinfo->output_width; col > 0; col--) { in put_pixel_rows()
142 register JDIMENSION col; in put_demapped_gray() local
146 for (col = cinfo->output_width; col > 0; col--) { in put_demapped_gray()
/third_party/toybox/lib/
H A Dlinestack.c94 int columns = 0, col, bytes; in crunch_str() local
98 for (end = start = *str; *end; columns += col, end += bytes) { in crunch_str()
99 if ((bytes = utf8towc(&wc, end, 4))>0 && (col = wcwidth(wc))>=0) { in crunch_str()
101 if (width-columns<col) break; in crunch_str()
112 col = width-columns; in crunch_str()
113 if (col<1) break; in crunch_str()
115 if ((col = escout(out, col, wc))<0) break; in crunch_str()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DRBBITableBuilder.java959 for (int col=0; col < numCols; ++col) { in findDuplicateState()
960 int firstVal = firstSD.fDtran[col]; in findDuplicateState()
961 int duplVal = duplSD.fDtran[col]; in findDuplicateState()
993 for (int col=0; col < numCols; ++col) { in findDuplicateSafeState()
994 int firstVal = firstRow[col]; in findDuplicateSafeState()
995 int duplVal = duplRow[col]; in findDuplicateSafeState()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dflashsv2enc.c79 uint8_t col, row, width, height; member
147 int row, col; in init_blocks() local
150 for (col = 0; col < s->cols; col++) { in init_blocks()
152 b = blocks + (col + row * s->cols); in init_blocks()
153 b->width = (col < s->cols - 1) ? in init_blocks()
155 s->image_width - col * s->block_width; in init_blocks()
162 b->col = col; in init_blocks()
630 int sl, rsl, col, pos, possl; mark_all_blocks() local
650 int row, col, res; encode_all_blocks() local
692 int row, col, buf_pos = 0, len; write_all_blocks() local
[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_common.hpp1167 inline uint32_t specialization_constant_id(uint32_t col, uint32_t row) const in specialization_constant_id()
1169 return m.c[col].id[row]; in specialization_constant_id()
1172 inline uint32_t specialization_constant_id(uint32_t col) const in specialization_constant_id()
1174 return m.id[col]; in specialization_constant_id()
1177 inline uint32_t scalar(uint32_t col = 0, uint32_t row = 0) const in scalar()
1179 return m.c[col].r[row].u32; in scalar()
1182 inline int16_t scalar_i16(uint32_t col = 0, uint32_t row = 0) const in scalar_i16()
1184 return int16_t(m.c[col].r[row].u32 & 0xffffu); in scalar_i16()
1187 inline uint16_t scalar_u16(uint32_t col = 0, uint32_t row = 0) const in scalar_u16()
1189 return uint16_t(m.c[col] in scalar_u16()
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_read_image.cpp58 for (uint32 col = 1; col < cols; col++) in DecodeDelta8()
64 dPtr [col * channels + channel] += dPtr [(col - 1) * channels + channel]; in DecodeDelta8()
89 for (uint32 col = 1; col < cols; col++) in DecodeDelta16()
95 dPtr [col * channels + channel] += dPtr [(col in DecodeDelta16()
[all...]
/third_party/toybox/toys/posix/
H A Dcomm.c28 static void writeline(const char *line, int col) in writeline() argument
30 if (col == 0 && toys.optflags & FLAG_1) return; in writeline()
31 else if (col == 1) { in writeline()
34 } else if (col == 2) { in writeline()
/third_party/icu/icu4c/source/common/
H A Drbbitblb.cpp1214 for (int32_t col=0; col < numCols; ++col) { in findDuplicateState()
1215 int32_t firstVal = firstSD->fDtran->elementAti(col); in findDuplicateState()
1216 int32_t duplVal = duplSD->fDtran->elementAti(col); in findDuplicateState()
1242 for (int32_t col=0; col < numCols; ++col) { in findDuplicateSafeState()
1243 int32_t firstVal = firstRow->charAt(col); in findDuplicateSafeState()
1244 int32_t duplVal = duplRow->charAt(col); in findDuplicateSafeState()
1374 int col; exportTable() local
1596 int col; exportSafeTable() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Drbbitblb.cpp1199 for (int32_t col=0; col < numCols; ++col) { in findDuplicateState()
1200 int32_t firstVal = firstSD->fDtran->elementAti(col); in findDuplicateState()
1201 int32_t duplVal = duplSD->fDtran->elementAti(col); in findDuplicateState()
1227 for (int32_t col=0; col < numCols; ++col) { in findDuplicateSafeState()
1228 int32_t firstVal = firstRow->charAt(col); in findDuplicateSafeState()
1229 int32_t duplVal = duplRow->charAt(col); in findDuplicateSafeState()
1359 int col; exportTable() local
1581 int col; exportSafeTable() local
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Drbbitblb.cpp1208 for (int32_t col=0; col < numCols; ++col) { in findDuplicateState()
1209 int32_t firstVal = firstSD->fDtran->elementAti(col); in findDuplicateState()
1210 int32_t duplVal = duplSD->fDtran->elementAti(col); in findDuplicateState()
1236 for (int32_t col=0; col < numCols; ++col) { in findDuplicateSafeState()
1237 int32_t firstVal = firstRow->charAt(col); in findDuplicateSafeState()
1238 int32_t duplVal = duplRow->charAt(col); in findDuplicateSafeState()
1368 int col; exportTable() local
1581 int col; exportSafeTable() local
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dtscoll.cpp128 IntlTestCollator::doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result) in doTestVariant() argument
132 UCollator *myCollation = col->toUCollator(); in doTestVariant()
134 Collator::EComparisonResult compareResult = col->compare(source, target); in doTestVariant()
137 col->getCollationKey(source, srckey, status); in doTestVariant()
138 col->getCollationKey(target, tgtkey, status); in doTestVariant()
241 IntlTestCollator::doTest(Collator* col, const UChar *source, const UChar *target, Collator::EComparisonResult result) { in doTest() argument
242 doTest(col, UnicodeString(source), UnicodeString(target), result); in doTest()
246 IntlTestCollator::doTest(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result) in doTest() argument
248 if(col) { in doTest()
249 doTestVariant(col, sourc in doTest()
[all...]
/third_party/skia/third_party/externals/harfbuzz/util/
H A Dansi-print.hh130 for (unsigned int col = 0; col < w; col++) in copy_sub_image()
134 for (unsigned int col = 0; col < limit; col++) in copy_sub_image()
137 for (unsigned int col = limit; col < w; col++) in copy_sub_image()
392 for (unsigned int col
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fPrimitiveRestartTests.cpp290 for (int col = 0; col < row + 1; col++) in init()
292 float fx = -1.0f + 2.0f * ((float)col + 0.5f) / (float)numRows; in init()
321 for (int col = 0; col < numCols; col++) in init()
323 float centerX = -1.0f + 2.0f * ((float)col + 0.5f) / (float)numCols; in init()
324 int numVertices = row*numCols + col + 1; in init()
337 if (col < numCol in init()
[all...]
/third_party/libinput/src/
H A Dutil-matrix.h34 float val[3][3]; /* [row][col] */
115 int row, col, i; in matrix_mult() local
118 for (col = 0; col < 3; col++) { in matrix_mult()
121 v += m1->val[row][i] * m2->val[i][col]; in matrix_mult()
123 m.val[row][col] = v; in matrix_mult()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp181 TiXmlParsingData( const char* start, int _tabsize, int row, int col ) in TiXmlParsingData()
187 cursor.col = col; in TiXmlParsingData()
208 int col = cursor.col; in Stamp() local
227 col = 0; in Stamp()
240 col = 0; in Stamp()
258 col = (col / tabsize + 1) * tabsize; in Stamp()
275 { p +=3; ++col; } // in Stamp()
[all...]
/kernel/linux/linux-5.10/arch/s390/boot/
H A Dpgm_check_info.c32 int row, col; in print_pgm_check_info() local
92 for (col = 0; col < 4; col++) { in print_pgm_check_info()
94 p = add_val_as_hex(p, S390_lowcore.gpregs_save_area[row * 4 + col]); in print_pgm_check_info()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
H A DReplaceArrayOfMatrixVarying.cpp123 for (int col = 0; col < type.getCols(); ++col) in ReplaceArrayOfMatrixVarying()
127 EOpIndexDirect, tempMatrixIndexed->deepCopy(), CreateIndexNode(col)); in ReplaceArrayOfMatrixVarying()
130 CreateIndexNode(i * type.getCols() + col)); in ReplaceArrayOfMatrixVarying()
/third_party/vk-gl-cts/framework/common/
H A DtcuMatrixUtil.hpp65 for (int col = 0; col < Cols; col++) in transpose()
66 res(col, row) = mat(row, col); in transpose()
/kernel/linux/linux-5.10/drivers/input/keyboard/
H A Dpmic8xxx-keypad.c108 static u8 pmic8xxx_col_state(struct pmic8xxx_kp *kp, u8 col) in pmic8xxx_col_state() argument
111 if (col == 0x00) in pmic8xxx_col_state()
114 return col & ((1 << kp->num_cols) - 1); in pmic8xxx_col_state()
222 int row, col, code; in __pmic8xxx_kp_scan_matrix() local
230 for (col = 0; col < kp->num_cols; col++) { in __pmic8xxx_kp_scan_matrix()
231 if (!(bits_changed & (1 << col))) in __pmic8xxx_kp_scan_matrix()
234 dev_dbg(kp->dev, "key [%d:%d] %s\n", row, col, in __pmic8xxx_kp_scan_matrix()
235 !(new_state[row] & (1 << col)) in __pmic8xxx_kp_scan_matrix()
[all...]
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dwritesrc.cpp158 int32_t i, col; in usrc_writeArray() local
184 for(i=col=0; i<length; ++i, ++col) { in usrc_writeArray()
186 if(col<16) { in usrc_writeArray()
191 col=0; in usrc_writeArray()
456 int32_t i, col; in usrc_writeArrayOfMostlyInvChars() local
463 for(i=col=0; i<length; ++i, ++col) { in usrc_writeArrayOfMostlyInvChars()
469 col>=32 || in usrc_writeArrayOfMostlyInvChars()
471 (col> in usrc_writeArrayOfMostlyInvChars()
[all...]
/third_party/icu/icu4c/source/tools/toolutil/
H A Dwritesrc.cpp149 int32_t i, col; in usrc_writeArray() local
175 for(i=col=0; i<length; ++i, ++col) { in usrc_writeArray()
177 if(col<16) { in usrc_writeArray()
182 col=0; in usrc_writeArray()
447 int32_t i, col; in usrc_writeArrayOfMostlyInvChars() local
454 for(i=col=0; i<length; ++i, ++col) { in usrc_writeArrayOfMostlyInvChars()
460 col>=32 || in usrc_writeArrayOfMostlyInvChars()
462 (col> in usrc_writeArrayOfMostlyInvChars()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DStructureHLSL.cpp471 for (int col = 0; col < cols; col++) in addBuiltInConstructor()
475 constructor += TString((row == col) ? "x0" : "0.0"); in addBuiltInConstructor()
477 if (row < rows - 1 || col < cols - 1) in addBuiltInConstructor()
486 for (int col = 0; col < cols; col++) in addBuiltInConstructor()
490 if (row < parameter.getRows() && col < parameter.getCols()) in addBuiltInConstructor()
492 constructor += TString("x0") + "[" + str(col) in addBuiltInConstructor()
[all...]

Completed in 22 milliseconds

12345678910>>...30