Home
last modified time | relevance | path

Searched refs:col (Results 526 - 550 of 638) sorted by relevance

1...<<212223242526

/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DSamplerCore.cpp263 const Vector4s col(c); in sampleTexture()
264 applySwizzle(state.swizzleR, c.x, col); in sampleTexture()
265 applySwizzle(state.swizzleG, c.y, col); in sampleTexture()
266 applySwizzle(state.swizzleB, c.z, col); in sampleTexture()
267 applySwizzle(state.swizzleA, c.w, col); in sampleTexture()
491 const Vector4f col(c); in sampleTexture()
492 applySwizzle(state.swizzleR, c.x, col); in sampleTexture()
493 applySwizzle(state.swizzleG, c.y, col); in sampleTexture()
494 applySwizzle(state.swizzleB, c.z, col); in sampleTexture()
495 applySwizzle(state.swizzleA, c.w, col); in sampleTexture()
[all...]
H A DVertexRoutine.cpp767 UInt col = *Pointer<UInt>(data + OFFSET(DrawData, vs.col[i])); in transformFeedback()
775 UInt rOffsetX = r * col * sizeof(float); in transformFeedback()
778 For(UInt c = 0, c < col, c++) in transformFeedback()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_hlsl.cpp2609 for (uint32_t col = 0; col < mtype.columns; col++) in emit_hlsl_entry_point()
2610 statement(name, "[", col, "] = stage_input.", name, "_", col, ";"); in emit_hlsl_entry_point()
4868 for (uint32_t col = 0; col < type.columns; col++) in emit_instruction()
4872 expr += to_extract_component_expression(b, col); in emit_instruction()
4873 if (col in emit_instruction()
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/hid/
H A Dhid-input.c2397 struct hid_collection *col = &hid->collection[i]; in hidinput_connect() local
2398 if (col->type == HID_COLLECTION_APPLICATION || col->type == HID_COLLECTION_PHYSICAL) { in hidinput_connect()
2399 if (IS_INPUT_APPLICATION(col->usage)) { in hidinput_connect()
/third_party/ffmpeg/libavcodec/
H A Dg2meet.c1022 int i, j, nb, col; in kempf_restore_buf() local
1038 col = get_bits(&gb, nb); in kempf_restore_buf()
1039 if (col != tidx) in kempf_restore_buf()
1040 memcpy(dst + i * 3, pal + col * 3, 3); in kempf_restore_buf()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleShaderFragmentMaskTests.cpp81 PositionColor (const tcu::Vec4& pos, const tcu::UVec4& col) : position(pos) in PositionColor()
83 deMemcpy(color.uint32, col.getPtr(), sizeof(color.uint32)); in PositionColor()
86 PositionColor (const tcu::Vec4& pos, const tcu::Vec4& col) : position(pos) in PositionColor()
88 deMemcpy(color.float32, col.getPtr(), sizeof(color.float32)); in PositionColor()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineMultisampleShaderFragmentMaskTests.cpp80 PositionColor (const tcu::Vec4& pos, const tcu::UVec4& col) : position(pos) in PositionColor()
82 deMemcpy(color.uint32, col.getPtr(), sizeof(color.uint32)); in PositionColor()
85 PositionColor (const tcu::Vec4& pos, const tcu::Vec4& col) : position(pos) in PositionColor()
87 deMemcpy(color.float32, col.getPtr(), sizeof(color.float32)); in PositionColor()
/third_party/vk-gl-cts/modules/gles2/stress/
H A Des2sSpecialFloatTests.cpp187 const tcu::RGBA col = result.getPixel(x, y); in checkResultImage() local
189 if (col.getGreen() == 255) in checkResultImage()
320 const tcu::RGBA col = resultImage.getPixel(x, y); in drawTestPattern() local
321 const tcu::IVec4 colorDiff = tcu::abs(col.toIVec() - refCol.toIVec()); in drawTestPattern()
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Ddec_neon.c1200 #define STORE_WHT(dst, col, rows) do { \
1201 *dst = vgetq_lane_s32(rows.val[0], col); (dst) += 16; \
1202 *dst = vgetq_lane_s32(rows.val[1], col); (dst) += 16; \
1203 *dst = vgetq_lane_s32(rows.val[2], col); (dst) += 16; \
1204 *dst = vgetq_lane_s32(rows.val[3], col); (dst) += 16; \
/third_party/spirv-tools/source/opt/
H A Dconst_folding_rules.cpp391 for (uint32_t col = 0; col < number_of_rows; ++col) {
393 result_elements[col]);
394 result_columns[col] =
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fTextureGatherTests.cpp111 for (int col = 0; col < numCols; col++) in fillWithRandomColorTiles()
115 const int xBegin = (col+0)*dst.getWidth()/numCols; in fillWithRandomColorTiles()
116 const int xEnd = (col+1)*dst.getWidth()/numCols; in fillWithRandomColorTiles()
/third_party/json/tests/thirdparty/doctest/
H A Ddoctest.h3960 auto col = "";
3963 case Color::Red: col = "[0;31m"; break;
3964 case Color::Green: col = "[0;32m"; break;
3965 case Color::Blue: col = "[0;34m"; break;
3966 case Color::Cyan: col = "[0;36m"; break;
3967 case Color::Yellow: col = "[0;33m"; break;
3968 case Color::Grey: col = "[1;30m"; break;
3969 case Color::LightGrey: col = "[0;37m"; break;
3970 case Color::BrightRed: col = "[1;31m"; break;
3971 case Color::BrightGreen: col
[all...]
/third_party/elfutils/libdw/
H A Dlibdw.h650 extern int dwarf_getsrc_file (Dwarf *dbg, const char *fname, int line, int col,
/third_party/mesa3d/src/intel/tools/imgui/
H A Dimgui_impl_opengl3.cpp171 glVertexAttribPointer(g_AttribLocationColor, 4, GL_UNSIGNED_BYTE, GL_TRUE, sizeof(ImDrawVert), (GLvoid*)IM_OFFSETOF(ImDrawVert, col)); in ImGui_ImplOpenGL3_RenderDrawData()
/third_party/python/Lib/idlelib/
H A Dformat.py89 lineno, col = map(int, mark.split("."))
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DParseHelper.h28 int col; member
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DRenderer.hpp139 unsigned int col[MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS]; // Number of columns to read member
/third_party/skia/third_party/externals/imgui/
H A Dimgui_tables.cpp2305 // [ 0. ] no freeze [ 0. ] row freeze [ 01 ] col freeze [ 01 ] row+col freeze
2531 ImU32 col; in TableDrawBorders() local
2536 col = is_resized ? GetColorU32(ImGuiCol_SeparatorActive) : is_hovered ? GetColorU32(ImGuiCol_SeparatorHovered) : table->BorderColorStrong; in TableDrawBorders()
2541 col = (table->Flags & (ImGuiTableFlags_NoBordersInBody | ImGuiTableFlags_NoBordersInBodyUntilResize)) ? table->BorderColorStrong : table->BorderColorLight; in TableDrawBorders()
2545 inner_drawlist->AddLine(ImVec2(column->MaxX, draw_y1), ImVec2(column->MaxX, draw_y2), col, border_size); in TableDrawBorders()
2919 const ImU32 col = GetColorU32(held ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_HeaderHovered : ImGuiCol_Header);
2920 //RenderFrame(bb.Min, bb.Max, col, false, 0.0f);
2921 TableSetBgColor(ImGuiTableBgTarget_CellBg, col, table->CurrentColumn);
4006 const ImU32 col
[all...]
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource11.js122 var lineCol = { line: -1, col: -1 };
123 var limLineCol = { line: -1, col: -1 };
127 context.write("(" + lineCol.line + "," + lineCol.col + ")--" +
128 "(" + limLineCol.line + "," + limLineCol.col + "): ");
2496 var lineCol = { line: -1, col: -1 };
2497 var limLineCol = { line: -1, col: -1 };
2501 context.write("(" + lineCol.line + "," + lineCol.col + ")--" +
2502 "(" + limLineCol.line + "," + limLineCol.col + "): ");
/third_party/backends/backend/genesys/
H A Dgenesys.cpp2667 std::uint32_t col = calibration_data[(x + y * pixels_per_line * channels) * 2]; in genesys_dark_white_shading_calibration() local
2668 col |= in genesys_dark_white_shading_calibration()
2672 if (col > white) in genesys_dark_white_shading_calibration()
2673 white = col; in genesys_dark_white_shading_calibration()
2674 if (col < dark) in genesys_dark_white_shading_calibration()
2675 dark = col; in genesys_dark_white_shading_calibration()
2691 std::uint32_t col = calibration_data[(x + y * pixels_per_line * channels) * 2]; in genesys_dark_white_shading_calibration() local
2692 col |= in genesys_dark_white_shading_calibration()
2696 if (col >= white) in genesys_dark_white_shading_calibration()
2698 white_sum += col; in genesys_dark_white_shading_calibration()
[all...]
/foundation/arkui/ace_engine/advanced_ui_component/gridobjectsortcomponent/interfaces/
H A Dgridobjectsortcomponent.js1292 }, undefined, v8, () => { }, { page: "librarys/gridobjectsortcomponent/src/main/ets/components/GridObjectSortComponent.ets", line: 764, col: 5 });
1326 }, undefined, m8, () => { }, { page: "librarys/gridobjectsortcomponent/src/main/ets/components/GridObjectSortComponent.ets", line: 769, col: 5 });
2037 }, undefined, s, () => { }, { page: "librarys/gridobjectsortcomponent/src/main/ets/components/GridObjectSortComponent.ets", line: 1333, col: 11 });
2082 }, undefined, g, () => { }, { page: "librarys/gridobjectsortcomponent/src/main/ets/components/GridObjectSortComponent.ets", line: 1342, col: 11 });
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/
H A Dmedialibrary_album_operations.cpp213 for (const auto &col : columns) { in QueryAlbumDebug()
214 MEDIA_DEBUG_LOG("Querying album, col: %{private}s", col.c_str()); in QueryAlbumDebug()
241 for (const auto &col : columns) { in QuerySqlDebug()
242 MEDIA_DEBUG_LOG("Quering album, col: %{private}s", col.c_str()); in QuerySqlDebug()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_single_ver_relational_storage_extend_executor.cpp1516 for (const auto &[col, value] : vBucket) { in UpdateLocalAssetId()
1517 if (value.index() == TYPE_INDEX<Asset> && col == fieldName) { in UpdateLocalAssetId()
1526 for (const auto &[col, value] : vBucket) { in UpdateLocalAssetsId()
1527 if (value.index() == TYPE_INDEX<Assets> && col == fieldName) { in UpdateLocalAssetsId()
/third_party/skia/src/core/
H A DSkMatrix.cpp604 static inline float rowcol3(const float row[], const float col[]) { in rowcol3() argument
605 return row[0] * col[0] + row[1] * col[3] + row[2] * col[6]; in rowcol3()
/third_party/vk-gl-cts/modules/gles3/stress/
H A Des3sSpecialFloatTests.cpp190 const tcu::RGBA col = result.getPixel(x, y); in checkResultImage() local
192 if (col.getGreen() == 255) in checkResultImage()
328 const tcu::RGBA col = resultImage.getPixel(x, y); in drawTestPattern() local
329 const tcu::IVec4 colorDiff = tcu::abs(col.toIVec() - refCol.toIVec()); in drawTestPattern()

Completed in 70 milliseconds

1...<<212223242526