Home
last modified time | relevance | path

Searched refs:col (Results 251 - 275 of 861) sorted by relevance

1...<<11121314151617181920>>...35

/kernel/linux/linux-5.10/drivers/soc/samsung/
H A Dexynos-asv.h54 unsigned int row, unsigned int col) in __asv_get_table_entry()
56 return table->buf[row * (table->num_cols) + col]; in __asv_get_table_entry()
53 __asv_get_table_entry(const struct exynos_asv_table *table, unsigned int row, unsigned int col) __asv_get_table_entry() argument
/kernel/linux/linux-6.6/drivers/soc/samsung/
H A Dexynos-asv.h54 unsigned int row, unsigned int col) in __asv_get_table_entry()
56 return table->buf[row * (table->num_cols) + col]; in __asv_get_table_entry()
53 __asv_get_table_entry(const struct exynos_asv_table *table, unsigned int row, unsigned int col) __asv_get_table_entry() argument
/third_party/python/Lib/sqlite3/
H A Ddump.py61 ",".join("""'||quote("{0}")||'""".format(col.replace('"', '""')) for col in column_names))
/third_party/mesa3d/src/imgui/
H A Dimgui_widgets.cpp253 void ImGui::TextColored(const ImVec4& col, const char* fmt, ...) in TextColored() argument
257 TextColoredV(col, fmt, args); in TextColored()
261 void ImGui::TextColoredV(const ImVec4& col, const char* fmt, va_list args) in TextColoredV() argument
263 PushStyleColor(ImGuiCol_Text, col); in TextColoredV()
573 const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); in ButtonEx() local
575 RenderFrame(bb.Min, bb.Max, col, true, style.FrameRounding); in ButtonEx()
647 const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); in ArrowButtonEx() local
649 RenderFrame(bb.Min, bb.Max, col, true, g.Style.FrameRounding); in ArrowButtonEx()
701 ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); in CollapseButton() local
703 window->DrawList->AddCircleFilled(bb.GetCenter() + ImVec2(0.0f, -0.5f), g.FontSize * 0.5f + 1.0f, col, in CollapseButton()
896 const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); ImageButton() local
1258 const ImU32 col = GetColorU32(held ? ImGuiCol_SeparatorActive : (hovered && g.HoveredIdTimer >= hover_visibility_delay) ? ImGuiCol_SeparatorHovered : ImGuiCol_Separator); SplitterBehavior() local
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dimage.c410 GLint row, col; in _mesa_expand_bitmap() local
419 for (col = 0; col < width; col++) { in _mesa_expand_bitmap()
422 dstRow[col] = onValue; in _mesa_expand_bitmap()
441 for (col = 0; col < width; col++) { in _mesa_expand_bitmap()
444 dstRow[col] = onValue; in _mesa_expand_bitmap()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_matrix.cpp54 for (uint32 col = 0; col < fCols; col++) in dng_matrix()
57 fData [row] [col] = 0.0; in dng_matrix()
73 for (uint32 col = 0; col < fCols; col++) in dng_matrix()
76 fData [row] [col] = m.fData [row] [col]; in dng_matrix()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_result_set_stub.cpp235 int col; in OnGetSize() local
236 ITypesUtil::Unmarshal(data, col); in OnGetSize()
238 int status = resultSet_->GetSize(col, value); in OnGetSize()
240 ZLOGE("failed, status:%{public}d, col:%{public}d, size:%{public}zu", status, col, value); in OnGetSize()
/kernel/linux/linux-5.10/drivers/input/keyboard/
H A Dmax7359_keypad.c89 int val, row, col, release, code; in max7359_interrupt() local
93 col = (val >> 3) & 0x7; in max7359_interrupt()
96 code = MATRIX_SCAN_CODE(row, col, MAX7359_ROW_SHIFT); in max7359_interrupt()
99 "key[%d:%d] %s\n", row, col, release ? "release" : "press"); in max7359_interrupt()
H A Dlpc32xx-keys.c72 static void lpc32xx_mod_states(struct lpc32xx_kscan_drv *kscandat, int col) in lpc32xx_mod_states() argument
78 key = readl(LPC32XX_KS_DATA(kscandat->kscan_base, col)); in lpc32xx_mod_states()
79 changed = key ^ kscandat->lastkeystates[col]; in lpc32xx_mod_states()
80 kscandat->lastkeystates[col] = key; in lpc32xx_mod_states()
85 scancode = MATRIX_SCAN_CODE(row, col, in lpc32xx_mod_states()
H A Dnomadik-ske-keypad.c139 static void ske_keypad_report(struct ske_keypad *keypad, u8 status, int col) in ske_keypad_report() argument
154 code = MATRIX_SCAN_CODE(row, col, SKE_KEYPAD_ROW_SHIFT); in ske_keypad_report()
168 int col = 0; in ske_keypad_read_data() local
186 col = i * 2; in ske_keypad_read_data()
187 ske_keypad_report(keypad, status, col); in ske_keypad_read_data()
191 col = (i * 2) + 1; in ske_keypad_read_data()
192 ske_keypad_report(keypad, status, col); in ske_keypad_read_data()
H A Domap4-keypad.c127 unsigned int col, row, code, changed; in omap4_keypad_irq_thread_fn() local
138 for (col = 0; col < keypad_data->cols; col++) { in omap4_keypad_irq_thread_fn()
139 if (changed & (1 << col)) { in omap4_keypad_irq_thread_fn()
140 code = MATRIX_SCAN_CODE(row, col, in omap4_keypad_irq_thread_fn()
145 key_state[row] & (1 << col)); in omap4_keypad_irq_thread_fn()
/kernel/linux/linux-6.6/drivers/input/keyboard/
H A Dmax7359_keypad.c89 int val, row, col, release, code; in max7359_interrupt() local
93 col = (val >> 3) & 0x7; in max7359_interrupt()
96 code = MATRIX_SCAN_CODE(row, col, MAX7359_ROW_SHIFT); in max7359_interrupt()
99 "key[%d:%d] %s\n", row, col, release ? "release" : "press"); in max7359_interrupt()
H A Dlpc32xx-keys.c72 static void lpc32xx_mod_states(struct lpc32xx_kscan_drv *kscandat, int col) in lpc32xx_mod_states() argument
78 key = readl(LPC32XX_KS_DATA(kscandat->kscan_base, col)); in lpc32xx_mod_states()
79 changed = key ^ kscandat->lastkeystates[col]; in lpc32xx_mod_states()
80 kscandat->lastkeystates[col] = key; in lpc32xx_mod_states()
85 scancode = MATRIX_SCAN_CODE(row, col, in lpc32xx_mod_states()
/third_party/ffmpeg/libavcodec/
H A Dvp9dec.h78 uint8_t /* bit=col */ mask[2 /* 0=y, 1=uv */][2 /* 0=col, 1=row */]
171 int row, row7, col, col7; member
233 unsigned int col:13; member
244 void ff_vp9_decode_block(VP9TileData *td, int row, int col,
249 int row, int col, ptrdiff_t yoff, ptrdiff_t uvoff);
H A Dvp9lpf.c26 static av_always_inline void filter_plane_cols(VP9Context *s, int col, int ss_h, int ss_v, in filter_plane_cols() argument
40 if (col || x > 1) { in filter_plane_cols()
179 int row, int col, ptrdiff_t yoff, ptrdiff_t uvoff) in ff_vp9_loopfilter_sb()
194 filter_plane_cols(s, col, 0, 0, lflvl->level, lflvl->mask[0][0], dst, ls_y); in ff_vp9_loopfilter_sb()
199 filter_plane_cols(s, col, s->ss_h, s->ss_v, lflvl->level, uv_masks[0], dst, ls_uv); in ff_vp9_loopfilter_sb()
178 ff_vp9_loopfilter_sb(AVCodecContext *avctx, VP9Filter *lflvl, int row, int col, ptrdiff_t yoff, ptrdiff_t uvoff) ff_vp9_loopfilter_sb() argument
/third_party/node/src/
H A Dnode_win32_etw_provider-inl.h91 col, \
102 ETW_WRITE_INT32_DATA(descriptors + 8, &col); \
252 INT32 col = 1; in NODE_V8SYMBOL_ADD() local
265 col, in NODE_V8SYMBOL_ADD()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DCubeMapTextureTest.cpp153 for (size_t col = 0; col < kTextureSize / kCubeFaceSectionCountSqrt; ++col) in runSampleCoordinateTransformTest()
160 size_t c = col + scol * kTextureSize / kCubeFaceSectionCountSqrt; in runSampleCoordinateTransformTest()
211 // always generates (row,col) coordinates (0, 0), (0, 1), (1, 0), (1, 1) which is the order in runSampleCoordinateTransformTest()
/third_party/skia/samplecode/
H A DSampleShadowColor.cpp205 for (int col = 0; col < 10; ++col) {
206 paint.setColor(kColors[10*row + col]);
/third_party/skia/third_party/externals/libwebp/src/dec/
H A Dvp8l_dec.c1017 int col = dec->last_pixel_ % width; in DecodeAlphaData() local
1026 (pos < last) ? GetHtreeGroupForPos(hdr, col, row) : NULL; in DecodeAlphaData()
1034 if ((col & mask) == 0) { in DecodeAlphaData()
1035 htree_group = GetHtreeGroupForPos(hdr, col, row); in DecodeAlphaData()
1043 ++col; in DecodeAlphaData()
1044 if (col >= width) { in DecodeAlphaData()
1045 col = 0; in DecodeAlphaData()
1066 col += length; in DecodeAlphaData()
1067 while (col >= width) { in DecodeAlphaData()
1068 col in DecodeAlphaData()
1122 int col = dec->last_pixel_ % width; DecodeImageData() local
[all...]
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dabs_shared_result_set.cpp143 int AbsSharedResultSet::Get(int32_t col, ValueObject& value) in Get() argument
146 int errorCode = CheckState(col); in Get()
151 auto *cellUnit = block->GetCellUnit(block->GetBlockPos(), col); in Get()
153 LOG_ERROR("cellUnit is null, col is %{public}d!", col); in Get()
172 return GetCustomerValue(col, value, block.get()); in Get()
258 LOG_ERROR("cellUnit is null, col is %{public}d!", index); in GetCustomerValue()
290 LOG_ERROR("invalid type is %{public}d, col is %{public}d!", cellUnit->type, index); in GetCustomerValue()
/kernel/linux/linux-5.10/drivers/edac/
H A Docteon_edac-lmc.c35 unsigned long col; member
49 "DIMM %d rank %d bank %d row %d col %d", in octeon_lmc_edac_poll()
97 fadr.cn61xx.fcol = pvt->col; in octeon_lmc_edac_poll_o2()
100 "DIMM %d rank %d bank %d row %d col %d", in octeon_lmc_edac_poll_o2()
164 TEMPLATE_SHOW(col); variable
165 TEMPLATE_STORE(col); variable
209 static DEVICE_ATTR(col, S_IRUGO | S_IWUSR,
/kernel/linux/linux-5.10/drivers/video/fbdev/sis/
H A Dsis_accel.c308 u32 col = 0; in fbcon_sis_fillrect() local
330 case 8: col = rect->color; in fbcon_sis_fillrect()
333 case 32: col = ((u32 *)(info->pseudo_palette))[rect->color]; in fbcon_sis_fillrect()
340 SiS300SetupForSolidFill(ivideo, col, myrops[rect->rop]); in fbcon_sis_fillrect()
347 SiS310SetupForSolidFill(ivideo, col, myrops[rect->rop]); in fbcon_sis_fillrect()
/kernel/linux/linux-6.6/drivers/video/fbdev/sis/
H A Dsis_accel.c308 u32 col = 0; in fbcon_sis_fillrect() local
330 case 8: col = rect->color; in fbcon_sis_fillrect()
333 case 32: col = ((u32 *)(info->pseudo_palette))[rect->color]; in fbcon_sis_fillrect()
340 SiS300SetupForSolidFill(ivideo, col, myrops[rect->rop]); in fbcon_sis_fillrect()
347 SiS310SetupForSolidFill(ivideo, col, myrops[rect->rop]); in fbcon_sis_fillrect()
/kernel/linux/linux-6.6/drivers/edac/
H A Docteon_edac-lmc.c35 unsigned long col; member
49 "DIMM %d rank %d bank %d row %d col %d", in octeon_lmc_edac_poll()
97 fadr.cn61xx.fcol = pvt->col; in octeon_lmc_edac_poll_o2()
100 "DIMM %d rank %d bank %d row %d col %d", in octeon_lmc_edac_poll_o2()
164 TEMPLATE_SHOW(col); variable
165 TEMPLATE_STORE(col); variable
209 static DEVICE_ATTR(col, S_IRUGO | S_IWUSR,
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fFboCompletenessTests.cpp358 for (Formats::const_iterator col = colorFmts.begin(); col != colorFmts.end(); col++) in iterate()
360 comb.colorFmt = *col; in iterate()
361 comb.colorKind = formatKind(*col); in iterate()

Completed in 19 milliseconds

1...<<11121314151617181920>>...35