Home
last modified time | relevance | path

Searched refs:Alpha (Results 1 – 25 of 175) sorted by relevance

1234567

/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_program_pair.c58 if (alpha && pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Used in rc_pair_alloc_source()
59 && index != pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Index) { in rc_pair_alloc_source()
77 if (pair->Alpha.Src[i].Used) { in rc_pair_alloc_source()
78 if (pair->Alpha.Src[i].File != file || in rc_pair_alloc_source()
79 pair->Alpha.Src[i].Index != index) { in rc_pair_alloc_source()
115 pair->Alpha.Src[candidate].Used = 1; in rc_pair_alloc_source()
116 pair->Alpha.Src[candidate].File = file; in rc_pair_alloc_source()
117 pair->Alpha.Src[candidate].Index = index; in rc_pair_alloc_source()
123 pair->Alpha.Src[i].Used = 1; in rc_pair_alloc_source()
147 pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Index); in pair_foreach_source_callback()
[all …]
Dradeon_pair_schedule.c255 else if (sinst->Instruction->U.P.Alpha.Opcode == RC_OPCODE_NOP) in instruction_ready()
307 !sinst->Instruction->U.P.Alpha.OutputWriteMask) { in score_no_output()
312 Alpha.OutputWriteMask) { in score_no_output()
342 sinst->Instruction->U.P.Alpha.Src[src_idx].Used; in calc_score_r300()
511 assert(dst_full->Alpha.Opcode == RC_OPCODE_NOP); in merge_presub_sources()
522 dst_sub = &dst_full->Alpha; in merge_presub_sources()
604 assert(rgb->Alpha.Opcode == RC_OPCODE_NOP); in destructive_merge_instructions()
618 if (alpha->Alpha.Src[RC_PAIR_PRESUB_SRC].Used) { in destructive_merge_instructions()
619 if(!merge_presub_sources(rgb, alpha->Alpha, RC_SOURCE_ALPHA)){ in destructive_merge_instructions()
625 opcode = rc_get_opcode_info(alpha->Alpha.Opcode); in destructive_merge_instructions()
[all …]
Dradeon_pair_translate.c170 pair->Alpha.Opcode = inst->Opcode; in set_pair_instruction()
172 pair->Alpha.Saturate = 1; in set_pair_instruction()
203 pair->Alpha.Src[i].File = in set_pair_instruction()
205 pair->Alpha.Src[i].Index = in set_pair_instruction()
207 pair->Alpha.Src[i].Used = 1; in set_pair_instruction()
268 pair->Alpha.Arg[i].Source = source; in set_pair_instruction()
269 pair->Alpha.Arg[i].Swizzle = rc_init_swizzle(swz, 1); in set_pair_instruction()
270 pair->Alpha.Arg[i].Abs = inst->SrcReg[i].Abs; in set_pair_instruction()
273 pair->Alpha.Arg[i].Negate = in set_pair_instruction()
277 pair->Alpha.Arg[i].Negate = in set_pair_instruction()
[all …]
Dradeon_program_print.c346 inst->RGB.Opcode : inst->Alpha.Opcode, branch_depth); in rc_print_pair_instruction()
359 if (inst->Alpha.Src[src].Used) { in rc_print_pair_instruction()
363 rc_print_register(f, inst->Alpha.Src[src].File, inst->Alpha.Src[src].Index, 0); in rc_print_pair_instruction()
372 if(inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Used) { in rc_print_pair_instruction()
375 inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Index)); in rc_print_pair_instruction()
421 if (inst->Alpha.Opcode != RC_OPCODE_NOP) { in rc_print_pair_instruction()
422 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->Alpha.Opcode); in rc_print_pair_instruction()
427 fprintf(f, " %s%s", opcode->Name, inst->Alpha.Saturate ? "_SAT" : ""); in rc_print_pair_instruction()
428 if (inst->Alpha.WriteMask) in rc_print_pair_instruction()
429 fprintf(f, " temp[%i].w", inst->Alpha.DestIndex); in rc_print_pair_instruction()
[all …]
Dr300_fragprog_emit.c165 code->alu.inst[ip].alpha_inst = translate_alpha_opcode(c, inst->Alpha.Opcode); in emit_alu()
177 src = use_source(code, inst->Alpha.Src[j]); in emit_alu()
178 if (inst->Alpha.Src[j].Index >= R300_PFS_NUM_TEMP_REGS) in emit_alu()
188 arg = r300FPTranslateAlphaSwizzle(inst->Alpha.Arg[j].Source, inst->Alpha.Arg[j].Swizzle); in emit_alu()
189 arg |= inst->Alpha.Arg[j].Abs << 6; in emit_alu()
190 arg |= inst->Alpha.Arg[j].Negate << 5; in emit_alu()
218 if (inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Used) { in emit_alu()
219 switch(inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Index) { in emit_alu()
243 if (inst->Alpha.Saturate) in emit_alu()
261 if (inst->Alpha.WriteMask) { in emit_alu()
[all …]
Dr500_fragprog_emit.c174 unsigned int t = inst->Alpha.Arg[i].Source; in translate_arg_alpha()
175 t |= fix_hw_swizzle(GET_SWZ(inst->Alpha.Arg[i].Swizzle, 0)) << 2; in translate_arg_alpha()
176 t |= inst->Alpha.Arg[i].Negate << 5; in translate_arg_alpha()
177 t |= inst->Alpha.Arg[i].Abs << 6; in translate_arg_alpha()
248 if (inst->RGB.Opcode == RC_OPCODE_DDX || inst->Alpha.Opcode == RC_OPCODE_DDX || in emit_paired()
249 inst->RGB.Opcode == RC_OPCODE_DDY || inst->Alpha.Opcode == RC_OPCODE_DDY) { in emit_paired()
256 code->inst[ip].inst4 = translate_alpha_op(c, inst->Alpha.Opcode); in emit_paired()
258 if (inst->RGB.OutputWriteMask || inst->Alpha.OutputWriteMask || inst->Alpha.DepthWriteMask) { in emit_paired()
270 code->inst[ip].inst0 |= inst->Alpha.WriteMask ? 1 << 14 : 0; in emit_paired()
271 code->inst[ip].inst0 |= (inst->RGB.OutputWriteMask << 15) | (inst->Alpha.OutputWriteMask << 18); in emit_paired()
[all …]
Dradeon_dataflow.c90 inst->Alpha.Src[src].Index); in pair_get_src_refmasks()
114 GET_SWZ(inst->Alpha.Arg[arg].Swizzle, chan); in reads_pair()
118 inst->Alpha.Arg[arg].Source); in reads_pair()
127 if (inst->Alpha.Src[src].Used && (refmasks[src] & RC_MASK_W)) in reads_pair()
128 cb(userdata, fullinst, inst->Alpha.Src[src].File, inst->Alpha.Src[src].Index, RC_MASK_W); in reads_pair()
161 U.P.Alpha.Src[RC_PAIR_PRESUB_SRC].Index; in pair_sub_for_all_args()
162 src_array = fullinst->U.P.Alpha.Src; in pair_sub_for_all_args()
231 pair_sub_for_all_args(inst, &inst->U.P.Alpha, cb, userdata); in rc_pair_for_all_reads_arg()
275 if (inst->Alpha.WriteMask) in writes_pair()
276 cb(userdata, fullinst, RC_FILE_TEMPORARY, inst->Alpha.DestIndex, RC_MASK_W); in writes_pair()
[all …]
Dradeon_pair_dead_sources.c32 inst->U.P.Alpha.Src[sub->Arg[i].Source].Used = 1; in mark_used()
54 inst->U.P.Alpha.Src[i].Used = 0; in rc_pair_remove_dead_sources()
57 mark_used(inst, &inst->U.P.Alpha); in rc_pair_remove_dead_sources()
60 mark_used_presub(&inst->U.P.Alpha); in rc_pair_remove_dead_sources()
Dradeon_variable.c62 sub = &var_ptr->Inst->U.P.Alpha; in rc_variable_change_dst()
111 pair_inst->Alpha.Src[src_index] in rc_variable_change_dst()
113 pair_inst->Alpha.Src[src_index] in rc_variable_change_dst()
115 pair_inst->Alpha.Src[src_index] in rc_variable_change_dst()
379 &inst->U.P.Alpha); in rc_get_variables()
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/yui/out/
Dopacity-filter.out.b1Alpha(Opacity=80)";filter:PROGID:DXImageTransform.Microsoft.Alpha(Opacity=80);zoom:1}code{-ms-filt…
Dopacity-filter.out1Alpha(Opacity=80)";filter:PROGID:DXImageTransform.Microsoft.Alpha(Opacity=80);zoom:1}code{-ms-filt…
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/yui/
Dopacity-filter.css5 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* IE 8 */
6 filter: PROGID:DXImageTransform.Microsoft.Alpha(Opacity=80); /* IE 4-7 */
12 -ms-filter: "PROGID:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* IE 8 */
13 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); /* IE 4-7 */
/external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
Dpairingsessiontest.cc204 Alpha alpha(5, 0x3); in TEST_F()
210 .WillOnce(Return(new Alpha(alpha))); in TEST_F()
234 Alpha alpha(5, 0x3); in TEST_F()
240 .WillOnce(Return(new Alpha(alpha))); in TEST_F()
248 .WillOnce(Return(new Alpha(alpha))); in TEST_F()
251 .WillOnce(Return(new Alpha(alpha))); in TEST_F()
263 Alpha alpha(5, 0x3); in TEST_F()
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/
Dpolochallengeresponse.cc32 Alpha* PoloChallengeResponse::GetAlpha(const Nonce& nonce) const { in GetAlpha()
83 Alpha* alpha = new Alpha(SHA256_DIGEST_LENGTH); in GetAlpha()
97 const Alpha* alpha = GetAlpha(nonce); in GetGamma()
Dpolochallengeresponse.h27 typedef std::vector<uint8_t> Alpha, Gamma, Nonce; typedef
41 virtual Alpha* GetAlpha(const Nonce& nonce) const;
Dpairingsession.cc109 const Alpha* gen_alpha = challenge().GetAlpha(*nonce_); in SetSecret()
230 const Alpha* alpha = challenge().GetAlpha(*nonce_); in OnSecretMessage()
261 bool PairingSession::VerifySecret(const Alpha& secret) const { in VerifySecret()
267 const Alpha* gen_alpha = challenge().GetAlpha(*nonce_); in VerifySecret()
/external/libavc/common/arm/
Dih264_deblk_luma_a9.s68 @* Alpha Value for the boundary
122 vcge.u8 q9, q11, q10 @Q9 = ( ABS(p0 - q0) >= Alpha )
128 vorr q9, q9, q12 @Q9 = ( ABS(p0 - q0) >= Alpha ) | ( ABS(q1 - q0) >= Beta )
131 …vorr q9, q9, q13 @Q9 = ( ABS(p0 - q0) >= Alpha ) | ( ABS(q1 - q0) >= Beta ) | (…
208 @* Alpha Value for the boundary
247 vcge.u8 q9, q6, q0 @ABS(p0 - q0) >= Alpha
251 vorr q9, q9, q7 @ABS(p0 - q0) >= Alpha || ABS(q1 - q0) >= Beta
253 …vorr q9, q9, q8 @ABS(p0 - q0) >= Alpha || ABS(q1 - q0) >= Beta || ABS(p1 - p0)…
254 vsra.u8 q10, q0, #2 @((Alpha >> 2) + 2)
259 vclt.u8 q10, q6, q10 @(ABS(p0 - q0) <((Alpha >>2) + 2))
[all …]
Dih264_deblk_chroma_a9.s75 @* Alpha Value for the boundary
115 vcge.u8 q9, q11, q10 @Q9 = ( ABS(p0 - q0) >= Alpha )
120 vorr q9, q9, q12 @Q9 = ( ABS(p0 - q0) >= Alpha ) | ( ABS(q1 - q0) >= Beta )
123 …vorr q9, q9, q13 @Q9 = ( ABS(p0 - q0) >= Alpha ) | ( ABS(q1 - q0) >= Beta ) | (…
151 @* Alpha Value for the boundary
245 @* Alpha Value for the boundary
295 vcge.u8 q9, q11, q10 @Q9 = ( ABS(p0 - q0) >= Alpha )
307 vorr q9, q9, q12 @Q9 = ( ABS(p0 - q0) >= Alpha ) | ( ABS(q1 - q0) >= Beta )
311 …vorr q9, q9, q13 @Q9 = ( ABS(p0 - q0) >= Alpha ) | ( ABS(q1 - q0) >= Beta ) | (…
347 @* Alpha Value for the boundary
[all …]
/external/mesa3d/src/gallium/docs/source/cso/
Ddsa.rst3 Depth, Stencil, & Alpha
14 * Alpha
53 Alpha Members
61 Alpha test reference value; used for certain functions.
/external/deqp/modules/egl/
DteglSimpleConfigCase.cpp118 template <int Red, int Green, int Blue, int Alpha>
124 c.alphaSize() == Alpha; in colorBits()
127 template <int Red, int Green, int Blue, int Alpha>
133 c.alphaSize() != Alpha; in notColorBits()
/external/skia/site/dev/contrib/
Dsimd.md66 3. `SkPx::Alpha` represents the alpha channels of those same pixels.
68 `SkPx`, `Wide` and `Alpha` create a somewhat complicated algebra of operations entirely motivated b…
80 SkPx.alpha() -> Alpha // Extract alpha channels.
81 Alpha::LoadN(const uint8_t*) -> Alpha // Like SkPx loads, in 8-bit steps.
82 Alpha::Load(n, const uint8_t*) -> Alpha
93 SkPx * Alpha -> Wide // 8 x 8 -> 16 bit
96 // A faster approximation of (SkPx * Alpha).div255().
97 SkPx.approxMulDiv255(Alpha) -> SkPx
99 …d to choose how it physically represents `SkPx`, `SkPx::Wide`, and `SkPx::Alpha` and to choose any…
111 …kPx` is just `uint8_t[4]`, its `SkPx::Wide` `uint16_t[4]`, and its `SkPx::Alpha` just `uint8_t`. …
[all …]
/external/icu/icu4c/source/data/unidata/
Dppucd.txt9 property;Binary;Alpha;Alphabetic
1179 cp;0041;AHex;Alpha;Cased;cf=0061;CWCF;CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER A;NF…
1180 cp;0042;AHex;Alpha;Cased;cf=0062;CWCF;CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER B;NF…
1181 cp;0043;AHex;Alpha;Cased;cf=0063;CWCF;CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER C;NF…
1182 cp;0044;AHex;Alpha;Cased;cf=0064;CWCF;CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER D;NF…
1183 cp;0045;AHex;Alpha;Cased;cf=0065;CWCF;CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER E;NF…
1184 cp;0046;AHex;Alpha;Cased;cf=0066;CWCF;CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER F;NF…
1185 cp;0047;Alpha;Cased;cf=0067;CWCF;CWCM;CWKCF;CWL;gc=Lu;IDC;IDS;na=LATIN CAPITAL LETTER G;NFKC_CF=006…
1186 cp;0048;Alpha;Cased;cf=0068;CWCF;CWCM;CWKCF;CWL;gc=Lu;IDC;IDS;na=LATIN CAPITAL LETTER H;NFKC_CF=006…
1187 cp;0049;Alpha;Cased;cf=0069;Conditional_Case_Mappings=lt More_Above:lc=0069 0307&tc=0049&uc=0049,tr…
[all …]
/external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Misc/
DWireColor.j3md15 Blend Alpha
32 Blend Alpha
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
DTextureFormatTest.java36 nonMipMapped[0] = new Texture(file, Format.Alpha, false); in create()
43 mipMapped[0] = new Texture(file, Format.Alpha, true); in create()
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/
DPixmap.java50 Alpha, Intensity, LuminanceAlpha, RGB565, RGBA4444, RGB888, RGBA8888; enumConstant
53 if (format == Alpha) return Gdx2DPixmap.GDX2D_FORMAT_ALPHA; in toGdx2DPixmapFormat()
64 if (format == Gdx2DPixmap.GDX2D_FORMAT_ALPHA) return Alpha; in fromGdx2DPixmapFormat()

1234567