Home
last modified time | relevance | path

Searched refs:wt (Results 1 – 25 of 84) sorted by relevance

1234

/external/skia/src/pathops/
DSkAddIntersections.cpp12 static void debugShowLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowLineIntersection() argument
17 __FUNCTION__, LINE_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowLineIntersection()
21 i[0][0], LINE_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowLineIntersection()
32 static void debugShowQuadLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowQuadLineIntersection() argument
38 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowQuadLineIntersection()
42 i[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadLineIntersection()
53 static void debugShowQuadIntersection(int pts, const SkIntersectionHelper& wt, in debugShowQuadIntersection() argument
58 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), QUAD_DEBUG_DATA(wn.pts())); in debugShowQuadIntersection()
62 i[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadIntersection()
73 static void debugShowCubicLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowCubicLineIntersection() argument
[all …]
/external/chromium_org/third_party/skia/src/pathops/
DSkAddIntersections.cpp12 static void debugShowLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowLineIntersection() argument
17 __FUNCTION__, LINE_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowLineIntersection()
21 i[0][0], LINE_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowLineIntersection()
32 static void debugShowQuadLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowQuadLineIntersection() argument
38 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowQuadLineIntersection()
42 i[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadLineIntersection()
53 static void debugShowQuadIntersection(int pts, const SkIntersectionHelper& wt, in debugShowQuadIntersection() argument
58 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), QUAD_DEBUG_DATA(wn.pts())); in debugShowQuadIntersection()
62 i[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadIntersection()
73 static void debugShowCubicLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowCubicLineIntersection() argument
[all …]
/external/libgsm/src/
Dshort_term.c265 static void Short_term_synthesis_filtering P5((S,rrp,k,wt,sr),
269 register word * wt, /* [0..k-1] IN */
279 sri = *wt++;
309 static void Fast_Short_term_synthesis_filtering P5((S,rrp,k,wt,sr),
313 register word * wt, /* [0..k-1] IN */
328 register float sri = *wt++;
388 void Gsm_Short_Term_Synthesis_Filter P4((S, LARcr, wt, s),
392 word * wt, /* received d [0..159] IN */
416 FILTER( S, LARp, 13, wt, s );
420 FILTER( S, LARp, 14, wt + 13, s + 13 );
[all …]
Ddecode.c50 word erp[40], wt[160]; variable
58 for (k = 0; k <= 39; k++) wt[ j * 40 + k ] = drp[ k ];
61 Gsm_Short_Term_Synthesis_Filter( S, LARcr, wt, s );
/external/srtp/test/
Dlfsr.c121 int wt = 0; in weight() local
124 wt += octet_weight[poly & 0xff]; in weight()
125 wt += octet_weight[(poly >> 8) & 0xff]; in weight()
126 wt += octet_weight[(poly >> 16) & 0xff]; in weight()
127 wt += octet_weight[(poly >> 24)]; in weight()
129 return wt; in weight()
204 wt += (x & 1); in weight_distribution2()
/external/chromium_org/third_party/libsrtp/srtp/test/
Dlfsr.c156 int wt = 0; in weight() local
159 wt += octet_weight[poly & 0xff]; in weight()
160 wt += octet_weight[(poly >> 8) & 0xff]; in weight()
161 wt += octet_weight[(poly >> 16) & 0xff]; in weight()
162 wt += octet_weight[(poly >> 24)]; in weight()
164 return wt; in weight()
239 wt += (x & 1); in weight_distribution2()
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
DRouteSpecificPool.java263 public void queueThread(WaitingThread wt) { in queueThread() argument
264 if (wt == null) { in queueThread()
268 this.waitingThreads.add(wt); in queueThread()
298 public void removeThread(WaitingThread wt) { in removeThread() argument
299 if (wt == null) in removeThread()
302 this.waitingThreads.remove(wt); in removeThread()
DRefQueueWorker.java125 Thread wt = this.workerThread; in shutdown() local
126 if (wt != null) { in shutdown()
128 wt.interrupt(); in shutdown()
/external/mesa3d/src/mesa/drivers/dri/i915/
Di915_texstate.c286 GLenum wt = sampler->WrapT; in i915_update_tex_unit() local
295 wt = GL_REPEAT; in i915_update_tex_unit()
308 wt == GL_CLAMP || in i915_update_tex_unit()
311 wt == GL_CLAMP_TO_BORDER || wr == GL_CLAMP_TO_BORDER)) in i915_update_tex_unit()
319 ((wt != GL_CLAMP) && (wt != GL_CLAMP_TO_EDGE)))) in i915_update_tex_unit()
348 (translate_wrap_mode(wt) << SS3_TCY_ADDR_MODE_SHIFT) | in i915_update_tex_unit()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
Di915_texstate.c286 GLenum wt = sampler->WrapT; in i915_update_tex_unit() local
295 wt = GL_REPEAT; in i915_update_tex_unit()
308 wt == GL_CLAMP || in i915_update_tex_unit()
311 wt == GL_CLAMP_TO_BORDER || wr == GL_CLAMP_TO_BORDER)) in i915_update_tex_unit()
319 ((wt != GL_CLAMP) && (wt != GL_CLAMP_TO_EDGE)))) in i915_update_tex_unit()
348 (translate_wrap_mode(wt) << SS3_TCY_ADDR_MODE_SHIFT) | in i915_update_tex_unit()
/external/clang/test/CodeGen/
Dpascal-wchar-string.c16 UniChar wt[] = L"\pbar"; // pascal Unicode string in main() local
22 if (wt[0] != 3) in main()
/external/skia/experimental/Intersection/
DEdgeWalker.cpp1872 WorkEdge wt; in addBottomT() local
1873 wt.init(test); in addBottomT()
1880 uint8_t verb = wt.verb(); in addBottomT()
1883 pts = LineIntersect(wt.fPts, horzEdge->fLeft, in addBottomT()
1887 pts = QuadIntersect(wt.fPts, horzEdge->fLeft, in addBottomT()
1891 pts = CubicIntersect(wt.fPts, horzEdge->fLeft, in addBottomT()
1899 horzEdge->fY, wtTs[x], wt.fPts[0].fX, wt.fPts[0].fY); in addBottomT()
1901 SkDebugf(" %g,%g", wt.fPts[y + 1].fX, wt.fPts[y + 1].fY)); in addBottomT()
1910 test->add(wtTs, pts, wt.verbIndex()); in addBottomT()
1915 } while (wt.advance()); in addBottomT()
[all …]
DSimplify.cpp5382 static void debugShowLineIntersection(int pts, const Work& wt, const Work& wn, in debugShowLineIntersection() argument
5387 __FUNCTION__, LINE_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowLineIntersection()
5391 i.fT[0][0], LINE_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowLineIntersection()
5402 static void debugShowQuadLineIntersection(int pts, const Work& wt, in debugShowQuadLineIntersection() argument
5407 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowQuadLineIntersection()
5411 i.fT[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadLineIntersection()
5422 static void debugShowQuadIntersection(int pts, const Work& wt, in debugShowQuadIntersection() argument
5427 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), QUAD_DEBUG_DATA(wn.pts())); in debugShowQuadIntersection()
5431 i.fT[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadIntersection()
5442 static void debugShowCubicLineIntersection(int pts, const Work& wt, in debugShowCubicLineIntersection() argument
[all …]
/external/chromium_org/third_party/skia/experimental/Intersection/
DEdgeWalker.cpp1872 WorkEdge wt; in addBottomT() local
1873 wt.init(test); in addBottomT()
1880 uint8_t verb = wt.verb(); in addBottomT()
1883 pts = LineIntersect(wt.fPts, horzEdge->fLeft, in addBottomT()
1887 pts = QuadIntersect(wt.fPts, horzEdge->fLeft, in addBottomT()
1891 pts = CubicIntersect(wt.fPts, horzEdge->fLeft, in addBottomT()
1899 horzEdge->fY, wtTs[x], wt.fPts[0].fX, wt.fPts[0].fY); in addBottomT()
1901 SkDebugf(" %g,%g", wt.fPts[y + 1].fX, wt.fPts[y + 1].fY)); in addBottomT()
1910 test->add(wtTs, pts, wt.verbIndex()); in addBottomT()
1915 } while (wt.advance()); in addBottomT()
[all …]
DSimplify.cpp5382 static void debugShowLineIntersection(int pts, const Work& wt, const Work& wn, in debugShowLineIntersection() argument
5387 __FUNCTION__, LINE_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowLineIntersection()
5391 i.fT[0][0], LINE_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowLineIntersection()
5402 static void debugShowQuadLineIntersection(int pts, const Work& wt, in debugShowQuadLineIntersection() argument
5407 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowQuadLineIntersection()
5411 i.fT[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadLineIntersection()
5422 static void debugShowQuadIntersection(int pts, const Work& wt, in debugShowQuadIntersection() argument
5427 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), QUAD_DEBUG_DATA(wn.pts())); in debugShowQuadIntersection()
5431 i.fT[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadIntersection()
5442 static void debugShowCubicLineIntersection(int pts, const Work& wt, in debugShowCubicLineIntersection() argument
[all …]
/external/llvm/lib/Target/Mips/
DMSA.txt72 bmz.v wd, ws, wt/i8 -> (vselect wt/i8, wd, ws)
73 bmnz.v wd, ws, wt/i8 -> (vselect wt/i8, ws, wd)
74 bsel.v wd, ws, wt/i8 -> (vselect wd, wt/i8, ws)
DMipsMSAInstrFormats.td137 bits<5> wt;
143 let Inst{20-16} = wt;
150 bits<5> wt;
156 let Inst{20-16} = wt;
409 bits<5> wt;
414 let Inst{20-16} = wt;
422 bits<5> wt;
426 let Inst{20-16} = wt;
432 bits<5> wt;
435 let Inst{20-16} = wt;
DMipsMSAInstrInfo.td380 def vbclr_b : PatFrag<(ops node:$ws, node:$wt),
381 (and node:$ws, (xor (shl vsplat_imm_eq_1, node:$wt),
383 def vbclr_h : PatFrag<(ops node:$ws, node:$wt),
384 (and node:$ws, (xor (shl vsplat_imm_eq_1, node:$wt),
386 def vbclr_w : PatFrag<(ops node:$ws, node:$wt),
387 (and node:$ws, (xor (shl vsplat_imm_eq_1, node:$wt),
389 def vbclr_d : PatFrag<(ops node:$ws, node:$wt),
391 node:$wt),
394 def vbneg_b : PatFrag<(ops node:$ws, node:$wt),
395 (xor node:$ws, (shl vsplat_imm_eq_1, node:$wt))>;
[all …]
/external/llvm/test/CodeGen/X86/
D2008-10-24-FlippedCompare.ll3 define void @f(float %wt) {
5 %0 = fcmp ogt float %wt, 0.000000e+00 ; <i1> [#uses=1]
/external/chromium_org/third_party/polymer/components-chromium/core-animated-pages/transitions/
Dhero-transition-extracted.js28 var wt = [];
30 wt.push(p + ' ' + duration + ' ' + options.easing + ' ' + d);
33 h.h1.style[TRANSITION_NAME] = wt.join(', ');
/external/sonivox/arm-wt-22k/host_src/
Darm-wt-22k.mak23 arm-wt-22k: $(OBJS)
24 $(LD) -o $@ $(OBJS) libarm-wt-22k.a -lm
/external/pixman/pixman/
Dpixman-mips-dspr2.h347 int wt, \
357 int wt, \
368 wt, wb, \
396 int wt, \
408 int wt, \
418 dst, mask, src_top, src_bottom, wt, wb, vx, unit_x, w); \
Dpixman-arm-common.h335 int wt, \
348 int wt, \
358 dst, src_top, src_bottom, wt, wb, vx, unit_x, w); \
384 int wt, \
397 int wt, \
407 dst, mask, src_top, src_bottom, wt, wb, vx, unit_x, w); \
/external/chromium_org/ash/wm/
Dwindow_modality_controller_unittest.cc246 aura::Window* wt; in TEST_F() local
247 wt = ::wm::GetModalTransient(w1.get()); in TEST_F()
248 ASSERT_EQ(static_cast<aura::Window*>(NULL), wt); in TEST_F()
256 wt = ::wm::GetModalTransient(w1.get()); in TEST_F()
257 ASSERT_NE(static_cast<aura::Window*>(NULL), wt); in TEST_F()
258 EXPECT_EQ(-2, wt->id()); in TEST_F()
261 wt = ::wm::GetModalTransient(w11.get()); in TEST_F()
262 ASSERT_NE(static_cast<aura::Window*>(NULL), wt); in TEST_F()
263 EXPECT_EQ(-2, wt->id()); in TEST_F()
/external/chromium_org/third_party/libsrtp/srtp/crypto/math/
Dmath.c165 unsigned int wt = 0; in v32_weight() local
167 wt += octet_weight[a.v8[0]]; /* note: endian-ness makes no difference */ in v32_weight()
168 wt += octet_weight[a.v8[1]]; in v32_weight()
169 wt += octet_weight[a.v8[2]]; in v32_weight()
170 wt += octet_weight[a.v8[3]]; in v32_weight()
172 return wt; in v32_weight()

1234