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

123

/external/libmpeg2/common/x86/
H A Dideint_cac_ssse3.c100 WORD32 adj[2] = {0}; local
133 /* Compute row based alt and adj */
140 adj[0] += sum_diff;
146 adj[0] += sum_diff;
155 adj[1] += sum_diff;
161 adj[1] += sum_diff;
167 /* Compute column based adj */
195 adj[0] += diff_sum << 2;
202 adj[1] += diff_sum << 2;
231 ca = (alt[0] < adj[
[all...]
/external/libvpx/libvpx/vp8/encoder/x86/
H A Ddenoising_sse2.c86 __m128i adj, padj, nadj; local
90 adj = _mm_sub_epi8(l3, adj2);
91 adj = _mm_andnot_si128(mask0, adj);
92 adj = _mm_or_si128(adj, adj0);
95 padj = _mm_andnot_si128(diff_sign, adj);
96 nadj = _mm_and_si128(diff_sign, adj);
150 const __m128i adj = _mm_min_epu8(_mm_or_si128(pdiff, ndiff), k_delta); local
153 padj = _mm_andnot_si128(diff_sign, adj);
261 __m128i adj, padj, nadj; local
332 const __m128i adj = _mm_min_epu8(_mm_or_si128(pdiff, ndiff), k_delta); local
[all...]
/external/libmpeg2/common/
H A Dideint_cac.c106 WORD32 adj; local
130 adj = 0;
183 adj += sum_diff;
204 adj += sum_diff;
266 adj += diff_sum << 2;
304 ca = (alt < adj);
/external/webrtc/webrtc/modules/video_processing/util/
H A Ddenoiser_filter_sse2.cc182 __m128i adj, padj, nadj; local
186 adj = _mm_sub_epi8(l3, adj2);
187 adj = _mm_andnot_si128(mask0, adj);
188 adj = _mm_or_si128(adj, adj0);
191 padj = _mm_andnot_si128(diff_sign, adj);
192 nadj = _mm_and_si128(diff_sign, adj);
248 const __m128i adj = _mm_min_epu8(_mm_or_si128(pdiff, ndiff), k_delta); local
251 padj = _mm_andnot_si128(diff_sign, adj);
[all...]
/external/curl/docs/examples/
H A Dcurlgtk.c78 GtkAdjustment *adj; local
95 adj = (GtkAdjustment*)gtk_adjustment_new(0, 0, 100, 0, 0, 0);
96 Bar = gtk_progress_bar_new_with_adjustment(adj);
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_denoiser_sse2.c65 __m128i adj, padj, nadj; local
69 adj = _mm_sub_epi8(*l3, adj2);
70 adj = _mm_andnot_si128(mask0, adj);
71 adj = _mm_or_si128(adj, adj0);
74 padj = _mm_andnot_si128(diff_sign, adj);
75 nadj = _mm_and_si128(diff_sign, adj);
103 const __m128i adj = _mm_min_epu8(_mm_or_si128(pdiff, ndiff), k_delta); local
106 padj = _mm_andnot_si128(diff_sign, adj);
[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/libmpeg2/common/arm/
H A Dideint_cac_a9.s83 @ Calculate row based adj and alt values
140 @ Compute adj
143 @ d20 has four adj values for two sub-blocks
154 @ Calculate column based adj and alt values
174 @ Add row based adj
178 @ d20 now contains 2 adj values
/external/icu/icu4c/source/i18n/
H A DdecContext.cpp379 const char *adj;
381 if (LITEND) adj="little";
382 else adj="big";
384 DECLITEND, adj);
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dfirmware_window.py161 def _calc_inc_value(self, adj):
163 value = adj.get_value()
164 new_value = min(value + self.SCROLL_STEP, adj.upper - adj.page_size)
167 def _calc_dec_value(self, adj):
169 value = adj.get_value()
170 new_value = max(value - self.SCROLL_STEP, adj.lower)
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_denoiser.c76 int diff, adj, absdiff, delta; local
107 case 7: adj = adj_val[0]; break;
115 case 15: adj = adj_val[1]; break;
116 default: adj = adj_val[2];
119 avg[c] = VPXMIN(UINT8_MAX, sig[c] + adj);
120 total_adj += adj;
122 avg[c] = VPXMAX(0, sig[c] - adj);
123 total_adj -= adj;
152 adj = abs(diff);
153 if (adj > delt
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dpitch_estimator.c145 double adj, gain_tmp; local
223 adj = 0.2 * ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
224 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
230 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]);
244 adj = 0.9 * ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
245 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
251 corr = adj * (corrvec1[ind2++] + corrvec2[ind1++]);
266 adj = ratio * (2.0 - ratio); /* adjustment factor; inverse parabola as a function of ratio */
267 corr = adj * (corrvec1[ind1] + corrvec2[ind2]);
273 corr = adj * (corrvec
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_point.c341 int adj = (setup->bottom_edge_rule != 0) ? 1 : 0; local
382 bbox.y0 = (y0 + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
383 bbox.y1 = (y0 + fixed_width + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
400 const int y0 = subpixel_snap(v0[0][1]) - adj;
H A Dlp_setup_line.c556 int adj = (setup->bottom_edge_rule != 0) ? 1 : 0; local
560 bbox.y0 = (MIN4(y[0], y[1], y[2], y[3]) + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
561 bbox.y1 = (MAX4(y[0], y[1], y[2], y[3]) + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
/external/lzma/CPP/7zip/UI/Console/
H A DList.cpp215 static void PrintUString(EAdjustment adj, unsigned width, const UString &s, AString &temp) argument
234 switch (adj)
248 static void PrintString(EAdjustment adj, unsigned width, const char *s) argument
257 switch (adj)
271 static void PrintStringToString(char *dest, EAdjustment adj, unsigned width, const char *textString) argument
280 switch (adj)
706 static void PrintNumber(EAdjustment adj, unsigned width, const CListUInt64Def &value) argument
712 PrintString(adj, width, s);
/external/fio/
H A Dgoptions.c462 GtkAdjustment *adj; local
467 adj = gtk_spin_button_get_adjustment(spin);
468 value = gtk_adjustment_get_value(adj);
774 GtkAdjustment *adj; local
777 adj = gtk_spin_button_get_adjustment(spin);
778 val = gtk_adjustment_get_value(adj);
1256 GtkAdjustment *adj; local
1265 adj = gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(s->spin));
1266 *ullp = gtk_adjustment_get_value(adj);
1301 GtkAdjustment *adj; local
[all...]
/external/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp122 double adj = fLine[1].fX - fLine[0].fX; local
127 c[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp;
137 + (fCubic[n].fX - fLine[0].fX) * adj;
H A DSkPathOpsQuad.cpp53 double adj = endPt[1]->fX - origX; local
55 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
62 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
/external/skqp/src/pathops/
H A DSkDCubicLineIntersection.cpp122 double adj = fLine[1].fX - fLine[0].fX; local
127 c[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp;
137 + (fCubic[n].fX - fLine[0].fX) * adj;
H A DSkPathOpsQuad.cpp50 double adj = endPt[1]->fX - origX; local
52 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp;
59 double test = (q2[n].fY - origY) * adj - (q2[n].fX - origX) * opp;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_mfqe.c148 const int adj = qdiff >> MFQE_PRECISION; local
150 *sad_thr = 7 + adj;
152 *sad_thr = 6 + adj;
154 *sad_thr = 5 + adj;
/external/owasp/sanitizer/empiricism/
H A Dhtml-containment.js313 adj:
317 if (eq(dupe.node, adjacentNode)) { continue adj; }
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_emit_nv50.cpp56 inline void srcAddr16(const ValueRef&, bool adj, const int pos);
149 void CodeEmitterNV50::srcAddr16(const ValueRef& src, bool adj, const int pos) argument
155 assert(!adj || src.get()->reg.size <= 4);
156 if (adj)
162 offset &= adj ? (0xffff >> (src.get()->reg.size >> 1)) : 0xffff;
2127 int adj = 4; local
2132 adj = 8;
2136 adj = 8;
2142 fn->bbArray[i]->binPos += adj;
2144 fn->binSize += adj;
2195 int adj = epilogue->getExit()->encSize; local
[all...]
/external/python/cpython2/Python/
H A Dpeephole.c303 int nops, h, adj; local
643 adj = CODESIZE(opcode);
644 while (adj--)
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp500 /// struct { ptrdiff_t ptr; ptrdiff_t adj; } memptr;
504 /// - the this-adjustment is (memptr.adj)
508 /// - method pointers are virtual if (memptr.adj & 1) is nonzero
509 /// - the this-adjustment is (memptr.adj >> 1)
511 /// ARM uses 'adj' for the virtual flag because Thumb functions
539 // Extract memptr.adj, which is in the second field.
540 llvm::Value *RawAdj = Builder.CreateExtractValue(MemFnPtr, 1, "memptr.adj");
545 Adj = Builder.CreateAShr(Adj, ptrdiff_1, "memptr.adj.shifted");
669 llvm::Constant *adj = getMemberPointerAdjustment(E);
670 if (!adj) retur
[all...]

Completed in 697 milliseconds

123