/kernel/linux/linux-6.6/drivers/input/keyboard/ |
H A D | nspire-keypad.c | 56 int row, col; in nspire_keypad_irq() local 78 for (col = 0; col < KEYPAD_BITMASK_COLS; col++) { in nspire_keypad_irq() 79 if (!(changed & (1U << col))) in nspire_keypad_irq() 82 code = MATRIX_SCAN_CODE(row, col, keypad->row_shift); in nspire_keypad_irq() 85 bits & (1U << col)); in nspire_keypad_irq()
|
H A D | tca8418_keypad.c | 163 int error, col, row; in tca8418_read_keypad() local 182 col = code % TCA8418_MAX_COLS; in tca8418_read_keypad() 184 row = (col) ? row : row - 1; in tca8418_read_keypad() 185 col = (col) ? col - 1 : TCA8418_MAX_COLS - 1; in tca8418_read_keypad() 187 code = MATRIX_SCAN_CODE(row, col, keypad_data->row_shift); in tca8418_read_keypad()
|
H A D | pinephone-keyboard.c | 213 int col, crc, ret, row; in ppkb_update() local 231 for (col = 0; col < PPKB_COLS; ++col) { in ppkb_update() 232 u8 old = old_buf[1 + col]; in ppkb_update() 233 u8 new = new_buf[1 + col]; in ppkb_update() 252 fn_state = value ? ppkb->fn_pressed : ppkb->fn_state[col] & mask; in ppkb_update() 254 ppkb->fn_state[col] ^= mask; in ppkb_update() 258 col, row_shift); in ppkb_update()
|
/third_party/astc-encoder/Test/ |
H A D | astc_test_result_plot.py | 167 for j, col in enumerate(chartCols): 168 if row == "fastest" and (("1.7" in col) or ("2.0" in col)): 182 title = get_human_eq_name(col, row) 205 x, y, m, r = get_series(results, col, row, fn) 208 col, row, fn) 221 for j, col in enumerate(chartCols):
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | canittst.cpp | 258 UnicodeString CanonicalIteratorTest::collectionToString(Hashtable *col) { in collectionToString() argument 263 UnicodeString **resArray = new UnicodeString*[col->count()]; in collectionToString() 269 ne = col->nextElement(el); in collectionToString() 275 ne = col->nextElement(el); in collectionToString() 278 for(i = 0; i<col->count(); ++i) { in collectionToString() 282 qsort(resArray, col->count(), sizeof(UnicodeString *), compareUnicodeStrings); in collectionToString() 286 for(i = 1; i<col->count(); ++i) { in collectionToString() 292 Iterator it = col.iterator(); in collectionToString()
|
H A D | restsnew.cpp | 373 int32_t count, row=0, col=0; in TestIteration() local 407 col=0; in TestIteration() 413 expected+=itoa(col, buf); in TestIteration() 414 col++; in TestIteration() 418 CONFIRM_EQ(col, rowbundle.getSize()); in TestIteration() 586 int32_t count, row=0, col=0; in TestOtherAPI() local 621 col=0; in TestOtherAPI() 625 temp = ures_getByIndex(rowbundle, col, temp, &err); in TestOtherAPI() 627 UnicodeString bla2 = ures_getUnicodeStringByIndex(rowbundle, col, &err); in TestOtherAPI() 630 expected+=itoa(col, bu in TestOtherAPI() 699 int32_t i,j,row,col, actual_bundle; testTag() local [all...] |
/third_party/python/Tools/scripts/ |
H A D | fixdiv.py | 245 for (row, col), line in slashes: 267 for (row, col), line in slashes: 272 if line[col:col+1] != "/": 283 print(">", line[:col] + "/" + line[col:]) 309 for (row, col), line in slashes:
|
/third_party/ffmpeg/libavcodec/ |
H A D | vp9.c | 1087 static void decode_sb(VP9TileData *td, int row, int col, VP9Filter *lflvl, in decode_sb() argument 1091 int c = ((s->above_partition_ctx[col] >> (3 - bl)) & 1) | in decode_sb() 1103 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp); in decode_sb() 1104 } else if (col + hbs < s->cols) { // FIXME why not <=? in decode_sb() 1109 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp); in decode_sb() 1112 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp); in decode_sb() 1115 ff_vp9_decode_block(td, row + hbs, col, lflvl, yoff, uvoff, bl, bp); in decode_sb() 1118 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp); in decode_sb() 1121 ff_vp9_decode_block(td, row, col + hbs, lflvl, yoff, uvoff, bl, bp); in decode_sb() 1124 decode_sb(td, row, col, lflv in decode_sb() 1166 decode_sb_mem(VP9TileData *td, int row, int col, VP9Filter *lflvl, ptrdiff_t yoff, ptrdiff_t uvoff, enum BlockLevel bl) decode_sb_mem() argument 1263 int row, col, tile_row, tile_col, ret; decode_tiles() local 1399 int bytesperpixel = s->bytesperpixel, row, col, tile_row; decode_tiles_mt() local 1475 int bytesperpixel = s->bytesperpixel, col, i; loopfilter_proc() local 1533 unsigned int col = td->block_structure[block_tile].col; vp9_export_enc_params() local [all...] |
H A D | vp9recon.c | 35 uint8_t *l, int col, int x, int w, in check_intra_mode() 41 int have_left = col > td->tile_col_start || x > 0; in check_intra_mode() 98 int n_px_need = 4 << tx, n_px_have = (((s->cols - col) << !ss_h) - x) * 4; in check_intra_mode() 109 s->intra_pred_data[p] + (col * (8 >> ss_h) + x * 4) * bytesperpixel : in check_intra_mode() 113 s->intra_pred_data[p] + (col * (8 >> ss_h) + x * 4) * bytesperpixel : in check_intra_mode() 223 int row = td->row, col = td->col; in intra_recon() local 226 int end_x = FFMIN(2 * (s->cols - col), w4); in intra_recon() 247 col, x, w4, row, y, b->tx, 0, 0, 0, bytesperpixel); in intra_recon() 275 ptr, td->uv_stride, l, col, in intra_recon() 32 check_intra_mode(VP9TileData *td, int mode, uint8_t **a, uint8_t *dst_edge, ptrdiff_t stride_edge, uint8_t *dst_inner, ptrdiff_t stride_inner, uint8_t *l, int col, int x, int w, int row, int y, enum TxfmMode tx, int p, int ss_h, int ss_v, int bytesperpixel) check_intra_mode() argument 573 int row = td->row, col = td->col; inter_recon() local [all...] |
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | rdgif.c | 555 register JDIMENSION col; in METHODDEF() local 559 for (col = cinfo->image_width; col > 0; col--) { in METHODDEF() 580 register JDIMENSION col; in METHODDEF() local 594 for (col = cinfo->image_width; col > 0; col--) { in METHODDEF() 625 register JDIMENSION col; in METHODDEF() local 649 for (col in METHODDEF() [all...] |
/kernel/linux/linux-5.10/scripts/dtc/include-prefixes/dt-bindings/input/ |
H A D | input.h | 15 #define MATRIX_KEY(row, col, code) \ 16 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/kernel/linux/linux-5.10/include/dt-bindings/input/ |
H A D | input.h | 15 #define MATRIX_KEY(row, col, code) \ 16 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/kernel/linux/linux-6.6/include/dt-bindings/input/ |
H A D | input.h | 15 #define MATRIX_KEY(row, col, code) \ 16 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/kernel/linux/linux-6.6/scripts/dtc/include-prefixes/dt-bindings/input/ |
H A D | input.h | 15 #define MATRIX_KEY(row, col, code) \ 16 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/irregular/ |
H A D | grid_irregular_filler.h | 133 * @param col The column index where the item is being added. 137 const FillParameters& params, int32_t itemIdx, int32_t col, int32_t row, bool isCache); 213 * @param col The column index of the item's bottom-left tile. 216 int32_t FindItemTopRow(int32_t row, int32_t col) const; 223 * @param col column index of item's top-left corner 226 void SetItemInfo(int32_t idx, int32_t row, int32_t col, GridItemSize size);
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/ |
H A D | step_result_set.h | 42 int Get(int32_t col, ValueObject &value) override;
51 int GetValue(int32_t col, T &value);
52 std::pair<int, ValueObject> GetValueObject(int32_t col, size_t index);
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | abs_result_set.cpp | 164 LOG_ERROR("type invalid col:%{public}d, type:%{public}d!", columnIndex, type);
in GetBlob() 182 LOG_ERROR("type invalid col:%{public}d, type:%{public}d!", columnIndex, type);
in GetString() 210 LOG_ERROR("type invalid col:%{public}d, type:%{public}d!", columnIndex, type);
in GetLong() 227 LOG_ERROR("type invalid col:%{public}d, type:%{public}d!", columnIndex, type);
in GetDouble() 453 int AbsResultSet::GetAsset(int32_t col, ValueObject::Asset &value)
in GetAsset() argument 456 int errorCode = Get(col, valueObject);
in GetAsset() 466 LOG_ERROR("failed, type is %{public}d, col is %{public}d!", valueObject.GetType(), col);
in GetAsset() 473 int AbsResultSet::GetAssets(int32_t col, ValueObject::Assets &value)
in GetAssets() argument 476 int errorCode = Get(col, valueObjec in GetAssets() 493 GetFloat32Array(int32_t col, ValueObject::FloatVector &value) GetFloat32Array() argument [all...] |
/third_party/backends/backend/ |
H A D | umax_pp_mid.c | 337 int col = BW_MODE; in sanei_umax_pp_start() local 353 col = BW2_MODE; in sanei_umax_pp_start() 356 col = BW_MODE; in sanei_umax_pp_start() 359 col = RGB_MODE; in sanei_umax_pp_start() 364 (x + sanei_umax_pp_getLeft (), y, width, height, dpi, col, gain, in sanei_umax_pp_start()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_ra.cpp | 69 for (size_t col = 0; col < row; ++col) { in initialize() 70 auto& col_entry = clr[col]; in initialize() 73 comp_interference.add(row, col); in initialize()
|
/third_party/toybox/toys/posix/ |
H A D | df.c | 42 static void measure_column(int col, const char *s) in measure_column() argument 46 if (TT.column_widths[col] < len) TT.column_widths[col] = len; in measure_column() 49 static void measure_numeric_column(int col, long long n) in measure_numeric_column() argument 52 return measure_column(col, toybuf); in measure_numeric_column()
|
/third_party/libwebsockets/lib/misc/cache-ttl/ |
H A D | file.c | 268 nsc_match(const char *wc, size_t wc_len, const char *col, size_t col_len, in nsc_match() argument 274 return lws_strcmp_wildcard(wc, wc_len, col, col_len); in nsc_match() 286 if (!strcmp(col, wc)) in nsc_match() 291 if (n && col_len <= n && !strncmp(wc, col, n)) in nsc_match() 295 !strncmp(wc, col, n + 1)) /* check for trailing / */ in nsc_match() 365 char col[64]; in nsc_line_to_tag() local 373 while (bn < size && n < (int)sizeof(col) - 1 && in nsc_line_to_tag() 375 col[n++] = buf[bn++]; in nsc_line_to_tag() 376 col[n] = '\0'; in nsc_line_to_tag() 382 expiry = (lws_usec_t)((unsigned long long)atoll(col) * in nsc_line_to_tag() [all...] |
/kernel/linux/linux-5.10/drivers/input/ |
H A D | matrix-keymap.c | 28 unsigned int col = KEY_COL(key); in matrix_keypad_map_key() local 31 if (row >= rows || col >= cols) { in matrix_keypad_map_key() 33 "%s: invalid keymap entry 0x%x (row: %d, col: %d, rows: %d, cols: %d)\n", in matrix_keypad_map_key() 34 __func__, key, row, col, rows, cols); in matrix_keypad_map_key() 38 keymap[MATRIX_SCAN_CODE(row, col, row_shift)] = code; in matrix_keypad_map_key() 136 * keyboard driver that uses row and col as indices.
|
/kernel/linux/linux-6.6/drivers/input/ |
H A D | matrix-keymap.c | 28 unsigned int col = KEY_COL(key); in matrix_keypad_map_key() local 31 if (row >= rows || col >= cols) { in matrix_keypad_map_key() 33 "%s: invalid keymap entry 0x%x (row: %d, col: %d, rows: %d, cols: %d)\n", in matrix_keypad_map_key() 34 __func__, key, row, col, rows, cols); in matrix_keypad_map_key() 38 keymap[MATRIX_SCAN_CODE(row, col, row_shift)] = code; in matrix_keypad_map_key() 136 * keyboard driver that uses row and col as indices.
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_bad_pixels.h | 86 bool IsGreen (int32 row, int32 col) const in IsGreen() 88 return (((uint32) row + (uint32) col + fBayerPhase + (fBayerPhase >> 1)) & 1) == 0; in IsGreen() 285 bool IsGreen (int32 row, int32 col) const in IsGreen() 287 return ((row + col + fBayerPhase + (fBayerPhase >> 1)) & 1) == 0; in IsGreen()
|
/third_party/skia/gm/ |
H A D | bc1_transparency.cpp | 34 static uint16_t to565(SkColor col) { in to565() argument 35 int r5 = SkMulDiv255Round(31, SkColorGetR(col)); in to565() 36 int g6 = SkMulDiv255Round(63, SkColorGetG(col)); in to565() 37 int b5 = SkMulDiv255Round(31, SkColorGetB(col)); in to565()
|