Searched defs:YC (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/Layout/
H A Dms-x86-pack-and-align.cpp230 struct YC { struct
234 // CHECK-NEXT: 0 | struct YC (empty)
239 // CHECK-X64-NEXT: 0 | struct YC (empty)
247 YC b;
252 // CHECK-NEXT: 1 | struct YC b (empty)
261 // CHECK-X64-NEXT: 1 | struct YC b (empty)
555 sizeof(YC)+
/external/opencv/cv/src/
H A Dcvfloodfill.cpp144 int k, YC, PL, PR, dir; local
145 ICV_POP( YC, L, R, PL, PR, dir );
160 if( YMax < YC ) YMax = YC;
161 if( YMin > YC ) YMin = YC;
164 for( k = 0/*(unsigned)(YC - dir) >= (unsigned)roi.height*/; k < 3; k++ )
167 img = pImage + (YC + dir) * step;
171 if( (unsigned)(YC + dir) >= (unsigned)roi.height )
187 ICV_PUSH( YC
276 int k, YC, PL, PR, dir; local
453 int k, YC, PL, PR, dir, curstep; local
759 int k, YC, PL, PR, dir, curstep; local
[all...]
/external/opencv/cvaux/src/
H A Dcvsegment.cpp123 int k, YC, PL, PR, flag/*, curstep*/; local
125 POP( YC, L, R, PL, PR, flag );
135 if( YMax < YC )
136 YMax = YC;
138 if( YMin > YC )
139 YMin = YC;
145 img = pImage + (YC + flag) * step;
146 mask = pMask + (YC + flag) * maskStep;
164 PUSH( YC + flag, j, i, L, R, -flag );
170 img = pImage + YC * ste
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1206 Value *X = nullptr; ConstantInt *YC = nullptr; local
1207 if (match(Op0, m_Trunc(m_And(m_Value(X), m_ConstantInt(YC))))) {
1208 // Change: and (trunc (and X, YC) to T), C2
1209 // into : and (trunc X to T), trunc(YC) & C2
1213 Constant *C3 = ConstantExpr::getTrunc(YC, I.getType());

Completed in 4617 milliseconds