Searched refs:wt (Results 1 - 25 of 44) sorted by relevance

12

/external/skia/src/pathops/
H A DSkAddIntersections.cpp13 static void debugShowLineIntersection(int pts, const SkIntersectionHelper& wt, argument
18 __FUNCTION__, LINE_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts()));
22 i[0][0], LINE_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0));
33 static void debugShowQuadLineIntersection(int pts, const SkIntersectionHelper& wt, argument
39 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts()));
43 i[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0));
54 static void debugShowQuadIntersection(int pts, const SkIntersectionHelper& wt, argument
59 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), QUAD_DEBUG_DATA(wn.pts()));
63 i[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0));
74 static void debugShowConicLineIntersection(int pts, const SkIntersectionHelper& wt, argument
94 debugShowConicQuadIntersection(int pts, const SkIntersectionHelper& wt, const SkIntersectionHelper& wn, const SkIntersections& i) argument
114 debugShowConicIntersection(int pts, const SkIntersectionHelper& wt, const SkIntersectionHelper& wn, const SkIntersections& i) argument
135 debugShowCubicLineIntersection(int pts, const SkIntersectionHelper& wt, const SkIntersectionHelper& wn, const SkIntersections& i) argument
155 debugShowCubicQuadIntersection(int pts, const SkIntersectionHelper& wt, const SkIntersectionHelper& wn, const SkIntersections& i) argument
175 debugShowCubicConicIntersection(int pts, const SkIntersectionHelper& wt, const SkIntersectionHelper& wn, const SkIntersections& i) argument
195 debugShowCubicIntersection(int pts, const SkIntersectionHelper& wt, const SkIntersectionHelper& wn, const SkIntersections& i) argument
268 SkIntersectionHelper wt; local
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DHydraulicErodeFilter.java85 float[] wt = new float[workSize * workSize];
97 wt[idx] += wtemp;
99 ga[idx] -= stemp * wt[idx];
100 st[idx] += stemp * wt[idx];
105 float a = ga[idx] + wt[idx];
114 float at = ga[idx + idxrel[j]] + wt[idx + idxrel[j]];
129 float dwj = Math.min(wt[idx], a - aa) * (a - amax) / dtotal;
130 float dsj = st[idx] * dwj / wt[idx];
131 wt[idx] -= dwj;
133 wt[id
[all...]
/external/clang/test/CodeGen/
H A Dpascal-wchar-string.c16 UniChar wt[] = L"\pbar"; // pascal Unicode string local
22 if (wt[0] != 3)
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DRouteSpecificPool.java261 * @param wt the waiting thread
263 public void queueThread(WaitingThread wt) { argument
264 if (wt == null) {
268 this.waitingThreads.add(wt);
296 * @param wt the waiting thread
298 public void removeThread(WaitingThread wt) { argument
299 if (wt == null)
302 this.waitingThreads.remove(wt);
H A DRefQueueWorker.java125 Thread wt = this.workerThread;
126 if (wt != null) {
128 wt.interrupt();
/external/libgsm/src/
H A Ddecode.c50 word erp[40], wt[160]; local
58 for (k = 0; k <= 39; k++) wt[ j * 40 + k ] = drp[ k ];
61 Gsm_Short_Term_Synthesis_Filter( S, LARcr, wt, s );
H A Dshort_term.c265 static void Short_term_synthesis_filtering P5((S,rrp,k,wt,sr), argument
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), argument
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), argument
392 word * wt, /* received d [0..159] IN */
416 FILTER( S, LARp, 13, wt, s );
420 FILTER( S, LARp, 14, wt
[all...]
/external/srtp/test/
H A Dlfsr.c121 int wt = 0; local
124 wt += octet_weight[poly & 0xff];
125 wt += octet_weight[(poly >> 8) & 0xff];
126 wt += octet_weight[(poly >> 16) & 0xff];
127 wt += octet_weight[(poly >> 24)];
129 return wt;
204 wt += (x & 1);
/external/sonivox/arm-wt-22k/host_src/
H A Darm-wt-22k.mak23 arm-wt-22k: $(OBJS)
24 $(LD) -o $@ $(OBJS) libarm-wt-22k.a -lm
/external/libavc/common/
H A Dih264_weighted_pred.c185 /* wt - weight value */
204 WORD32 wt,
211 wt = (WORD16)(wt & 0xffff);
223 *pu1_dst = CLIP_U8((wt * (*pu1_src) + i_ofst) >> log_wd);
234 *pu1_dst = CLIP_U8(wt * (*pu1_src) + ofst);
259 /* wt - weight values for u and v */
278 WORD32 wt,
287 wt_u = (WORD16)(wt & 0xffff);
288 wt_v = (WORD16)(wt >> 1
199 ih264_weighted_pred_luma(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 log_wd, WORD32 wt, WORD32 ofst, WORD32 ht, WORD32 wd) argument
273 ih264_weighted_pred_chroma(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD32 log_wd, WORD32 wt, WORD32 ofst, WORD32 ht, WORD32 wd) argument
[all...]
H A Dih264_weighted_pred.h85 WORD32 wt,
/external/libdrm/tests/
H A Ddrmstat.c370 double wt; local
390 wt = usec(&lock_end, &lock_start);
391 if (wt <= 2.5) ++histo[8];
392 if (wt < 5.0) ++histo[0];
393 else if (wt < 50.0) ++histo[1];
394 else if (wt < 500.0) ++histo[2];
395 else if (wt < 5000.0) ++histo[3];
396 else if (wt < 50000.0) ++histo[4];
397 else if (wt < 500000.0) ++histo[5];
398 else if (wt < 5000000.
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_texstate.c286 GLenum wt = sampler->WrapT; local
295 wt = GL_REPEAT;
308 wt == GL_CLAMP ||
311 wt == GL_CLAMP_TO_BORDER || wr == GL_CLAMP_TO_BORDER))
319 ((wt != GL_CLAMP) && (wt != GL_CLAMP_TO_EDGE))))
348 (translate_wrap_mode(wt) << SS3_TCY_ADDR_MODE_SHIFT) |
H A Di830_texstate.c285 GLenum wt = sampler->WrapT; local
298 TEXCOORD_ADDR_V_MODE(translate_wrap_mode(wt))
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_dump.c239 stream = fopen(filename, "wt");
/external/sonivox/arm-wt-22k/lib_src/
H A Darm-wt-22k_lib.mak23 arm-wt-22k.a: $(OBJS)
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tile_image.c314 unsigned wt = (width + TILE_SIZE - 1) / TILE_SIZE; local
317 uint8_t *tiled = MALLOC(wt * ht * TILE_SIZE * TILE_SIZE * 4);
319 /*unsigned tiled_stride = wt * TILE_SIZE * TILE_SIZE * 4;*/
322 stride, wt);
325 stride, wt);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_sampler.c112 const unsigned wt = sampler->templ->wrap_t;
118 wt == PIPE_TEX_WRAP_CLAMP ||
121 wt == PIPE_TEX_WRAP_CLAMP_TO_BORDER ||
/external/srtp/crypto/math/
H A Dmath.c165 unsigned int wt = 0; local
167 wt += octet_weight[a.v8[0]]; /* note: endian-ness makes no difference */
168 wt += octet_weight[a.v8[1]];
169 wt += octet_weight[a.v8[2]];
170 wt += octet_weight[a.v8[3]];
172 return wt;
/external/eigen/test/
H A Dproduct_extra.cpp109 double det = 6.0, wt = 0.5; local
110 VERIFY_IS_APPROX(dNdxy.transpose()*dNdxy*det*wt, det*wt*dNdxy.transpose()*dNdxy);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_drawtex.c202 const GLfloat wt = (GLfloat) img->Width; local
204 const GLfloat s0 = obj->CropRect[0] / wt;
206 const GLfloat s1 = (obj->CropRect[0] + obj->CropRect[2]) / wt;
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
H A Drequest.py1624 wt = lambda t: f.write(t.encode('utf8'))
1632 wt(boundary)
1635 wt('Content-Disposition: form-data; name="%s"' % name)
1645 wt('; filename="%s"' % filename)
1654 wt('Content-type: %s' % value.type)
1657 wt('; %s="%s"' % (ct_name, ct_value))
1660 wt('Content-type: %s' % mime_type)
1668 wt(value)
1670 wt('--%s--' % boundary)
/external/libavc/common/arm/
H A Dih264_weighted_pred_a9q.s68 @* @param[in] wt
93 @ WORD32 wt,
104 @ [sp+4] => wt (r5)
117 ldr r5, [sp, #32] @Load wt
124 vdup.16 d2, r5 @D2 = wt (16-bit)
298 @* @param[in] wt
323 @ WORD32 wt,
334 @ [sp+4] => wt (r5)
348 ldr r5, [sp, #32] @Load wt = {wt_u (16-bit), wt_v (16-bit)}
/external/libnfc-nci/src/nfa/p2p/
H A Dnfa_p2p_main.c507 UINT8 wt, gen_bytes_len = LLCP_MAX_GEN_BYTES; local
512 LLCP_GetDiscoveryConfig (&wt, params + 2, &gen_bytes_len);
549 UINT8_TO_BE_STREAM (p, wt);
H A Dnfa_p2p_api.c1047 UINT8 wt,
1057 P2P_TRACE_API4 ("NFA_P2pSetLLCPConfig ():link_miu:%d, opt:0x%02X, wt:%d, link_timeout:%d",
1058 link_miu, opt, wt, link_timeout);
1075 p_msg->wt = wt;
1131 P2P_TRACE_API4 ("NFA_P2pGetLLCPConfig () link_miu:%d, opt:0x%02X, wt:%d, link_timeout:%d",
1045 NFA_P2pSetLLCPConfig(UINT16 link_miu, UINT8 opt, UINT8 wt, UINT16 link_timeout, UINT16 inact_timeout_init, UINT16 inact_timeout_target, UINT16 symm_delay, UINT16 data_link_timeout, UINT16 delay_first_pdu_timeout) argument

Completed in 1256 milliseconds

12