Home
last modified time | relevance | path

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

123456

/external/skia/src/pathops/
DSkAddIntersections.cpp31 static void debugShowLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowLineIntersection() argument
36 __FUNCTION__, LINE_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowLineIntersection()
40 i[0][0], LINE_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowLineIntersection()
51 static void debugShowQuadLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowQuadLineIntersection() argument
57 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), LINE_DEBUG_DATA(wn.pts())); in debugShowQuadLineIntersection()
61 i[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadLineIntersection()
72 static void debugShowQuadIntersection(int pts, const SkIntersectionHelper& wt, in debugShowQuadIntersection() argument
77 __FUNCTION__, QUAD_DEBUG_DATA(wt.pts()), QUAD_DEBUG_DATA(wn.pts())); in debugShowQuadIntersection()
81 i[0][0], QUAD_DEBUG_DATA(wt.pts()), PT_DEBUG_DATA(i, 0)); in debugShowQuadIntersection()
92 static void debugShowConicLineIntersection(int pts, const SkIntersectionHelper& wt, in debugShowConicLineIntersection() argument
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/lib/
Dgm107.asm14 sched (st 0xd wr 0x0 wt 0x3f) (st 0x1 wt 0x1) (st 0x6)
18 sched (st 0x1) (st 0xf wr 0x0) (st 0x6 wr 0x0 wt 0x1)
22 sched (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1)
26 sched (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1)
30 sched (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 wt 0x1) (st 0x6 wr 0x0 rd 0x1 wt 0x1)
34 sched (st 0x6 wt 0x2) (st 0x6 wr 0x0 rd 0x1 wt 0x1) (st 0xf wr 0x0 rd 0x1 wt 0x2)
38 sched (st 0x6 wr 0x0 wt 0x3) (st 0xd wt 0x1) (st 0x1)
58 sched (st 0xd wt 0x3f) (st 0x1) (st 0x1 wr 0x0)
62 sched (st 0xf wr 0x1) (st 0xd wr 0x1 wt 0x2) (st 0x1 wt 0x2)
70 sched (st 0x6 wr 0x1 wt 0x2) (st 0x6 wr 0x1 wt 0x2) (st 0x6 wr 0x1 wt 0x2)
[all …]
/external/curl/docs/examples/
Dpost-callback.c48 struct WriteThis *wt = (struct WriteThis *)userp; in read_callback() local
51 if(wt->sizeleft) { in read_callback()
53 size_t copy_this_much = wt->sizeleft; in read_callback()
56 memcpy(dest, wt->readptr, copy_this_much); in read_callback()
58 wt->readptr += copy_this_much; in read_callback()
59 wt->sizeleft -= copy_this_much; in read_callback()
71 struct WriteThis wt; in main() local
73 wt.readptr = data; in main()
74 wt.sizeleft = strlen(data); in main()
98 curl_easy_setopt(curl, CURLOPT_READDATA, &wt); in main()
[all …]
/external/wpa_supplicant_8/src/ap/
Dairtime_policy.c143 int wt, num_bss = 0, max_wt = 0; in update_airtime_weights() local
203 wt = bss->conf->airtime_weight * num_sta_prod / in update_airtime_weights()
206 wt = 1; in update_airtime_weights()
208 bss->airtime_weight = wt; in update_airtime_weights()
209 if (wt > max_wt) in update_airtime_weights()
210 max_wt = wt; in update_airtime_weights()
232 struct airtime_sta_weight *wt; in get_weight_for_sta() local
234 wt = hapd->conf->airtime_weight_list; in get_weight_for_sta()
235 while (wt && os_memcmp(wt->addr, sta, ETH_ALEN) != 0) in get_weight_for_sta()
236 wt = wt->next; in get_weight_for_sta()
[all …]
/external/libaom/aom_dsp/
Dquantize.c39 const qm_val_t wt = qm_ptr != NULL ? qm_ptr[rc] : (1 << AOM_QM_BITS); in aom_quantize_b_adaptive_helper_c() local
40 const int coeff = coeff_ptr[rc] * wt; in aom_quantize_b_adaptive_helper_c()
61 const qm_val_t wt = qm_ptr != NULL ? qm_ptr[rc] : (1 << AOM_QM_BITS); in aom_quantize_b_adaptive_helper_c() local
62 if (abs_coeff * wt >= (zbins[rc != 0] << AOM_QM_BITS)) { in aom_quantize_b_adaptive_helper_c()
66 tmp *= wt; in aom_quantize_b_adaptive_helper_c()
90 const qm_val_t wt = qm_ptr != NULL ? qm_ptr[rc] : (1 << AOM_QM_BITS); in aom_quantize_b_adaptive_helper_c() local
91 const int coeff = coeff_ptr[rc] * wt; in aom_quantize_b_adaptive_helper_c()
129 const qm_val_t wt = qm_ptr != NULL ? qm_ptr[rc] : (1 << AOM_QM_BITS); in aom_quantize_b_helper_c() local
130 const int coeff = coeff_ptr[rc] * wt; in aom_quantize_b_helper_c()
148 const qm_val_t wt = qm_ptr != NULL ? qm_ptr[rc] : (1 << AOM_QM_BITS); in aom_quantize_b_helper_c() local
[all …]
/external/tensorflow/tensorflow/core/distributed_runtime/
Dtensor_coding.cc152 WireType wt = GetTagWireType(p.first); in ParseTensorSubmessage() local
166 if ((wt != WIRETYPE_VARINT) || !input->ReadVarint32(&v)) return false; in ParseTensorSubmessage()
173 if ((wt != WIRETYPE_LENGTH_DELIMITED) || in ParseTensorSubmessage()
181 if ((wt != WIRETYPE_VARINT) || !input->ReadVarint32(&v)) return false; in ParseTensorSubmessage()
190 if (wt != WIRETYPE_LENGTH_DELIMITED || in ParseTensorSubmessage()
223 WireType wt = GetTagWireType(p.first); in ParseFast() local
229 if (wt != WIRETYPE_LENGTH_DELIMITED) return false; in ParseFast()
246 if ((wt != WIRETYPE_VARINT) || !input.ReadVarint32(&v)) return false; in ParseFast()
252 if ((wt != WIRETYPE_VARINT) || !input.ReadVarint64(&v)) return false; in ParseFast()
257 if ((wt != WIRETYPE_LENGTH_DELIMITED) || in ParseFast()
[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/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/ltp/testcases/kernel/syscalls/fcntl/
Dfcntl36.c73 long wt = pa->cnt; in fn_ofd_w() local
84 memset(buf, wt, pa->length); in fn_ofd_w()
95 wt++; in fn_ofd_w()
96 if (wt >= 255) in fn_ofd_w()
97 wt = pa->cnt; in fn_ofd_w()
113 long wt = pa->cnt; in fn_posix_w() local
123 memset(buf, wt, pa->length); in fn_posix_w()
134 wt++; in fn_posix_w()
135 if (wt >= 255) in fn_posix_w()
136 wt = pa->cnt; in fn_posix_w()
/external/libavc/common/
Dih264_weighted_pred.c204 WORD32 wt, in ih264_weighted_pred_luma() argument
211 wt = (WORD16)(wt & 0xffff); in ih264_weighted_pred_luma()
223 *pu1_dst = CLIP_U8((wt * (*pu1_src) + i_ofst) >> log_wd); in ih264_weighted_pred_luma()
234 *pu1_dst = CLIP_U8(wt * (*pu1_src) + ofst); in ih264_weighted_pred_luma()
278 WORD32 wt, in ih264_weighted_pred_chroma() argument
287 wt_u = (WORD16)(wt & 0xffff); in ih264_weighted_pred_chroma()
288 wt_v = (WORD16)(wt >> 16); in ih264_weighted_pred_chroma()
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/
DMipsGenDAGISel.inc9045 /* 17103*/ OPC_RecordChild2, // #1 = $wt
9049 …} 3638:{ *:[iPTR] }, MSA128BOpnd:{ *:[v16i8] }:$ws, MSA128BOpnd:{ *:[v16i8] }:$wt) - Complexity = 8
9050 … // Dst: (ADD_A_B:{ *:[v16i8] } MSA128BOpnd:{ *:[v16i8] }:$ws, MSA128BOpnd:{ *:[v16i8] }:$wt)
9054 /* 17119*/ OPC_RecordChild2, // #1 = $wt
9058 …} 3640:{ *:[iPTR] }, MSA128HOpnd:{ *:[v8i16] }:$ws, MSA128HOpnd:{ *:[v8i16] }:$wt) - Complexity = 8
9059 … // Dst: (ADD_A_H:{ *:[v8i16] } MSA128HOpnd:{ *:[v8i16] }:$ws, MSA128HOpnd:{ *:[v8i16] }:$wt)
9063 /* 17135*/ OPC_RecordChild2, // #1 = $wt
9067 …} 3641:{ *:[iPTR] }, MSA128WOpnd:{ *:[v4i32] }:$ws, MSA128WOpnd:{ *:[v4i32] }:$wt) - Complexity = 8
9068 … // Dst: (ADD_A_W:{ *:[v4i32] } MSA128WOpnd:{ *:[v4i32] }:$ws, MSA128WOpnd:{ *:[v4i32] }:$wt)
9072 /* 17151*/ OPC_RecordChild2, // #1 = $wt
[all …]
DMipsGenGlobalISel.inc1012wt), MSA128DOpnd:{ *:[v2i64] }:$wd_in) => (MADDV_D:{ *:[v2i64] } MSA128DOpnd:{ *:[v2i64] }:$wd_i…
1017 GIR_Copy, /*NewInsnID*/0, /*OldInsnID*/1, /*OpIdx*/2, // wt
1033 …*:[v2i64] }:$wt)) => (MADDV_D:{ *:[v2i64] } MSA128DOpnd:{ *:[v2i64] }:$wd_in, MSA128DOpnd:{ *:[v…
1038 GIR_Copy, /*NewInsnID*/0, /*OldInsnID*/1, /*OpIdx*/2, // wt
1048 …ws, MSA128DOpnd:{ *:[v2i64] }:$wt) => (ADDV_D:{ *:[v2i64] } MSA128DOpnd:{ *:[v2i64] }:$ws, MSA12…
1086wt), MSA128WOpnd:{ *:[v4i32] }:$wd_in) => (MADDV_W:{ *:[v4i32] } MSA128WOpnd:{ *:[v4i32] }:$wd_i…
1091 GIR_Copy, /*NewInsnID*/0, /*OldInsnID*/1, /*OpIdx*/2, // wt
1107 …*:[v4i32] }:$wt)) => (MADDV_W:{ *:[v4i32] } MSA128WOpnd:{ *:[v4i32] }:$wd_in, MSA128WOpnd:{ *:[v…
1112 GIR_Copy, /*NewInsnID*/0, /*OldInsnID*/1, /*OpIdx*/2, // wt
1122 …ws, MSA128WOpnd:{ *:[v4i32] }:$wt) => (ADDV_W:{ *:[v4i32] } MSA128WOpnd:{ *:[v4i32] }:$ws, MSA12…
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DBuilderContractsTest.kt36 val wt: Int in <lambda>() constant
38 wt = 123 in <lambda>()
40 consume(wt) in <lambda>()
/external/grpc-grpc/third_party/nanopb/tests/fuzztest/
Dfuzztest.c89 pb_wire_type_t wt = rand_int(0, 3); in rand_fill_protobuf() local
90 if (wt == 3) wt = 5; /* Gap in values */ in rand_fill_protobuf()
92 if (!pb_encode_tag(&stream, wt, rand_int(min_tag, min_tag + 512))) in rand_fill_protobuf()
95 if (wt == PB_WT_VARINT) in rand_fill_protobuf()
101 else if (wt == PB_WT_64BIT) in rand_fill_protobuf()
107 else if (wt == PB_WT_32BIT) in rand_fill_protobuf()
113 else if (wt == PB_WT_STRING) in rand_fill_protobuf()
/external/mesa3d/src/mesa/drivers/dri/i915/
Di915_texstate.c290 GLenum wt = sampler->WrapT; in i915_update_tex_unit() local
299 wt = GL_REPEAT; in i915_update_tex_unit()
312 wt == GL_CLAMP || in i915_update_tex_unit()
315 wt == GL_CLAMP_TO_BORDER || wr == GL_CLAMP_TO_BORDER)) in i915_update_tex_unit()
323 ((wt != GL_CLAMP) && (wt != GL_CLAMP_TO_EDGE)))) in i915_update_tex_unit()
352 (translate_wrap_mode(wt) << SS3_TCY_ADDR_MODE_SHIFT) | in i915_update_tex_unit()
/external/libaom/av1/common/x86/
Djnt_convolve_avx2.c32 const __m256i wt = _mm256_unpacklo_epi16(wt0, wt1); in unpack_weights_avx2() local
33 return wt; in unpack_weights_avx2()
52 const __m256i wt = unpack_weights_avx2(conv_params); in av1_dist_wtd_convolve_x_avx2() local
103 comp_avg(&data_ref_0, &res_unsigned, &wt, use_dist_wtd_comp_avg); in av1_dist_wtd_convolve_x_avx2()
157 comp_avg(&data_ref_0, &res_unsigned, &wt, use_dist_wtd_comp_avg); in av1_dist_wtd_convolve_x_avx2()
202 const __m256i wt = unpack_weights_avx2(conv_params); in av1_dist_wtd_convolve_y_avx2() local
293 &wt, use_dist_wtd_comp_avg); in av1_dist_wtd_convolve_y_avx2()
354 &data_ref_0_lo, &res_lo_unsigned, &wt, use_dist_wtd_comp_avg); in av1_dist_wtd_convolve_y_avx2()
357 &data_ref_0_hi, &res_hi_unsigned, &wt, use_dist_wtd_comp_avg); in av1_dist_wtd_convolve_y_avx2()
471 &wt, use_dist_wtd_comp_avg); in av1_dist_wtd_convolve_y_avx2()
[all …]
Dwarp_plane_sse4.c457 __m128i *res_sub_const, __m128i *round_bits_const, __m128i *wt) { in unpack_weights_and_set_round_const() argument
467 *wt = _mm_unpacklo_epi16(wt0, wt1); in unpack_weights_and_set_round_const()
583 const __m128i *wt, const __m128i *res_sub_const, __m128i *round_bits_const, in store_vertical_filter_output() argument
603 const __m128i wt_res_lo = _mm_madd_epi16(p_16_lo, *wt); in store_vertical_filter_output()
636 const __m128i wt_res_hi = _mm_madd_epi16(p_16_hi, *wt); in store_vertical_filter_output()
683 __m128i res_sub_const, round_bits_const, wt; in warp_vertical_filter() local
685 &res_sub_const, &round_bits_const, &wt); in warp_vertical_filter()
697 store_vertical_filter_output(&res_lo, &res_hi, res_add_const, &wt, in warp_vertical_filter()
711 __m128i res_sub_const, round_bits_const, wt; in warp_vertical_filter_gamma0() local
713 &res_sub_const, &round_bits_const, &wt); in warp_vertical_filter_gamma0()
[all …]
/external/nanopb-c/tests/fuzztest/
Dfuzztest.c89 pb_wire_type_t wt = rand_int(0, 3); in rand_fill_protobuf() local
90 if (wt == 3) wt = 5; /* Gap in values */ in rand_fill_protobuf()
92 if (!pb_encode_tag(&stream, wt, rand_int(min_tag, min_tag + 512))) in rand_fill_protobuf()
95 if (wt == PB_WT_VARINT) in rand_fill_protobuf()
101 else if (wt == PB_WT_64BIT) in rand_fill_protobuf()
107 else if (wt == PB_WT_32BIT) in rand_fill_protobuf()
113 else if (wt == PB_WT_STRING) in rand_fill_protobuf()
/external/scapy/scapy/
Derror.py25 wt = conf.warning_threshold
26 if wt > 0:
35 if ltm-tm > wt:
/external/llvm/lib/Target/Mips/
DMipsMSAInstrFormats.td127 bits<5> wt;
133 let Inst{20-16} = wt;
140 bits<5> wt;
146 let Inst{20-16} = wt;
399 bits<5> wt;
404 let Inst{20-16} = wt;
412 bits<5> wt;
416 let Inst{20-16} = wt;
422 bits<5> wt;
425 let Inst{20-16} = wt;
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)
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsMSAInstrFormats.td127 bits<5> wt;
133 let Inst{20-16} = wt;
140 bits<5> wt;
146 let Inst{20-16} = wt;
399 bits<5> wt;
404 let Inst{20-16} = wt;
412 bits<5> wt;
416 let Inst{20-16} = wt;
422 bits<5> wt;
425 let Inst{20-16} = wt;
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)

123456