Searched refs:col1 (Results 1 - 17 of 17) sorted by relevance

/xsrc/external/mit/libXfont/dist/src/fc/
H A Dfsconvert.c249 int col1, col2; local in function:fs_build_range
250 col1 = col & 0xf0;
251 col2 = col1 + 15;
252 if (col1 < firstcol) col1 = firstcol;
257 for (col = col1; col <= col2; col++)
286 int row1, col1, row2, col2; local in function:fs_build_range
288 col1 = col2 = *data++;
304 if (col1 < firstcol) col1
[all...]
/xsrc/external/mit/libXfont2/dist/src/fc/
H A Dfsconvert.c251 int col1, col2; local in function:fs_build_range
252 col1 = col & 0xf0;
253 col2 = col1 + 15;
254 if (col1 < firstcol) col1 = firstcol;
259 for (col = col1; col <= col2; col++)
288 int row1, col1, row2, col2; local in function:fs_build_range
290 col1 = col2 = *data++;
306 if (col1 < firstcol) col1
[all...]
/xsrc/external/mit/xf86-video-openchrome/dist/src/
H A Dvia_3d.c32 CARD32 col1; member in struct:__anon820a79130108
267 v3d->blendCol1 = vOp->col1 << 2;
576 op->col1 = viaOpCodes[i][2];
H A Dvia_xv_overlay.c853 CARD32 * col1, CARD32 * col2)
954 *col1 = (dwA << 24) | (dwB1 << 16) | (dwC1 << 8) | dwD_Int;
988 *col1 = (dwA << 24) | (dwB1 << 18) | (dwC1 << 9) | dwD;
1002 CARD32 col1, col2; local in function:viaSetColorSpace
1005 &col1, &col2);
1010 VIASETREG(V3_ColorSpaceReg_1, col1);
1012 DBG_DD(ErrorF("000002C4 %08lx\n", col1));
1023 VIASETREG(V1_ColorSpaceReg_1, col1);
1026 DBG_DD(ErrorF("00000284 %08lx\n", col1));
851 viaCalculateVideoColor(VIAPtr pVia,int hue,int saturation,int brightness,int contrast,Bool reset,CARD32 * col1,CARD32 * col2) argument
/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_span.c840 GLfloat (*col1)[4] = span->array->attribs[VARYING_SLOT_COL1]; local in function:add_specular
870 col0[i][0] += col1[i][0];
871 col0[i][1] += col1[i][1];
872 col0[i][2] += col1[i][2];
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_span.c840 GLfloat (*col1)[4] = span->array->attribs[VARYING_SLOT_COL1]; local in function:add_specular
870 col0[i][0] += col1[i][0];
871 col0[i][1] += col1[i][1];
872 col0[i][2] += col1[i][2];
/xsrc/external/mit/xf86-video-nouveau/dist/src/
H A Dnv50_exa.c132 NV50EXASetPattern(PixmapPtr pdpix, int col0, int col1, int pat0, int pat1) argument
138 PUSH_DATA (push, col1);
H A Dnvc0_exa.c134 NVC0EXASetPattern(PixmapPtr pdpix, int col0, int col1, int pat0, int pat1) argument
140 PUSH_DATA (push, col1);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_s3tc.c574 LLVMValueRef rgba, a, colors0, colors1, col0, col1, const2; local in function:s3tc_dxt1_full_to_rgba_aos
610 col1 = LLVMBuildLShr(builder, colors, lp_build_const_int_vec(gallivm, type, 16), "");
616 color1 = color_expand_565_to_8888(gallivm, n, col1);
684 sel_mask = lp_build_compare(gallivm, type, PIPE_FUNC_GREATER, col0, col1);
1196 * v01 has col0 in 32bit elem 0, col1 in elem 1.
1435 * col0 will be rgba0, rgba4, rgba8, rgba12, col1 rgba1, rgba5, ...
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_s3tc.c572 LLVMValueRef rgba, a, colors0, colors1, col0, col1, const2; local in function:s3tc_dxt1_full_to_rgba_aos
608 col1 = LLVMBuildLShr(builder, colors, lp_build_const_int_vec(gallivm, type, 16), "");
614 color1 = color_expand_565_to_8888(gallivm, n, col1);
682 sel_mask = lp_build_compare(gallivm, type, PIPE_FUNC_GREATER, col0, col1);
1236 * v01 has col0 in 32bit elem 0, col1 in elem 1.
1475 * col0 will be rgba0, rgba4, rgba8, rgba12, col1 rgba1, rgba5, ...
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_demo.cpp530 static float col1[3] = { 1.0f,0.0f,0.2f }; local in function:ShowDemoWindowWidgets
532 ImGui::ColorEdit3("color 1", col1);
1366 static float col1[3] = { 1.0f,0.0f,0.2f }; local in function:ShowDemoWindowWidgets
1368 ImGui::ColorEdit3("color 1", col1);
H A Dimgui_draw.cpp1311 void ImGui::ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1) argument
1321 int r = ImLerp((int)(col0 >> IM_COL32_R_SHIFT) & 0xFF, (int)(col1 >> IM_COL32_R_SHIFT) & 0xFF, t);
1322 int g = ImLerp((int)(col0 >> IM_COL32_G_SHIFT) & 0xFF, (int)(col1 >> IM_COL32_G_SHIFT) & 0xFF, t);
1323 int b = ImLerp((int)(col0 >> IM_COL32_B_SHIFT) & 0xFF, (int)(col1 >> IM_COL32_B_SHIFT) & 0xFF, t);
H A Dimgui_internal.h1500 IMGUI_API void ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1);
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_draw.cpp1311 void ImGui::ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1) argument
1321 int r = ImLerp((int)(col0 >> IM_COL32_R_SHIFT) & 0xFF, (int)(col1 >> IM_COL32_R_SHIFT) & 0xFF, t);
1322 int g = ImLerp((int)(col0 >> IM_COL32_G_SHIFT) & 0xFF, (int)(col1 >> IM_COL32_G_SHIFT) & 0xFF, t);
1323 int b = ImLerp((int)(col0 >> IM_COL32_B_SHIFT) & 0xFF, (int)(col1 >> IM_COL32_B_SHIFT) & 0xFF, t);
H A Dimgui_internal.h1500 IMGUI_API void ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1);
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/
H A Dir3_compiler_nir.c1918 struct ir3_instruction *col1 = ir3_create_collect(ctx, src1, nsrc1); local in function:emit_tex
1921 samp_tex, col0, col1);
1932 samp_tex, col0, col1);
/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
H A Dir3_compiler_nir.c2651 struct ir3_instruction *col1 = ir3_create_collect(b, src1, nsrc1); local in function:emit_tex
2669 sam = emit_sam(ctx, opc, info, type, MASK(ncomp), col0, col1);
2684 col0, col1);

Completed in 63 milliseconds