Home
last modified time | relevance | path

Searched refs:col (Results 326 - 350 of 509) sorted by relevance

1...<<1112131415161718192021

/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/protected_memory/
H A DvktProtectedMemUtils.cpp945 for (int col = 0; col < numCols; col++) in fillWithRandomColorTiles()
949 const int xBegin = (col + 0)*dst.getWidth() / numCols; in fillWithRandomColorTiles()
950 const int xEnd = (col + 1)*dst.getWidth() / numCols; in fillWithRandomColorTiles()
/third_party/vk-gl-cts/modules/gles2/scripts/
H A Dgenutil.py605 for col in range(0, numCols):
607 scalars.append(1.0 if col == row else 0.0)
622 for col in range(0, min(self.numCols, numCols)):
624 res.set(col, row, self.get(col, row))
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp5959 const ImVec4& col = style.Colors[i]; local
5961 if (!output_only_modified || memcmp(&col, &ref->Colors[i], sizeof(ImVec4)) != 0)
5963 name, 23 - (int)strlen(name), "", col.x, col.y, col.z, col.w);
7208 const ImU32 col = ImColor(colf); local
7220 draw_list->AddNgon(ImVec2(x + sz*0.5f, y + sz*0.5f), sz*0.5f, col, ngon_sides, th); x += sz + spacing; // N-gon local
7221 draw_list->AddCircle(ImVec2(x + sz*0.5f, y + sz*0.5f), sz*0.5f, col, circle_segments, th); x += sz + spacing; // Circle local
7222 draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 0.
7228 draw_list->AddLine(ImVec2(x, y), ImVec2(x, y + sz), col, th); x += spacing; // Vertical line (note: drawing a filled rectangle will be faster!) global() local
7242 draw_list->AddNgonFilled(ImVec2(x + sz * 0.5f, y + sz * 0.5f), sz*0.5f, col, ngon_sides); x += sz + spacing; // N-gon global() local
7243 draw_list->AddCircleFilled(ImVec2(x + sz*0.5f, y + sz*0.5f), sz*0.5f, col, circle_segments); x += sz + spacing; // Circle global() local
[all...]
H A Dimgui_internal.h2635 IMGUI_API void TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImU32 col);
2653 IMGUI_API void RenderArrow(ImDrawList* draw_list, ImVec2 pos, ImU32 col, ImGuiDir dir, float scale = 1.0f);
2654 IMGUI_API void RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col);
2655 IMGUI_API void RenderCheckMark(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz);
2657 IMGUI_API void RenderArrowPointingAt(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, ImGuiDir direction, ImU32 col);
2658 IMGUI_API void RenderRectFilledRangeH(ImDrawList* draw_list, const ImRect& rect, ImU32 col, float x_start_norm, float x_end_norm, float rounding);
2659 IMGUI_API void RenderRectFilledWithHole(ImDrawList* draw_list, ImRect outer, ImRect inner, ImU32 col, float rounding);
2719 IMGUI_API void ColorTooltip(const char* text, const float* col, ImGuiColorEditFlags flags);
2720 IMGUI_API void ColorEditOptionsPopup(const float* col, ImGuiColorEditFlags flags);
2738 inline void DebugDrawItemRect(ImU32 col
[all...]
/third_party/ffmpeg/libavcodec/
H A Dexr.c1192 int line, col = 0; in decode_block() local
1235 col = s->tile_attr.xSize * tile_x; in decode_block()
1238 s->xmin + col < s->xmin || s->xmin + col > s->xmax) in decode_block()
1284 window_xmin = FFMIN(avctx->width, FFMAX(0, s->xmin + col)); in decode_block()
1285 window_xmax = FFMIN(avctx->width, FFMAX(0, s->xmin + col + td->xsize)); in decode_block()
1296 if(col == 0) { in decode_block()
1305 if(col + td->xsize == s->xdelta) { in decode_block()
1359 data_xoffset = FFABS(FFMIN(0, s->xmin + col)) * (s->pixel_type == EXR_HALF ? 2 : 4); in decode_block()
/third_party/pcre2/pcre2/src/
H A Dpcre2grep.c611 char *col; in parse_grep_colors() local
614 col = strstr(gc, "ms="); in parse_grep_colors()
615 if (col == NULL) col = strstr(gc, "mt="); in parse_grep_colors()
616 if (col == NULL) return NULL; in parse_grep_colors()
618 col += 3; in parse_grep_colors()
619 while (*col != ':' && *col != 0 && len < sizeof(seq)-1) in parse_grep_colors()
620 seq[len++] = *col++; in parse_grep_colors()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_negative.cpp2875 for (int32 col = 0; col < info.fCFAPatternSize.h; col++)
2878 uint32 index = (pattern >> ((((row << 1) & 14) + (col & 1)) << 1)) & 3;
2880 info.fCFAPattern [row] [col] = info.fCFAPlaneColor [index];
4444 for (int32 col = tile.l; col < tile.r; col++)
4449 uint32 r = rPtr [col & dng_dither::kRNGMask];
/third_party/mesa3d/src/imgui/
H A Dimgui_internal.h1435 IMGUI_API void TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImU32 col);
1450 IMGUI_API void RenderCheckMark(ImVec2 pos, ImU32 col, float sz);
1457 IMGUI_API void RenderArrowPointingAt(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, ImGuiDir direction, ImU32 col);
1458 IMGUI_API void RenderRectFilledRangeH(ImDrawList* draw_list, const ImRect& rect, ImU32 col, float x_start_norm, float x_end_norm, float rounding);
1459 IMGUI_API void RenderPixelEllipsis(ImDrawList* draw_list, ImVec2 pos, int count, ImU32 col);
1492 IMGUI_API void ColorTooltip(const char* text, const float* col, ImGuiColorEditFlags flags);
1493 IMGUI_API void ColorEditOptionsPopup(const float* col, ImGuiColorEditFlags flags);
/third_party/skia/gm/
H A Dwacky_yuv_formats.cpp370 static void convert_rgba_to_yuva(const float mtx[20], SkColor col, uint8_t yuv[4]) { in convert_rgba_to_yuva() argument
371 const uint8_t r = SkColorGetR(col); in convert_rgba_to_yuva()
372 const uint8_t g = SkColorGetG(col); in convert_rgba_to_yuva()
373 const uint8_t b = SkColorGetB(col); in convert_rgba_to_yuva()
378 yuv[3] = SkColorGetA(col); in convert_rgba_to_yuva()
427 SkColor col = orientedBM.getColor(x, y); in extract_planes() local
431 convert_rgba_to_yuva(mtx, col, yuva); in extract_planes()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fMultisampleTests.cpp1476 for (int col = 0; col < numQuadRowsCols; col++) in iterate()
1478 float x0 = (float)(col+0) / (float)numQuadRowsCols * 2.0f - 1.0f; in iterate()
1479 float x1 = (float)(col+1) / (float)numQuadRowsCols * 2.0f - 1.0f; in iterate()
1484 Vec4 alpha0 (0.0f, 0.0f, 0.0f, m_isAlphaToCoverageCase ? (float)col / (float)(numQuadRowsCols-1) : 1.0f); in iterate()
1489 float value = (float)(row*numQuadRowsCols + col) / (float)(numQuadRowsCols*numQuadRowsCols-1); in iterate()
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fMultisampleTests.cpp1323 for (int col = 0; col < numQuadRowsCols; col++) in iterate()
1325 float x0 = (float)(col+0) / (float)numQuadRowsCols * 2.0f - 1.0f; in iterate()
1326 float x1 = (float)(col+1) / (float)numQuadRowsCols * 2.0f - 1.0f; in iterate()
1331 Vec4 alpha0 (0.0f, 0.0f, 0.0f, m_isAlphaToCoverageCase ? (float)col / (float)(numQuadRowsCols-1) : 1.0f); in iterate()
1336 float value = (float)(row*numQuadRowsCols + col) / (float)(numQuadRowsCols*numQuadRowsCols-1); in iterate()
H A Des2fShaderMatrixTests.cpp999 for (int col = 0; col < 4; col++) in init()
1004 m_userAttribTransforms[attribNdx](row, col) = -m_userAttribTransforms[attribNdx](row, col); in init()
1007 m_userAttribTransforms[attribNdx](row, col) += 0.3f; in init()
1010 m_userAttribTransforms[attribNdx](row, col) -= 0.1f; in init()
/drivers/hdf_core/framework/tools/hdi-gen/lexer/
H A Dlexer.cpp188 token.location.col = file_->GetCharColumnNumber(); in ReadToken()
227 token.location.col = 1; in InitCurToken()
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationFrozenMonkeyTest.java232 Collator col = Collator.getInstance(new Locale("en", "US")); in TestRules()
233 String baseRules = ((RuleBasedCollator)col).getRules(); in TestRules()
H A DCollationServiceTest.java259 Collator col = Collator.getInstance(bar_BAR); in TestRegisterFactory()
260 ULocale valid = col.getLocale(ULocale.VALID_LOCALE); in TestRegisterFactory()
H A DCollationMonkeyTest.java207 Collator col = Collator.getInstance(new Locale("en", "US")); in TestRules()
208 String baseRules = ((RuleBasedCollator)col).getRules(); in TestRules()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationFrozenMonkeyTest.java235 Collator col = Collator.getInstance(new Locale("en", "US")); in TestRules()
236 String baseRules = ((RuleBasedCollator)col).getRules(); in TestRules()
H A DCollationServiceTest.java262 Collator col = Collator.getInstance(bar_BAR); in TestRegisterFactory()
263 ULocale valid = col.getLocale(ULocale.VALID_LOCALE); in TestRegisterFactory()
H A DCollationMonkeyTest.java210 Collator col = Collator.getInstance(new Locale("en", "US")); in TestRules()
211 String baseRules = ((RuleBasedCollator)col).getRules(); in TestRules()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DProgram.h109 LinkedVarying(const std::string &name, GLenum type, GLsizei size, int reg, int col);
118 int col; // First register element, assigned during link member
/third_party/skia/tests/
H A DTestUtils.cpp206 bool CheckSolidPixels(const SkColor4f& col, in CheckSolidPixels() argument
212 // First convert 'col' to be compatible with 'pixmap' in CheckSolidPixels()
220 GrCPixmap srcPixmap(srcInfo, col.vec(), floatBpp); in CheckSolidPixels()
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_searchengine.py291 def search(pat, line, col, wrap, ok=0):
292 res = func(self.text, pat, line, col, wrap, ok)
/third_party/skia/tools/viewer/
H A DSlideDir.cpp435 const int col = static_cast<int>(x / fCellSize.width()), in findCell() local
437 idx = row * fColumns + col; in findCell()
/third_party/python/Lib/lib2to3/pgen2/
H A Dtokenize.py179 row, col = start
181 col_offset = col - self.prev_col
/third_party/vk-gl-cts/modules/egl/
H A DteglColorClearCase.cpp96 tcu::RGBA col (rnd.getUint32()); in computeRandomClear()
98 return ClearOp(x, y, w, h, col); in computeRandomClear()

Completed in 56 milliseconds

1...<<1112131415161718192021