Searched refs:chroma (Results 1 - 25 of 59) sorted by relevance

123

/xsrc/external/mit/libX11/dist/src/xcms/
H A DLabMnL.c59 * XcmsCIELabQueryMinL - Compute max Lstar for a hue and chroma
67 XcmsFloat chroma,
71 * Return the maximum Lstar for a specified hue_angle and chroma.
114 tmp.spec.CIELab.a_star = XCMS_CIEASTAROFHUE(hue, chroma);
115 tmp.spec.CIELab.b_star = XCMS_CIEBSTAROFHUE(hue, chroma);
119 /* Step 1: Obtain the maximum L_star and chroma for this hue. */
128 if (max_chroma <= chroma) {
130 * If the chroma is greater than the chroma for the
131 * maximum L/chroma poin
63 XcmsCIELabQueryMinL(XcmsCCC ccc,XcmsFloat hue_angle,XcmsFloat chroma,XcmsColor * pColor_return) argument
[all...]
H A DLabMxL.c59 * XcmsCIELabQueryMaxL - Compute max Lstar for a hue and chroma
67 XcmsFloat chroma,
71 * Return the maximum Lstar for a specified hue_angle and chroma.
114 tmp.spec.CIELab.a_star = XCMS_CIEASTAROFHUE(hue, chroma);
115 tmp.spec.CIELab.b_star = XCMS_CIEBSTAROFHUE(hue, chroma);
119 /* Step 1: Obtain the maximum L_star and chroma for this hue. */
128 if (max_chroma <= chroma) {
130 * If the chroma is greater than the chroma for the
131 * maximum L/chroma poin
63 XcmsCIELabQueryMaxL(XcmsCCC ccc,XcmsFloat hue_angle,XcmsFloat chroma,XcmsColor * pColor_return) argument
[all...]
H A DLuvMnL.c59 * XcmsCIELuvQueryMinL - Compute max Lstar for a hue and chroma
67 XcmsFloat chroma,
71 * Return the maximum Lstar for a specified hue_angle and chroma.
114 tmp.spec.CIELuv.u_star = XCMS_CIEUSTAROFHUE(hue, chroma);
115 tmp.spec.CIELuv.v_star = XCMS_CIEVSTAROFHUE(hue, chroma);
119 /* Step 1: Obtain the maximum L_star and chroma for this hue. */
128 if (max_chroma <= chroma) {
130 * If the chroma is greater than the chroma for the
131 * maximum L/chroma poin
63 XcmsCIELuvQueryMinL(XcmsCCC ccc,XcmsFloat hue_angle,XcmsFloat chroma,XcmsColor * pColor_return) argument
[all...]
H A DLuvMxL.c59 * XcmsCIELuvQueryMaxL - Compute max Lstar for a hue and chroma
67 XcmsFloat chroma,
71 * Return the maximum Lstar for a specified hue_angle and chroma.
114 tmp.spec.CIELuv.u_star = XCMS_CIEUSTAROFHUE(hue, chroma);
115 tmp.spec.CIELuv.v_star = XCMS_CIEVSTAROFHUE(hue, chroma);
119 /* Step 1: Obtain the maximum L_star and chroma for this hue. */
128 if (max_chroma <= chroma) {
130 * If the chroma is greater than the chroma for the
131 * maximum L/chroma poin
63 XcmsCIELuvQueryMaxL(XcmsCCC ccc,XcmsFloat hue_angle,XcmsFloat chroma,XcmsColor * pColor_return) argument
[all...]
H A DLabGcL.c64 * Return the closest L* for a specific hue and chroma.
81 XcmsFloat hue, chroma, maxChroma;
115 chroma = XCMS_CIELAB_PMETRIC_CHROMA(pColor->spec.CIELab.a_star,
117 /* Step 1: compute the maximum L* and chroma for this hue. */
128 if (chroma == maxChroma) {
129 /* When the chroma input is equal to the maximum chroma */
130 /* merely return the L* for that chroma. */
134 } else if (chroma > maxChroma) {
135 /* When the chroma inpu
80 XcmsFloat hue, chroma, maxChroma; local in function:XcmsCIELabClipL
[all...]
H A DLuvGcL.c64 * Return the closest L* for a specific hue and chroma.
81 XcmsFloat hue, chroma, maxChroma;
115 chroma = XCMS_CIELUV_PMETRIC_CHROMA(pColor->spec.CIELuv.u_star,
117 /* Step 1: compute the maximum L* and chroma for this hue. */
128 if (chroma == maxChroma) {
129 /* When the chroma input is equal to the maximum chroma */
130 /* merely return the L* for that chroma. */
134 } else if (chroma > maxChroma) {
135 /* When the chroma inpu
80 XcmsFloat hue, chroma, maxChroma; local in function:XcmsCIELuvClipL
[all...]
H A DLabGcLC.c58 * XcmsCIELabClipLab - Return the closest L* and chroma
72 * This routine will find the closest L* and chroma
90 XcmsFloat hue, chroma, maxChroma;
134 /* Step 1: compute the maximum L* and chroma for this hue. */
139 chroma = XCMS_CIELAB_PMETRIC_CHROMA(pColor->spec.CIELab.a_star,
165 bestChroma = Chroma = chroma;
187 chroma = XCMS_CIELAB_PMETRIC_CHROMA(pColor->spec.CIELab.a_star,
189 tmpDist = XCMS_SQRT(((Chroma - chroma) * (Chroma - chroma)) +
201 bestChroma = chroma;
89 XcmsFloat hue, chroma, maxChroma; local in function:XcmsCIELabClipLab
[all...]
H A DLuvGcLC.c58 * XcmsCIELuvClipLuv - Return the closest L* and chroma
72 * This routine will find the closest L* and chroma
90 XcmsFloat hue, chroma, maxChroma;
134 /* Step 1: compute the maximum L* and chroma for this hue. */
139 chroma = XCMS_CIELUV_PMETRIC_CHROMA(pColor->spec.CIELuv.u_star,
165 bestChroma = Chroma = chroma;
187 chroma = XCMS_CIELUV_PMETRIC_CHROMA(pColor->spec.CIELuv.u_star,
189 tmpDist = XCMS_SQRT(((Chroma - chroma) * (Chroma - chroma)) +
201 bestChroma = chroma;
89 XcmsFloat hue, chroma, maxChroma; local in function:XcmsCIELuvClipLuv
[all...]
H A DHVCMnV.c68 * XcmsTekHVCQueryMinV - Compute minimum value for hue and chroma
76 XcmsFloat chroma,
82 * corresponding chroma. The input color specification
126 tmp.spec.TekHVC.C = chroma;
136 /* Step 1: compute the maximum value and chroma for this hue. */
144 /* Step 2: find the intersection with the maximum hvc and chroma line. */
146 /* If the chroma is to large then return maximum hvc. */
72 XcmsTekHVCQueryMinV(XcmsCCC ccc,XcmsFloat hue,XcmsFloat chroma,XcmsColor * pColor_return) argument
H A DHVCMxV.c71 * XcmsTekHVCQueryMaxV - Compute maximum value for a hue and chroma
79 XcmsFloat chroma,
83 * Return the maximum value for a specified hue and chroma.
127 tmp.spec.TekHVC.C = chroma;
135 /* Step 1: compute the maximum value and chroma for this hue. */
146 * If the chroma is greater than the chroma for the
147 * maximum value/chroma point then the value is the
148 * the value for the maximum value, chroma point.
158 * If the chroma i
75 XcmsTekHVCQueryMaxV(XcmsCCC ccc,XcmsFloat hue,XcmsFloat chroma,XcmsColor * pColor_return) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
H A Dsi_uvd.c94 struct si_texture *chroma = (struct si_texture *)buf->resources[1]; local in function:si_uvd_set_dtb
100 si_uvd_set_dt_surfaces(msg, &luma->surface, (chroma) ? &chroma->surface : NULL, type);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
H A Dsi_uvd.c116 struct si_texture *chroma = (struct si_texture *)buf->resources[1]; local in function:si_uvd_set_dtb
123 si_uvd_set_dt_surfaces(msg, &luma->surface, (chroma) ? &chroma->surface : NULL, type);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
H A Dr600_uvd.c160 struct r600_texture *chroma = (struct r600_texture *)buf->resources[1]; local in function:r600_uvd_set_dtb
165 ruvd_set_dt_surfaces(msg, &luma->surface, &chroma->surface);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
H A Dr600_uvd.c163 struct r600_texture *chroma = (struct r600_texture *)buf->resources[1]; local in function:r600_uvd_set_dtb
168 ruvd_set_dt_surfaces(msg, &luma->surface, &chroma->surface);
H A Dradeon_uvd.c1204 * fill decoding target field from the luma and chroma surfaces
1207 struct radeon_surf *chroma)
1229 if (chroma)
1230 msg->body.decode.dt_chroma_top_offset = texture_offset(chroma, 0);
1233 if (chroma)
1234 msg->body.decode.dt_chroma_bottom_offset = texture_offset(chroma, 1);
1240 if (chroma) {
1241 assert(luma->u.legacy.bankw == chroma->u.legacy.bankw);
1242 assert(luma->u.legacy.bankh == chroma->u.legacy.bankh);
1243 assert(luma->u.legacy.mtilea == chroma
1206 ruvd_set_dt_surfaces(struct ruvd_msg * msg,struct radeon_surf * luma,struct radeon_surf * chroma) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeon/
H A Dradeon_vce_50.c126 enc->chroma->u.legacy.level[0].offset); // inputPictureChromaAddressHi/Lo
129 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encInputPicChromaPitch
H A Dradeon_vcn_dec_jpeg.c46 struct si_texture *chroma = (struct si_texture *) local in function:radeon_jpeg_get_decode_param
52 dec->jpg.dt_chroma_top_offset = chroma->surface.u.gfx9.surf_offset;
H A Dradeon_vce_40_2_2.c89 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encRefPicChromaPitch
316 enc->chroma->u.legacy.level[0].offset); // inputPictureChromaAddressHi/Lo
319 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encInputPicChromaPitch
H A Dradeon_uvd_enc_1_1.c850 (enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe);
856 enc->chroma->u.gfx9.surf_pitch * enc->chroma->bpe;
982 (enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe);
988 enc->chroma->u.gfx9.surf_pitch * enc->chroma->bpe;
1010 enc->chroma->u.legacy.level[0].offset);
1016 enc->chroma
[all...]
H A Dradeon_vce_52.c188 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encRefPicChromaPitch
192 RVCE_CS(enc->chroma->u.gfx9.surf_pitch * enc->chroma->bpe); // encRefPicChromaPitch
261 enc->chroma->u.legacy.level[0].offset); // inputPictureChromaAddressHi/Lo
264 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encInputPicChromaPitch
269 enc->chroma->u.gfx9.surf_offset); // inputPictureChromaAddressHi/Lo
272 RVCE_CS(enc->chroma->u.gfx9.surf_pitch * enc->chroma
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeon/
H A Dradeon_vce_50.c123 (uint64_t)enc->chroma->u.legacy.level[0].offset_256B * 256); // inputPictureChromaAddressHi/Lo
126 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encInputPicChromaPitch
H A Dradeon_vce_40_2_2.c86 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encRefPicChromaPitch
313 (uint64_t)enc->chroma->u.legacy.level[0].offset_256B * 256); // inputPictureChromaAddressHi/Lo
316 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encInputPicChromaPitch
H A Dradeon_uvd_enc_1_1.c762 (enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe);
765 enc->enc_pic.ctx_buf.rec_chroma_pitch = enc->chroma->u.gfx9.surf_pitch * enc->chroma->bpe;
881 (enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe);
885 enc->chroma->u.gfx9.surf_pitch * enc->chroma->bpe;
902 RADEON_ENC_READ(enc->handle, RADEON_DOMAIN_VRAM, (uint64_t)enc->chroma->u.legacy.level[0].offset_256B * 256);
905 RADEON_ENC_READ(enc->handle, RADEON_DOMAIN_VRAM, enc->chroma
[all...]
H A Dradeon_vce_52.c195 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encRefPicChromaPitch
199 RVCE_CS(enc->chroma->u.gfx9.surf_pitch * enc->chroma->bpe); // encRefPicChromaPitch
268 (uint64_t)enc->chroma->u.legacy.level[0].offset_256B * 256); // inputPictureChromaAddressHi/Lo
271 RVCE_CS(enc->chroma->u.legacy.level[0].nblk_x * enc->chroma->bpe); // encInputPicChromaPitch
276 enc->chroma->u.gfx9.surf_offset); // inputPictureChromaAddressHi/Lo
279 RVCE_CS(enc->chroma->u.gfx9.surf_pitch * enc->chroma
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/va/
H A Dpicture_vc1.c61 context->desc.vc1.range_mapuv = vc1->range_mapping_fields.bits.chroma;

Completed in 18 milliseconds

123