Searched refs:adj (Results 1 - 25 of 34) sorted by relevance

12

/external/mesa3d/src/glsl/builtins/glsl/
H A Dinverse.glsl26 mat2 adj;
27 adj[0][0] = m[1][1];
28 adj[0][1] = -m[0][1];
29 adj[1][0] = -m[1][0];
30 adj[1][1] = m[0][0];
32 return adj / det;
37 mat3 adj;
38 adj[0][0] = + (m[1][1] * m[2][2] - m[2][1] * m[1][2]);
39 adj[1][0] = - (m[1][0] * m[2][2] - m[2][0] * m[1][2]);
40 adj[
[all...]
/external/libvpx/libvpx/vp8/encoder/x86/
H A Ddenoising_sse2.c88 __m128i adj, padj, nadj; local
92 adj = _mm_sub_epi8(l3, adj2);
93 adj = _mm_andnot_si128(mask0, adj);
94 adj = _mm_or_si128(adj, adj0);
97 padj = _mm_andnot_si128(diff_sign, adj);
98 nadj = _mm_and_si128(diff_sign, adj);
152 const __m128i adj = local
156 padj = _mm_andnot_si128(diff_sign, adj);
265 __m128i adj, padj, nadj; local
338 const __m128i adj = local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_denoiser.c86 int diff, adj, absdiff, delta; local
102 adj = adj_val[0];
106 adj = adj_val[1];
109 adj = adj_val[2];
112 avg[c] = MIN(UINT8_MAX, sig[c] + adj);
113 total_adj += adj;
115 avg[c] = MAX(0, sig[c] - adj);
116 total_adj -= adj;
143 adj = abs(diff);
144 if (adj > delt
[all...]
/external/crcalc/src/com/hp/creals/
H A DUnaryCRFunction.java464 BigInteger adj = t.divide(f_difference);
471 if (adj.compareTo(difference.shiftRight(10)) < 0) {
472 adj = adj.shiftLeft(8);
474 } else if (adj.compareTo(difference.multiply(BIG1023)
476 adj = difference.subtract(difference.subtract(adj)
480 if (adj.signum() <= 0)
481 adj = big2;
482 if (adj
[all...]
/external/icu/icu4c/source/i18n/
H A DdecContext.c377 const char *adj;
379 if (LITEND) adj="little";
380 else adj="big";
382 DECLITEND, adj);
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dpitch_estimator.c144 double adj, gain_tmp; local
222 adj = 0.2 * ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
223 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
229 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]);
243 adj = 0.9 * ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
244 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
250 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]);
265 adj = ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
266 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
272 corr = adj * (corrvec
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_point.c336 int adj = (setup->pixel_offset != 0) ? 1 : 0; local
338 bbox.x0 = (x0 + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
339 bbox.x1 = (x0 + fixed_width + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
H A Dlp_setup_line.c546 int adj = (setup->pixel_offset != 0) ? 1 : 0; local
550 bbox.y0 = (MIN4(y[0], y[1], y[2], y[3]) + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
551 bbox.y1 = (MAX4(y[0], y[1], y[2], y[3]) + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
H A Dlp_setup_tri.c270 int adj = (setup->pixel_offset != 0) ? 1 : 0; local
276 /* Inclusive / exclusive depending upon adj (bottom-left or top-right) */
277 bbox.y0 = (MIN3(position->y[0], position->y[1], position->y[2]) + adj) >> FIXED_ORDER;
278 bbox.y1 = (MAX3(position->y[0], position->y[1], position->y[2]) - 1 + adj) >> FIXED_ORDER;
/external/skia/src/pathops/
H A DSkPathOpsQuad.cpp28 double adj = endPt[1]->fX - origX; local
30 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
37 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
H A DSkDCubicLineIntersection.cpp121 double adj = fLine[1].fX - fLine[0].fX; local
125 c[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp;
135 + (fCubic[n].fX - fLine[0].fX) * adj;
H A DSkDConicLineIntersection.cpp120 double adj = (*fLine)[1].fX - (*fLine)[0].fX; local
124 r[n] = (fConic[n].fY - (*fLine)[0].fY) * adj - (fConic[n].fX - (*fLine)[0].fX) * opp;
H A DSkDQuadLineIntersection.cpp154 double adj = (*fLine)[1].fX - (*fLine)[0].fX; local
158 r[n] = (fQuad[n].fY - (*fLine)[0].fY) * adj - (fQuad[n].fX - (*fLine)[0].fX) * opp;
H A DSkPathOpsCubic.cpp166 double adj = endPt[1]->fX - origX; local
170 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
172 double sign2 = (fPts[oddMan2].fY - origY) * adj - (fPts[oddMan2].fX - origX) * opp;
185 double test = (pts[n].fY - origY) * adj - (pts[n].fX - origX) * opp;
/external/fio/
H A Dgoptions.c461 GtkAdjustment *adj; local
466 adj = gtk_spin_button_get_adjustment(spin);
467 value = gtk_adjustment_get_value(adj);
773 GtkAdjustment *adj; local
776 adj = gtk_spin_button_get_adjustment(spin);
777 val = gtk_adjustment_get_value(adj);
1254 GtkAdjustment *adj; local
1263 adj = gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(s->spin));
1264 *ullp = gtk_adjustment_get_value(adj);
1299 GtkAdjustment *adj; local
[all...]
/external/owasp/sanitizer/empiricism/
H A Dhtml-containment.js313 adj:
317 if (eq(dupe.node, adjacentNode)) { continue adj; }
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_emit_nv50.cpp56 inline void srcAddr16(const ValueRef&, bool adj, const int pos);
141 void CodeEmitterNV50::srcAddr16(const ValueRef& src, bool adj, const int pos) argument
147 assert(!adj || src.get()->reg.size <= 4);
148 if (adj)
154 offset &= adj ? (0xffff >> (src.get()->reg.size >> 1)) : 0xffff;
1790 int adj = 4; local
1795 adj = 8;
1799 adj = 8;
1807 fn->binSize += adj;
1808 insn->bb->binSize += adj;
[all...]
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp386 /// struct { ptrdiff_t ptr; ptrdiff_t adj; } memptr;
390 /// - the this-adjustment is (memptr.adj)
394 /// - method pointers are virtual if (memptr.adj & 1) is nonzero
395 /// - the this-adjustment is (memptr.adj >> 1)
397 /// ARM uses 'adj' for the virtual flag because Thumb functions
425 // Extract memptr.adj, which is in the second field.
426 llvm::Value *RawAdj = Builder.CreateExtractValue(MemFnPtr, 1, "memptr.adj");
431 Adj = Builder.CreateAShr(Adj, ptrdiff_1, "memptr.adj.shifted");
548 llvm::Constant *adj = getMemberPointerAdjustment(E);
549 if (!adj) retur
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DDatabase.java933 double adj = (ms < 0) ? 0 : 0.5;
934 double d = (ms + adj) / 86400000.0 + 2440587.5;
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
H A DNavCalculator.java551 // cos (adj / hyp)
552 double adj = Math.abs(p1.getLongitude() - p2.getLongitude());
554 return (int) Math.toDegrees(Math.atan(opp / adj));
/external/e2fsprogs/e2fsck/
H A Dpass3.c555 errcode_t e2fsck_adjust_inode_count(e2fsck_t ctx, ext2_ino_t ino, int adj) argument
569 printf("Adjusting link count for inode %lu by %d (from %d)\n", ino, adj,
573 if (adj == 1) {
579 } else if (adj == -1) {
H A De2fsck.h487 int adj);
/external/libvorbis/lib/
H A Dpsy.c127 float adj=center_boost+abs(EHMER_OFFSET-k)*center_decay_rate; local
128 if(adj<0. && center_boost>0)adj=0.;
129 if(adj>0. && center_boost<0)adj=0.;
130 workc[i][j][k]+=adj;
/external/e2fsprogs/resize/
H A Dresize2fs.c618 int adj = 0; local
690 adj = rfs->old_fs->group_desc_count;
691 max_group = fs->group_desc_count - adj;
712 i - adj + 1, max_group);
/external/mksh/src/
H A Dedit.c1346 int adj = x_adj_done; local
1359 if (adj == x_adj_done) {
1625 int adj = x_adj_done; local
1628 while (*str && str < xlp && x_col < xx_cols && adj == x_adj_done)
2944 int adj = x_adj_done; local
2946 while (*s && adj == x_adj_done)

Completed in 758 milliseconds

12