Searched defs:mag (Results 26 - 50 of 55) sorted by relevance

123

/external/skia/src/pdf/
H A DSkPDFGradientShader.cpp42 SkScalar mag = vec.length(); local
43 SkScalar inv = mag ? SkScalarInvert(mag) : 0;
47 matrix->preScale(mag, mag);
/external/skqp/src/pdf/
H A DSkPDFGradientShader.cpp42 SkScalar mag = vec.length(); local
43 SkScalar inv = mag ? SkScalarInvert(mag) : 0;
47 matrix->preScale(mag, mag);
/external/autotest/client/site_tests/graphics_SanAngeles/src/
H A Ddemo.c870 GLfloat mag; local
878 mag = (float)sqrt(z[0] * z[0] + z[1] * z[1] + z[2] * z[2]);
879 if (mag) { /* mpichler, 19950515 */
880 z[0] /= mag;
881 z[1] /= mag;
882 z[2] /= mag;
905 mag = (float)sqrt(x[0] * x[0] + x[1] * x[1] + x[2] * x[2]);
906 if (mag) {
907 x[0] /= mag;
908 x[1] /= mag;
[all...]
/external/deqp/modules/glshared/
H A DglsLongStressCase.cpp459 void setFilter (deUint32 min, deUint32 mag) const;
590 void Texture::setFilter (const deUint32 min, const deUint32 mag) const
594 glTexParameteri(getGLBindTarget(), GL_TEXTURE_MAG_FILTER, mag); local
/external/libvpx/libvpx/vp9/
H A Dvp9_cx_iface.c1000 int mag, index_sz; local
1009 for (mag = 0, mask = 0xff; mag < 4; mag++) {
1014 marker |= mag << 3;
1017 index_sz = 2 + (mag + 1) * ctx->pending_frame_count;
1040 for (j = 0; j <= mag; j++) {
/external/llvm/lib/Support/
H A DAPInt.cpp1428 struct ms mag; local
1455 mag.m = q2 + 1;
1456 if (d.isNegative()) mag.m = -mag.m; // resulting magic number
1457 mag.s = p - d.getBitWidth(); // resulting shift
1458 return mag;
/external/opencv/cxcore/src/
H A Dcxmathfuncs.cpp278 magtype* mag, int len) \
289 mag[i] = x0; \
290 mag[i+1] = x1; \
295 mag[i+2] = x0; \
296 mag[i+3] = x1; \
302 mag[i] = x0*x0 + y0*y0; \
331 CvMat magstub, *mag = (CvMat*)magarr; local
355 if( mag )
357 CV_CALL( mag = cvGetMat( mag,
571 CvMat magstub, *mag = (CvMat*)magarr; local
[all...]
/external/pdfium/third_party/libopenjpeg20/
H A Dt1.c1706 OPJ_INT32 mag = abs(val); local
1707 if (mag >= thresh) {
1708 mag >>= tccp->roishift;
1709 datap[(j * cblk_w) + i] = val < 0 ? -mag : mag;
/external/skia/src/gpu/ops/
H A DGrDashOp.cpp117 SkScalar mag = vec.length(); local
118 SkScalar inv = mag ? SkScalarInvert(mag) : 0;
/external/skqp/src/gpu/ops/
H A DGrDashOp.cpp117 SkScalar mag = vec.length(); local
118 SkScalar inv = mag ? SkScalarInvert(mag) : 0;
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DAPInt.cpp1402 struct ms mag; local
1429 mag.m = q2 + 1;
1430 if (d.isNegative()) mag.m = -mag.m; // resulting magic number
1431 mag.s = p - d.getBitWidth(); // resulting shift
1432 return mag;
/external/v8/src/arm/
H A Dmacro-assembler-arm.cc3815 base::MagicNumbersForDivision<uint32_t> mag = local
3817 mov(ip, Operand(mag.multiplier));
3818 bool neg = (mag.multiplier & (1U << 31)) != 0;
3823 if (divisor < 0 && !neg && mag.multiplier > 0) {
3827 if (mag.shift > 0) mov(result, Operand(result, ASR, mag.shift));
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c3023 * Get mip filter funcs, and optionally both img min filter and img mag
3033 img_filter_func *mag)
3047 assert(mag);
3051 *mag = *min;
3053 *mag = get_img_filter(sp_sview, &sp_samp->base,
3028 get_filters(const struct sp_sampler_view *sp_sview, const struct sp_sampler *sp_samp, const enum tgsi_sampler_control control, const struct sp_filter_funcs **funcs, img_filter_func *min, img_filter_func *mag) argument
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.cc2915 base::MagicNumbersForDivision<uint32_t> mag = local
2917 mov(eax, Immediate(mag.multiplier));
2919 bool neg = (mag.multiplier & (static_cast<uint32_t>(1) << 31)) != 0;
2921 if (divisor < 0 && !neg && mag.multiplier > 0) sub(edx, dividend);
2922 if (mag.shift > 0) sar(edx, mag.shift);
/external/v8/src/mips64/
H A Dmacro-assembler-mips64.cc6878 base::MagicNumbersForDivision<uint32_t> mag = local
6880 li(at, Operand(static_cast<int32_t>(mag.multiplier)));
6882 bool neg = (mag.multiplier & (static_cast<uint32_t>(1) << 31)) != 0;
6886 if (divisor < 0 && !neg && mag.multiplier > 0) {
6889 if (mag.shift > 0) sra(result, result, mag.shift);
/external/v8/src/x87/
H A Dmacro-assembler-x87.cc2761 base::MagicNumbersForDivision<uint32_t> mag = local
2763 mov(eax, Immediate(mag.multiplier));
2765 bool neg = (mag.multiplier & (static_cast<uint32_t>(1) << 31)) != 0;
2767 if (divisor < 0 && !neg && mag.multiplier > 0) sub(edx, dividend);
2768 if (mag.shift > 0) sar(edx, mag.shift);
/external/v8/src/arm64/
H A Dmacro-assembler-arm64.cc4537 base::MagicNumbersForDivision<uint32_t> mag = local
4539 Mov(result, mag.multiplier);
4542 bool neg = (mag.multiplier & (static_cast<uint32_t>(1) << 31)) != 0;
4544 if (divisor < 0 && !neg && mag.multiplier > 0) Sub(result, result, dividend);
4545 if (mag.shift > 0) Asr(result, result, mag.shift);
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc6472 base::MagicNumbersForDivision<uint32_t> mag = local
6474 li(at, Operand(mag.multiplier));
6476 bool neg = (mag.multiplier & (static_cast<uint32_t>(1) << 31)) != 0;
6480 if (divisor < 0 && !neg && mag.multiplier > 0) {
6483 if (mag.shift > 0) sra(result, result, mag.shift);
/external/v8/src/ppc/
H A Dmacro-assembler-ppc.cc4335 base::MagicNumbersForDivision<uint32_t> mag = local
4337 mov(r0, Operand(mag.multiplier));
4339 bool neg = (mag.multiplier & (static_cast<uint32_t>(1) << 31)) != 0;
4343 if (divisor < 0 && !neg && mag.multiplier > 0) {
4346 if (mag.shift > 0) srawi(result, result, mag.shift);
/external/v8/src/s390/
H A Dmacro-assembler-s390.cc5312 base::MagicNumbersForDivision<uint32_t> mag = local
5316 MulP(result, Operand(mag.multiplier));
5323 mov(r1, Operand(mag.multiplier));
5330 bool neg = (mag.multiplier & (static_cast<uint32_t>(1) << 31)) != 0;
5334 if (divisor < 0 && !neg && mag.multiplier > 0) {
5337 if (mag.shift > 0) ShiftRightArith(result, result, Operand(mag.shift));
/external/v8/src/x64/
H A Dmacro-assembler-x64.cc5279 base::MagicNumbersForDivision<uint32_t> mag = local
5281 movl(rax, Immediate(mag.multiplier));
5283 bool neg = (mag.multiplier & (static_cast<uint32_t>(1) << 31)) != 0;
5285 if (divisor < 0 && !neg && mag.multiplier > 0) subl(rdx, dividend);
5286 if (mag.shift > 0) sarl(rdx, Immediate(mag.shift));
/external/annotation-tools/annotation-file-utilities/lib/
H A Dplume-core.jarMETA-INF/ META-INF/MANIFEST.MF plume/ArraysMDE$ComparableArrayComparatorLengthFirst.class ArraysMDE.java package ...
/external/robolectric/v1/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 1138 milliseconds

123