Home
last modified time | relevance | path

Searched refs:col (Results 51 - 75 of 732) sorted by relevance

12345678910>>...30

/third_party/backends/sanei/
H A Dsanei_jpeg.c108 register JDIMENSION col; in sanei_jpeg_copy_pixel_rows() local
116 for (col = dest->samples_per_row; col > 0; col--) in sanei_jpeg_copy_pixel_rows()
141 register JDIMENSION col; in sanei_jpeg_put_demapped_rgb() local
147 for (col = cinfo->output_width; col > 0; col--) in sanei_jpeg_put_demapped_rgb()
166 register JDIMENSION col; in sanei_jpeg_put_demapped_gray() local
172 for (col in sanei_jpeg_put_demapped_gray()
[all...]
/test/ostest/wukong/report/src/
H A Dformat_json.cpp36 for (uint32_t col = 0; col < header.size(); col++) { in FormatDetail()
37 ss << header[col] << ":\"" << record[row][col] << "\""; in FormatDetail()
38 if (col == (header.size() - 1)) { in FormatDetail()
H A Dtable.cpp25 for (uint32_t col = 0; col < cols; col++) { in Table()
26 uint32_t max = cloumn_header[col].size(); in Table()
28 max = record[row][col].size() > max ? record[row][col].size() : max; in Table()
/third_party/icu/icu4c/source/test/perf/collperf/
H A Dcollperf.cpp71 static UCollator * col; // for qsort callback function member
83 UCollator * DataIndex::col; member in DataIndex
90 UCollator * col; member in CmdKeyGen
102 CmdKeyGen(UErrorCode, UCollator * col,DWORD win_langid, int32_t count, DataIndex * data,Func fn,int32_t) in CmdKeyGen() argument
103 :col(col),win_langid(win_langid), count(count), data(data), fn(fn){} in CmdKeyGen()
114 ucol_getSortKey(col, data[i].icu_data, -1, icu_key, MAX_KEY_LENGTH); in icu_key_null()
118 ucol_getSortKey(col, data[i].icu_data, data[i].icu_data_len, icu_key, MAX_KEY_LENGTH); in icu_key_len()
147 CmdIter(UErrorCode & status, UCollator * col, int32_t count, CA_uchar *data, Func fn, int32_t,int32_t) in CmdIter() argument
151 iter = ucol_openElements(col, NUL in CmdIter()
202 CmdIterAll(UErrorCode & status, UCollator * col, int32_t count, UChar * data, CALL call,int32_t,int32_t) CmdIterAll() argument
402 UCollator * col; global() member in CmdBinSearch
410 CmdBinSearch(UErrorCode, UCollator * col,DWORD win_langid,int32_t count,DataIndex * rnd,DataIndex * ord,Func fn) CmdBinSearch() argument
495 UCollator * col; global() member in CollPerfTest
796 DataIndex::col = col; prepareData() member in CollPerfTest::DataIndex
[all...]
/third_party/node/deps/openssl/openssl/ssl/
H A Dd1_srtp.c66 char *col; in ssl_ctx_make_profiles() local
76 col = strchr(ptr, ':'); in ssl_ctx_make_profiles()
78 if (!find_profile_by_name(ptr, &p, col ? (size_t)(col - ptr) in ssl_ctx_make_profiles()
94 if (col) in ssl_ctx_make_profiles()
95 ptr = col + 1; in ssl_ctx_make_profiles()
96 } while (col); in ssl_ctx_make_profiles()
/third_party/openssl/ssl/
H A Dd1_srtp.c66 char *col; in ssl_ctx_make_profiles() local
76 col = strchr(ptr, ':'); in ssl_ctx_make_profiles()
78 if (!find_profile_by_name(ptr, &p, col ? (size_t)(col - ptr) in ssl_ctx_make_profiles()
94 if (col) in ssl_ctx_make_profiles()
95 ptr = col + 1; in ssl_ctx_make_profiles()
96 } while (col); in ssl_ctx_make_profiles()
/third_party/vk-gl-cts/framework/common/
H A DtcuSurface.hpp56 void setPixel (int x, int y, RGBA col);
70 inline void Surface::setPixel (int x, int y, RGBA col) in setPixel() argument
78 *pixAddr = col.getPacked(); in setPixel()
80 *((deUint8*)pixAddr + 0) = (deUint8)col.getRed(); in setPixel()
81 *((deUint8*)pixAddr + 1) = (deUint8)col.getGreen(); in setPixel()
82 *((deUint8*)pixAddr + 2) = (deUint8)col.getBlue(); in setPixel()
83 *((deUint8*)pixAddr + 3) = (deUint8)col.getAlpha(); in setPixel()
/kernel/linux/linux-5.10/drivers/input/keyboard/
H A Dsamsung-keypad.c82 unsigned int col; in samsung_keypad_scan() local
85 for (col = 0; col < keypad->cols; col++) { in samsung_keypad_scan()
88 val &= ~(1 << col) << 8; in samsung_keypad_scan()
91 val &= ~(1 << col); in samsung_keypad_scan()
98 row_state[col] = ~val & ((1 << keypad->rows) - 1); in samsung_keypad_scan()
113 unsigned int col, row; in samsung_keypad_report() local
115 for (col = 0; col < keypa in samsung_keypad_report()
288 u32 row, col, key_code; samsung_keypad_parse_dt() local
[all...]
H A Dclps711x-keypad.c37 int col, row; in clps711x_keypad_poll() local
39 for (col = 0; col < CLPS711X_KEYPAD_COL_COUNT; col++) { in clps711x_keypad_poll()
43 SYSCON1_KBDSCAN(8 + col)); in clps711x_keypad_poll()
57 if (test_bit(col, data->last_state) != state) { in clps711x_keypad_poll()
58 int code = MATRIX_SCAN_CODE(row, col, in clps711x_keypad_poll()
62 set_bit(col, data->last_state); in clps711x_keypad_poll()
66 clear_bit(col, data->last_state); in clps711x_keypad_poll()
H A Dcros_ec_keyb.c160 int col, row; in cros_ec_keyb_process() local
174 for (col = 0; col < ckdev->cols; col++) { in cros_ec_keyb_process()
176 int pos = MATRIX_SCAN_CODE(row, col, ckdev->row_shift); in cros_ec_keyb_process()
179 new_state = kb_state[col] & (1 << row); in cros_ec_keyb_process()
180 old_state = ckdev->old_kb_state[col] & (1 << row); in cros_ec_keyb_process()
184 row, col, new_state); in cros_ec_keyb_process()
191 ckdev->old_kb_state[col] = kb_state[col]; in cros_ec_keyb_process()
293 int row, col; cros_ec_keyb_compute_valid_keys() local
[all...]
/kernel/linux/linux-6.6/drivers/input/keyboard/
H A Dsamsung-keypad.c82 unsigned int col; in samsung_keypad_scan() local
85 for (col = 0; col < keypad->cols; col++) { in samsung_keypad_scan()
88 val &= ~(1 << col) << 8; in samsung_keypad_scan()
91 val &= ~(1 << col); in samsung_keypad_scan()
98 row_state[col] = ~val & ((1 << keypad->rows) - 1); in samsung_keypad_scan()
113 unsigned int col, row; in samsung_keypad_report() local
115 for (col = 0; col < keypa in samsung_keypad_report()
287 u32 row, col, key_code; samsung_keypad_parse_dt() local
[all...]
H A Dclps711x-keypad.c39 int col, row; in clps711x_keypad_poll() local
41 for (col = 0; col < CLPS711X_KEYPAD_COL_COUNT; col++) { in clps711x_keypad_poll()
45 SYSCON1_KBDSCAN(8 + col)); in clps711x_keypad_poll()
59 if (test_bit(col, data->last_state) != state) { in clps711x_keypad_poll()
60 int code = MATRIX_SCAN_CODE(row, col, in clps711x_keypad_poll()
64 set_bit(col, data->last_state); in clps711x_keypad_poll()
68 clear_bit(col, data->last_state); in clps711x_keypad_poll()
/third_party/skia/src/sksl/ir/
H A DSkSLConstructorMatrixResize.cpp34 int col = n / rows; in getConstantValue() local
36 SkASSERT(col >= 0); in getConstantValue()
38 SkASSERT(col < this->type().columns()); in getConstantValue()
48 if (col < this->argument()->type().columns() && row < this->argument()->type().rows()) { in getConstantValue()
50 n = row + (col * this->argument()->type().rows()); in getConstantValue()
55 return (col == row) ? 1.0 : 0.0; in getConstantValue()
/kernel/linux/linux-5.10/arch/mips/loongson64/
H A Dnuma.c70 static int __init compute_node_distance(int row, int col) in compute_node_distance() argument
74 int package_col = col * loongson_sysconf.cores_per_node / in compute_node_distance()
77 if (col == row) in compute_node_distance()
87 int row, col; in init_topology_matrix() local
90 for (col = 0; col < MAX_NUMNODES; col++) in init_topology_matrix()
91 __node_distances[row][col] = -1; in init_topology_matrix()
94 for_each_online_node(col) { in init_topology_matrix()
95 __node_distances[row][col] in init_topology_matrix()
[all...]
/third_party/toybox/toys/pending/
H A Dmore.c91 unsigned rows = 24, cols = 80, row = 0, col = 0; in more_main() local
116 st.st_size = show_prompt = col = row = 0; in more_main()
144 col = row = show_prompt = 0; in more_main()
150 if (ch == '\t') col = (col | 0x7) + 1; in more_main()
151 else col++; in more_main()
152 if (col == cols) putchar(ch = '\n'); in more_main()
154 col = 0; in more_main()
/applications/sample/camera/launcher/launcher/src/main/cpp/
H A Dview_group_page.cpp38 bool ViewGroupPage::IsFull(int16_t& row, int16_t& col) in IsFull() argument
44 col = j; in IsFull()
78 void ViewGroupPage::CalculateAppPosition(AppInfo* pAppInfo, int16_t row, int16_t col) in CalculateAppPosition() argument
89 int16_t xB = scale * width + (scale + 1) * width * col; in CalculateAppPosition()
123 int16_t col = 0; in AddApp() local
129 if (IsFull(row, col)) { in AddApp()
133 pAppInfo->SetLocation(row, col); in AddApp()
134 CalculateAppPosition(pAppInfo, row, col); in AddApp()
138 row_col_[row][col] = true; in AddApp()
/third_party/icu/tools/multi/proj/provider/
H A Dcolldiff.cpp73 Collator *col = Collator::createInstance(Locale(locID),subStatus); in main() local
78 int32_t len = col->getSortKey(stuff, -1, bytes, 200); in main()
86 UCollator *col = ucol_openFromShortString(xbuf2, false,NULL, &subStatus); in main() local
88 UCollator *col = ucol_open(locID, &subStatus); in main() local
98 int32_t def = ucol_getShortDefinitionString(col,locID/*NULL*/,xbuf3,200,&subStatus); in main()
106 int32_t len = ucol_getSortKey(col, stuff, -1, bytes, 200); in main()
130 int32_t def4 = ucol_getShortDefinitionString(col,locID/*NULL*/,xbuf4,200,&subStatus); in main()
158 delete col; in main()
160 ucol_close(col); in main()
/third_party/skia/third_party/externals/imgui/
H A Dimgui_draw.cpp663 void ImDrawList::PrimRect(const ImVec2& a, const ImVec2& c, ImU32 col) in PrimRect() argument
669 _VtxWritePtr[0].pos = a; _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col; in PrimRect()
670 _VtxWritePtr[1].pos = b; _VtxWritePtr[1].uv = uv; _VtxWritePtr[1].col = col; in PrimRect()
671 _VtxWritePtr[2].pos = c; _VtxWritePtr[2].uv = uv; _VtxWritePtr[2].col = col; in PrimRect()
672 _VtxWritePtr[3].pos = d; _VtxWritePtr[3].uv = uv; _VtxWritePtr[3].col = col; in PrimRect()
678 void ImDrawList::PrimRectUV(const ImVec2& a, const ImVec2& c, const ImVec2& uv_a, const ImVec2& uv_c, ImU32 col) in PrimRectUV() argument
693 PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col) PrimQuadUV() argument
716 AddPolyline(const ImVec2* points, const int points_count, ImU32 col, ImDrawFlags flags, float thickness) AddPolyline() argument
972 AddConvexPolyFilled(const ImVec2* points, const int points_count, ImU32 col) AddConvexPolyFilled() argument
1377 AddLine(const ImVec2& p1, const ImVec2& p2, ImU32 col, float thickness) AddLine() argument
1388 AddRect(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, ImDrawFlags flags, float thickness) AddRect() argument
1399 AddRectFilled(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, ImDrawFlags flags) AddRectFilled() argument
1431 AddQuad(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness) AddQuad() argument
1443 AddQuadFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col) AddQuadFilled() argument
1455 AddTriangle(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness) AddTriangle() argument
1466 AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col) AddTriangleFilled() argument
1477 AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) AddCircle() argument
1501 AddCircleFilled(const ImVec2& center, float radius, ImU32 col, int num_segments) AddCircleFilled() argument
1526 AddNgon(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) AddNgon() argument
1538 AddNgonFilled(const ImVec2& center, float radius, ImU32 col, int num_segments) AddNgonFilled() argument
1550 AddBezierCubic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness, int num_segments) AddBezierCubic() argument
1561 AddBezierQuadratic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness, int num_segments) AddBezierQuadratic() argument
1571 AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end, float wrap_width, const ImVec4* cpu_fine_clip_rect) AddText() argument
1600 AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end) AddText() argument
1605 AddImage(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col) AddImage() argument
1621 AddImageQuad(ImTextureID user_texture_id, const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& uv1, const ImVec2& uv2, const ImVec2& uv3, const ImVec2& uv4, ImU32 col) AddImageQuad() argument
1637 AddImageRounded(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col, float rounding, ImDrawFlags flags) AddImageRounded() argument
3519 RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, ImWchar c) const RenderChar() argument
3534 RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width, bool cpu_fine_clip) const RenderText() argument
3742 RenderArrow(ImDrawList* draw_list, ImVec2 pos, ImU32 col, ImGuiDir dir, float scale) RenderArrow() argument
3773 RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col) RenderBullet() argument
3778 RenderCheckMark(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz) RenderCheckMark() argument
3815 RenderArrowPointingAt(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, ImGuiDir direction, ImU32 col) RenderArrowPointingAt() argument
3819 case ImGuiDir_Left: draw_list->AddTriangleFilled(ImVec2(pos.x + half_sz.x, pos.y - half_sz.y), ImVec2(pos.x + half_sz.x, pos.y + half_sz.y), pos, col); return; RenderArrowPointingAt() local
3820 case ImGuiDir_Right: draw_list->AddTriangleFilled(ImVec2(pos.x - half_sz.x, pos.y + half_sz.y), ImVec2(pos.x - half_sz.x, pos.y - half_sz.y), pos, col); return; RenderArrowPointingAt() local
3821 case ImGuiDir_Up: draw_list->AddTriangleFilled(ImVec2(pos.x + half_sz.x, pos.y + half_sz.y), ImVec2(pos.x - half_sz.x, pos.y + half_sz.y), pos, col); return; RenderArrowPointingAt() local
3822 case ImGuiDir_Down: draw_list->AddTriangleFilled(ImVec2(pos.x - half_sz.x, pos.y - half_sz.y), ImVec2(pos.x + half_sz.x, pos.y - half_sz.y), pos, col); return; RenderArrowPointingAt() local
3836 RenderRectFilledRangeH(ImDrawList* draw_list, const ImRect& rect, ImU32 col, float x_start_norm, float x_end_norm, float rounding) RenderRectFilledRangeH() argument
3896 RenderRectFilledWithHole(ImDrawList* draw_list, ImRect outer, ImRect inner, ImU32 col, float rounding) RenderRectFilledWithHole() argument
3902 if (fill_L) draw_list->AddRectFilled(ImVec2(outer.Min.x, inner.Min.y), ImVec2(inner.Min.x, inner.Max.y), col, rounding, (fill_U ? 0 : ImDrawFlags_RoundCornersTopLeft) | (fill_D ? 0 : ImDrawFlags_RoundCornersBottomLeft)); RenderRectFilledWithHole() local
3903 if (fill_R) draw_list->AddRectFilled(ImVec2(inner.Max.x, inner.Min.y), ImVec2(outer.Max.x, inner.Max.y), col, rounding, (fill_U ? 0 : ImDrawFlags_RoundCornersTopRight) | (fill_D ? 0 : ImDrawFlags_RoundCornersBottomRight)); RenderRectFilledWithHole() local
3904 if (fill_U) draw_list->AddRectFilled(ImVec2(inner.Min.x, outer.Min.y), ImVec2(inner.Max.x, inner.Min.y), col, rounding, (fill_L ? 0 : ImDrawFlags_RoundCornersTopLeft) | (fill_R ? 0 : ImDrawFlags_RoundCornersTopRight)); RenderRectFilledWithHole() local
3905 if (fill_D) draw_list->AddRectFilled(ImVec2(inner.Min.x, inner.Max.y), ImVec2(inner.Max.x, outer.Max.y), col, rounding, (fill_L ? 0 : ImDrawFlags_RoundCornersBottomLeft) | (fill_R ? 0 : ImDrawFlags_RoundCornersBottomRight)); RenderRectFilledWithHole() local
3906 if (fill_L && fill_U) draw_list->AddRectFilled(ImVec2(outer.Min.x, outer.Min.y), ImVec2(inner.Min.x, inner.Min.y), col, rounding, ImDrawFlags_RoundCornersTopLeft); RenderRectFilledWithHole() local
3907 if (fill_R && fill_U) draw_list->AddRectFilled(ImVec2(inner.Max.x, outer.Min.y), ImVec2(outer.Max.x, inner.Min.y), col, rounding, ImDrawFlags_RoundCornersTopRight); RenderRectFilledWithHole() local
3908 if (fill_L && fill_D) draw_list->AddRectFilled(ImVec2(outer.Min.x, inner.Max.y), ImVec2(inner.Min.x, outer.Max.y), col, rounding, ImDrawFlags_RoundCornersBottomLeft); RenderRectFilledWithHole() local
3909 if (fill_R && fill_D) draw_list->AddRectFilled(ImVec2(inner.Max.x, inner.Max.y), ImVec2(outer.Max.x, outer.Max.y), col, rounding, ImDrawFlags_RoundCornersBottomRight); RenderRectFilledWithHole() local
3916 RenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list, ImVec2 p_min, ImVec2 p_max, ImU32 col, float grid_step, ImVec2 grid_off, float rounding, ImDrawFlags flags) RenderColorRectWithAlphaCheckerboard() argument
[all...]
/kernel/linux/linux-5.10/arch/mips/sgi-ip27/
H A Dip27-memory.c161 nasid_t row, col; in init_topology_matrix() local
164 for (col = 0; col < MAX_NUMNODES; col++) in init_topology_matrix()
165 __node_distances[row][col] = -1; in init_topology_matrix()
168 for_each_online_node(col) { in init_topology_matrix()
169 __node_distances[row][col] = in init_topology_matrix()
170 compute_node_distance(row, col); in init_topology_matrix()
182 nasid_t row, col; in dump_topology() local
187 for_each_online_node(col) in dump_topology()
[all...]
/kernel/linux/linux-6.6/arch/mips/sgi-ip27/
H A Dip27-memory.c161 nasid_t row, col; in init_topology_matrix() local
164 for (col = 0; col < MAX_NUMNODES; col++) in init_topology_matrix()
165 __node_distances[row][col] = -1; in init_topology_matrix()
168 for_each_online_node(col) { in init_topology_matrix()
169 __node_distances[row][col] = in init_topology_matrix()
170 compute_node_distance(row, col); in init_topology_matrix()
182 nasid_t row, col; in dump_topology() local
187 for_each_online_node(col) in dump_topology()
[all...]
/kernel/linux/linux-5.10/scripts/kconfig/
H A Dgconf.c574 GtkTreeViewColumn *col; in on_show_name1_activate() local
577 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_NAME); in on_show_name1_activate()
578 if (col) in on_show_name1_activate()
579 gtk_tree_view_column_set_visible(col, show_name); in on_show_name1_activate()
585 GtkTreeViewColumn *col; in on_show_range1_activate() local
588 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_NO); in on_show_range1_activate()
589 if (col) in on_show_range1_activate()
590 gtk_tree_view_column_set_visible(col, show_range); in on_show_range1_activate()
591 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_MOD); in on_show_range1_activate()
592 if (col) in on_show_range1_activate()
603 GtkTreeViewColumn *col; on_show_data1_activate() local
806 change_sym_value(struct menu *menu, gint col) change_sym_value() argument
867 GtkTreeViewColumn *col; column2index() local
888 gint col; on_treeview2_button_press_event() local
945 gint col; on_treeview2_key_press_event() local
[all...]
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dgconf.c570 GtkTreeViewColumn *col; in on_show_name1_activate() local
573 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_NAME); in on_show_name1_activate()
574 if (col) in on_show_name1_activate()
575 gtk_tree_view_column_set_visible(col, show_name); in on_show_name1_activate()
581 GtkTreeViewColumn *col; in on_show_range1_activate() local
584 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_NO); in on_show_range1_activate()
585 if (col) in on_show_range1_activate()
586 gtk_tree_view_column_set_visible(col, show_range); in on_show_range1_activate()
587 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_MOD); in on_show_range1_activate()
588 if (col) in on_show_range1_activate()
599 GtkTreeViewColumn *col; on_show_data1_activate() local
799 change_sym_value(struct menu *menu, gint col) change_sym_value() argument
860 GtkTreeViewColumn *col; column2index() local
881 gint col; on_treeview2_button_press_event() local
938 gint col; on_treeview2_key_press_event() local
[all...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftlcdfil.c143 FT_Byte* col = column; in ft_lcd_filter_fir() local
148 val = col[0]; in ft_lcd_filter_fir()
152 col -= pitch; in ft_lcd_filter_fir()
154 val = col[0]; in ft_lcd_filter_fir()
159 col -= pitch; in ft_lcd_filter_fir()
161 for ( yy = 2; yy < height; yy++, col -= pitch ) in ft_lcd_filter_fir()
163 val = col[0]; in ft_lcd_filter_fir()
170 col[pitch * 2] = FT_SHIFTCLAMP( fir[0] ); in ft_lcd_filter_fir()
173 col[pitch * 2] = FT_SHIFTCLAMP( fir[1] ); in ft_lcd_filter_fir()
174 col[pitc in ft_lcd_filter_fir()
252 FT_Byte* col = column - 2 * pitch; _ft_lcd_filter_legacy() local
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_lossless_jpeg.cpp460 int32 QuickPredict (int32 col,
1386 * Calculate the predictor for sample curRowBuf[col][curComp].
1402 inline int32 dng_lossless_decoder::QuickPredict (int32 col, in QuickPredict() argument
1408 int32 diag = prevRowBuf [col - 1] [curComp]; in QuickPredict()
1409 int32 upper = prevRowBuf [col ] [curComp]; in QuickPredict()
1410 int32 left = curRowBuf [col - 1] [curComp]; in QuickPredict()
1781 for (int32 col = 1; col < numCOL; col++) in DecodeFirstRow()
1817 curRowBuf [col] [curCom in DecodeFirstRow()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dsimple_idct.c65 /* row idct is multiple by 16 * sqrt(2.0), col idct4 is normalized,
69 static inline void idct4col_put(uint8_t *dest, ptrdiff_t line_size, const int16_t *col) in idct4col_put() argument
73 a0 = col[8*0]; in idct4col_put()
74 a1 = col[8*2]; in idct4col_put()
75 a2 = col[8*4]; in idct4col_put()
76 a3 = col[8*6]; in idct4col_put()
148 static inline void idct4col_add(uint8_t *dest, ptrdiff_t line_size, const int16_t *col) in idct4col_add() argument
152 a0 = col[8*0]; in idct4col_add()
153 a1 = col[8*1]; in idct4col_add()
154 a2 = col[ in idct4col_add()
[all...]

Completed in 18 milliseconds

12345678910>>...30