/external/clang/test/Modules/Inputs/include_next/y/ |
H A D | b.h | 1 enum { by = 4 }; enumerator in enum:__anon2610
|
/external/lzma/CPP/7zip/UI/FileManager/ |
H A D | ComboDialog.cpp | 46 int bx1, bx2, by;
local 47 GetItemSizes(IDCANCEL, bx1, by);
48 GetItemSizes(IDOK, bx2, by);
49 int y = ySize - my - by;
54 MoveItem(IDCANCEL, x, y, bx1, by);
55 MoveItem(IDOK, x - mx - bx2, y, bx2, by);
|
/external/pdfium/third_party/agg23/ |
H A D | agg_math.h | 16 // Bessel function (besj) was adapted for use in AGG library by Andy Wilk 49 AGG_INLINE bool calc_intersection(FX_FLOAT ax, FX_FLOAT ay, FX_FLOAT bx, FX_FLOAT by, argument 54 FX_FLOAT den = FXSYS_Mul(bx - ax, dy - cy) - FXSYS_Mul(by - ay, dx - cx); 59 *y = ay + FXSYS_MulDiv(by - ay, num, den);
|
/external/skia/tests/ |
H A D | PathOpsSimplifyDegenerateThreadedTest.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 21 int by = state.fB >> 2; local 40 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by)); 50 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by); 78 int by = b >> 2; local 82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
|
H A D | PathOpsSimplifyQuadThreadedTest.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 22 int by = state.fB >> 2; local 42 path.quadTo(SkIntToScalar(bx), SkIntToScalar(by), 58 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
|
H A D | PathOpsSimplifyQuadralateralsThreadedTest.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 22 int by = state.fB >> 2; local 42 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by)); 55 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
|
H A D | PathOpsSimplifyTrianglesThreadedTest.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 22 int by = state.fB >> 2; local 43 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by)); 53 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by); 83 int by = b >> 2; local 90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
|
H A D | PathOpsQuadLineIntersectionThreadedTest.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 68 // find a point on a quad by choosing a t from 0 to 1 80 int by = state.fB >> 2; local 83 SkDQuad quad = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
|
/external/skia/experimental/ |
H A D | SkSetPoly3To3.cpp | 5 * Use of this source code is governed by a BSD-style license that can be 29 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument 30 return SkScalarMul(ax, bx) + SkScalarMul(ay, by);
|
H A D | SkSetPoly3To3_A.cpp | 5 * Use of this source code is governed by a BSD-style license that can be 42 static SkDScalar ddot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument 43 return SkDScalar_setMul(ax, bx) + SkDScalar_setMul(ay, by); 46 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument 47 return SkDScalar_toScalar(ddot(ax, ay, bx, by));
|
H A D | SkSetPoly3To3_D.cpp | 5 * Use of this source code is governed by a BSD-style license that can be 49 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument 51 SkDScalar_setMul(ay, by));
|
/external/v8/src/regexp/x64/ |
H A D | regexp-macro-assembler-x64.cc | 2 // Use of this source code is governed by a BSD-style license that can be 78 * The first seven values must be provided by the calling code by 131 void RegExpMacroAssemblerX64::AdvanceCurrentPosition(int by) { argument 132 if (by != 0) { 133 __ addq(rdi, Immediate(by * char_size())); 138 void RegExpMacroAssemblerX64::AdvanceRegister(int reg, int by) { argument 141 if (by != 0) { 142 __ addp(register_location(reg), Immediate(by)); 244 __ subp(r11, rbx); // Offset by lengt [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
H A D | nv50_ir_inlines.h | 362 bool BasicBlock::reachableBy(const BasicBlock *by, const BasicBlock *term) argument 364 return cfg.reachableBy(&by->cfg, &term->cfg);
|
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
H A D | test_rendering.c | 147 int mbx, mby, bx, by; local 213 for (by = 0; by < MACROBLOCK_HEIGHT_IN_BLOCKS; ++by) 230 for (by = 0; by < MACROBLOCK_HEIGHT_IN_BLOCKS / 2; ++by)
|
/external/skia/src/pathops/ |
H A D | SkPathOpsConic.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 154 double by = 2 * dy - (ay + cy) / 2; local 156 SkDConic dst = {{{{ax / az, ay / az}, {bx / bz, by / bz}, {cx / cz, cy / cz}}},
|
/external/skia/src/utils/ |
H A D | SkInterpolator.cpp | 5 * Use of this source code is governed by a BSD-style license that can be 231 SkScalar SkUnitCubicInterp(SkScalar value, SkScalar bx, SkScalar by, argument 264 b = pin_and_convert(by);
|
/external/v8/src/regexp/arm/ |
H A D | regexp-macro-assembler-arm.cc | 2 // Use of this source code is governed by a BSD-style license that can be 30 * - r9 : Unused, might be used by C code and expected unchanged. 34 * - r12 : IP register, used by assembler. Very volatile. 48 * - fp[36] secondary link/return address used by native call. 74 * The data up to the return address must be placed there by the calling 75 * code and the remaining arguments are passed in registers, e.g. by calling the 81 * Address secondary_return_address, // Only used by native call. 85 * The call is performed by NativeRegExpMacroAssembler::Execute() 89 * area is overwritten with the LR register by the RegExp code. When doing a 90 * direct call from generated code, the return address is placed there by 134 AdvanceCurrentPosition(int by) argument 142 AdvanceRegister(int reg, int by) argument [all...] |
/external/v8/src/regexp/ |
H A D | interpreter-irregexp.cc | 2 // Use of this source code is governed by a BSD-style license that can be 127 // A simple abstraction over the backtracking stack used by the interpreter. 129 // the memory held by the stack is released or remembered in a cache if the 572 int by = static_cast<uint32_t>(insn) >> BYTECODE_SHIFT; local 573 if (subject.length() - current > by) { 574 current = subject.length() - by;
|
/external/v8/src/regexp/ppc/ |
H A D | regexp-macro-assembler-ppc.cc | 2 // Use of this source code is governed by a BSD-style license that can be 34 * - r12: IP register, used by assembler. Very volatile. 42 * - fp[40] secondary link/return address used by native call. 76 * The data up to the return address must be placed there by the calling 77 * code and the remaining arguments are passed in registers, e.g. by calling the 85 * Address secondary_return_address, // Only used by native call. 87 * The call is performed by NativeRegExpMacroAssembler::Execute() 91 * area is overwritten with the LR register by the RegExp code. When doing a 92 * direct call from generated code, the return address is placed there by 147 void RegExpMacroAssemblerPPC::AdvanceCurrentPosition(int by) { argument 155 AdvanceRegister(int reg, int by) argument [all...] |
/external/opencv/cv/src/ |
H A D | cvrotcalipers.cpp | 29 // This software is provided by the copyright holders and contributors "as is" and 107 /* this is a first base bector (a,b) initialized by (1,0) */ 156 double by = vect[i].y; local 158 double convexity = ax * by - ay * bx; 166 ay = by; 181 /* all of edges will be checked while rotating calipers by 90 degrees */
|
H A D | cvconvhull.cpp | 29 // This software is provided by the copyright holders and contributors "as is" and 71 int by = nexty - cury; local 73 if( CV_SIGN(by) != nsign ) 78 int convexity = ay*bx - ax*by;/* if >0 then convex angle */ 144 float by = nexty - cury; local 146 if( CV_SIGN( by ) != nsign ) 151 float convexity = ay*bx - ax*by;/* if >0 then convex angle */ 344 // sort the point set by x-coordinate, find min and max y
|
/external/pdfium/third_party/libopenjpeg20/ |
H A D | mct.c | 219 const __m128i by = _mm_set1_epi32(934); local 257 lo = _mm_mul_epi32(lo, by); 258 hi = _mm_mul_epi32(hi, by);
|
/external/v8/src/regexp/mips/ |
H A D | regexp-macro-assembler-mips.cc | 2 // Use of this source code is governed by a BSD-style license that can be 48 * - fp[44] secondary link/return address used by native call. 74 * The data up to the return address must be placed there by the calling 75 * code and the remaining arguments are passed in registers, e.g. by calling the 81 * Address secondary_return_address, // Only used by native call. 85 * The call is performed by NativeRegExpMacroAssembler::Execute() 89 * area is overwritten with the ra register by the RegExp code. When doing a 90 * direct call from generated code, the return address is placed there by 141 void RegExpMacroAssemblerMIPS::AdvanceCurrentPosition(int by) { argument 142 if (by ! 149 AdvanceRegister(int reg, int by) argument [all...] |
/external/v8/src/regexp/mips64/ |
H A D | regexp-macro-assembler-mips64.cc | 2 // Use of this source code is governed by a BSD-style license that can be 52 * - fp[40] secondary link/return address used by native call. 78 * - fp[80] secondary link/return address used by exit frame on native call. kSecondaryReturnAddress 108 * The data up to the return address must be placed there by the calling 109 * code and the remaining arguments are passed in registers, e.g. by calling the 115 * Address secondary_return_address, // Only used by native call. 121 * The call is performed by NativeRegExpMacroAssembler::Execute() 125 * area is overwritten with the ra register by the RegExp code. When doing a 126 * direct call from generated code, the return address is placed there by 177 void RegExpMacroAssemblerMIPS::AdvanceCurrentPosition(int by) { argument 185 AdvanceRegister(int reg, int by) argument [all...] |
/external/v8/src/regexp/s390/ |
H A D | regexp-macro-assembler-s390.cc | 2 // Use of this source code is governed by a BSD-style license that can be 35 * - r12: IP register, used by assembler. Very volatile. 43 * - fp[108] secondary link/return address used by native call. 78 * The data up to the return address must be placed there by the calling 79 * code and the remaining arguments are passed in registers, e.g. by calling the 87 * Address secondary_return_address, // Only used by native call. 89 * The call is performed by NativeRegExpMacroAssembler::Execute() 93 * area is overwritten with the LR register by the RegExp code. When doing a 94 * direct call from generated code, the return address is placed there by 143 void RegExpMacroAssemblerS390::AdvanceCurrentPosition(int by) { argument 149 AdvanceRegister(int reg, int by) argument 1026 SetCurrentPositionFromEnd(int by) argument [all...] |