/external/iproute2/tc/ |
D | f_u32.c | 117 static int pack_key(struct tc_u32_sel *sel, __u32 key, __u32 mask, in pack_key() argument 121 int hwm = sel->nkeys; in pack_key() 126 if (sel->keys[i].off == off && sel->keys[i].offmask == offmask) { in pack_key() 127 __u32 intersect = mask&sel->keys[i].mask; in pack_key() 129 if ((key^sel->keys[i].val) & intersect) in pack_key() 131 sel->keys[i].val |= key; in pack_key() 132 sel->keys[i].mask |= mask; in pack_key() 141 sel->keys[hwm].val = key; in pack_key() 142 sel->keys[hwm].mask = mask; in pack_key() 143 sel->keys[hwm].off = off; in pack_key() [all …]
|
D | m_pedit.c | 62 pedit_parse_nopopt (int *argc_p, char ***argv_p,struct tc_pedit_sel *sel,struct tc_pedit_key *tkey) in pedit_parse_nopopt() argument 122 pack_key(struct tc_pedit_sel *sel,struct tc_pedit_key *tkey) in pack_key() argument 124 int hwm = sel->nkeys; in pack_key() 134 sel->keys[hwm].val = tkey->val; in pack_key() 135 sel->keys[hwm].mask = tkey->mask; in pack_key() 136 sel->keys[hwm].off = tkey->off; in pack_key() 137 sel->keys[hwm].at = tkey->at; in pack_key() 138 sel->keys[hwm].offmask = tkey->offmask; in pack_key() 139 sel->keys[hwm].shift = tkey->shift; in pack_key() 140 sel->nkeys++; in pack_key() [all …]
|
D | m_csum.c | 40 parse_csum_args(int *argc_p, char ***argv_p, struct tc_csum *sel) in parse_csum_args() argument 52 sel->update_flags |= TCA_CSUM_UPDATE_FLAG_IPV4HDR; in parse_csum_args() 55 sel->update_flags |= TCA_CSUM_UPDATE_FLAG_ICMP; in parse_csum_args() 58 sel->update_flags |= TCA_CSUM_UPDATE_FLAG_IGMP; in parse_csum_args() 61 sel->update_flags |= TCA_CSUM_UPDATE_FLAG_TCP; in parse_csum_args() 64 sel->update_flags |= TCA_CSUM_UPDATE_FLAG_UDP; in parse_csum_args() 67 sel->update_flags |= TCA_CSUM_UPDATE_FLAG_UDPLITE; in parse_csum_args() 89 struct tc_csum sel; in parse_csum() local 96 memset(&sel, 0, sizeof(sel)); in parse_csum() 101 if (parse_csum_args(&argc, &argv, &sel)) { in parse_csum() [all …]
|
D | m_nat.c | 44 parse_nat_args(int *argc_p, char ***argv_p,struct tc_nat *sel) in parse_nat_args() argument 54 sel->flags |= TCA_NAT_FLAG_EGRESS; in parse_nat_args() 63 sel->old_addr = addr.data[0]; in parse_nat_args() 64 sel->mask = htonl(~0u << (32 - addr.bitlen)); in parse_nat_args() 71 sel->new_addr = addr.data[0]; in parse_nat_args() 87 struct tc_nat sel; in parse_nat() local 94 memset(&sel, 0, sizeof(sel)); in parse_nat() 99 if (parse_nat_args(&argc, &argv, &sel)) { in parse_nat() 122 sel.action = TC_ACT_RECLASSIFY; in parse_nat() 126 sel.action = TC_ACT_PIPE; in parse_nat() [all …]
|
D | p_ip.c | 27 parse_ip(int *argc_p, char ***argv_p,struct tc_pedit_sel *sel,struct tc_pedit_key *tkey) in parse_ip() argument 39 res = parse_cmd(&argc, &argv, 4, TIPV4,RU32,sel,tkey); in parse_ip() 45 res = parse_cmd(&argc, &argv, 4, TIPV4,RU32,sel,tkey); in parse_ip() 55 res = parse_cmd(&argc, &argv, 1, TU32,RU8,sel,tkey); in parse_ip() 61 res = parse_cmd(&argc, &argv, 1, TU32,RU8,sel,tkey); in parse_ip() 67 res = parse_cmd(&argc, &argv, 1, TU32,RU8,sel,tkey); in parse_ip() 74 res = parse_cmd(&argc, &argv, 1, TU32,RU8,sel,tkey); in parse_ip() 81 res = parse_cmd(&argc, &argv, 1, TU32,0x3F,sel,tkey); in parse_ip() 88 res = parse_cmd(&argc, &argv, 1, TU32,0x1F,sel,tkey); in parse_ip() 94 res = parse_cmd(&argc, &argv, 1, TU32,0x80,sel,tkey); in parse_ip() [all …]
|
D | m_pedit.h | 46 …int (*parse_peopt)(int *argc_p, char ***argv_p,struct tc_pedit_sel *sel,struct tc_pedit_key *t… 50 …c_p, char ***argv_p, __u32 len, int type,__u32 retain,struct tc_pedit_sel *sel,struct tc_pedit_key… 51 extern int pack_key(struct tc_pedit_sel *sel,struct tc_pedit_key *tkey); 52 extern int pack_key32(__u32 retain,struct tc_pedit_sel *sel,struct tc_pedit_key *tkey); 53 extern int pack_key16(__u32 retain,struct tc_pedit_sel *sel,struct tc_pedit_key *tkey); 54 extern int pack_key8(__u32 retain,struct tc_pedit_sel *sel,struct tc_pedit_key *tkey); 56 …c_p, char ***argv_p, __u32 len, int type,__u32 retain,struct tc_pedit_sel *sel,struct tc_pedit_key… 57 extern int parse_offset(int *argc_p, char ***argv_p,struct tc_pedit_sel *sel,struct tc_pedit_key *t…
|
D | m_skbedit.c | 61 struct tc_skbedit sel = { 0 }; in parse_skbedit() local 105 sel.action = TC_ACT_RECLASSIFY; in parse_skbedit() 108 sel.action = TC_ACT_PIPE; in parse_skbedit() 112 sel.action = TC_ACT_SHOT; in parse_skbedit() 115 sel.action = TC_ACT_UNSPEC; in parse_skbedit() 118 sel.action = TC_ACT_OK; in parse_skbedit() 126 if (get_u32(&sel.index, *argv, 10)) { in parse_skbedit() 144 addattr_l(n, MAX_MSG, TCA_SKBEDIT_PARMS, &sel, sizeof(sel)); in parse_skbedit()
|
/external/llvm/test/Transforms/InstCombine/ |
D | unordered-fcmp-select.ll | 5 ; CHECK-NEXT: %sel = select i1 %cmp.inv, float %b, float %a 6 ; CHECK-NEXT: ret float %sel 9 %sel = select i1 %cmp, float %a, float %b 10 ret float %sel 15 ; CHECK-NEXT: %sel = select i1 %cmp.inv, float %b, float %a 16 ; CHECK-NEXT: ret float %sel 19 %sel = select i1 %cmp, float %a, float %b 20 ret float %sel 25 ; CHECK-NEXT: %sel = select i1 %cmp.inv, float %a, float %b 26 ; CHECK-NEXT: ret float %sel [all …]
|
D | select-extractelement.ll | 11 %sel = select i1 %cmp, <4 x float> %a, <4 x float> %b 12 %extract = extractelement <4 x float> %sel, i32 2 21 %sel = select i1 %cmp, <4 x float> %a, <4 x float> %b 22 %extract1 = extractelement <4 x float> %sel, i32 1 23 %extract2 = extractelement <4 x float> %sel, i32 2 34 %sel = select i1 %cmp, <4 x float> %a, <4 x float> %b 35 %extract = extractelement <4 x float> %sel, i32 2 36 call void @v4float_user(<4 x float> %sel) 44 %sel = select <4 x i1> %cmp, <4 x float> %a, <4 x float> %b 45 %extract = extractelement <4 x float> %sel, i32 2 [all …]
|
/external/llvm/test/Analysis/CostModel/X86/ |
D | vselect-cost.ll | 14 ; SSE2: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1> 15 ; SSE41: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1> 16 ; AVX: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1> 17 ; AVX2: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1> 18 %sel = select <2 x i1> <i1 true, i1 false>, <2 x i64> %a, <2 x i64> %b 19 ret <2 x i64> %sel 24 ; SSE2: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1> 25 ; SSE41: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1> 26 ; AVX: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1> 27 ; AVX2: Cost Model: {{.*}} 1 for instruction: %sel = select <2 x i1> [all …]
|
/external/icu/icu4c/source/common/ |
D | ucnvsel.cpp | 227 ucnvsel_close(UConverterSelector *sel) { in ucnvsel_close() argument 228 if (!sel) { in ucnvsel_close() 231 if (sel->ownEncodingStrings) { in ucnvsel_close() 232 uprv_free(sel->encodings[0]); in ucnvsel_close() 234 uprv_free(sel->encodings); in ucnvsel_close() 235 if (sel->ownPv) { in ucnvsel_close() 236 uprv_free(sel->pv); in ucnvsel_close() 238 utrie2_close(sel->trie); in ucnvsel_close() 239 uprv_free(sel->swapped); in ucnvsel_close() 240 uprv_free(sel); in ucnvsel_close() [all …]
|
/external/libnl/lib/route/cls/ |
D | u32.c | 119 struct tc_u32_sel *sel; in u32_msg_parser() local 127 sel = u->cu_selector->d_data; in u32_msg_parser() 129 (sel->nkeys * sizeof(uint64_t)); in u32_msg_parser() 197 static void print_selector(struct nl_dump_params *p, struct tc_u32_sel *sel, in print_selector() argument 203 if (sel->hmask || sel->hoff) { in print_selector() 208 nl_dump(p, " hash at %u & 0x%x", sel->hoff, sel->hmask); in print_selector() 211 if (sel->flags & (TC_U32_OFFSET | TC_U32_VAROFFSET)) { in print_selector() 212 nl_dump(p, " offset at %u", sel->off); in print_selector() 214 if (sel->flags & TC_U32_VAROFFSET) in print_selector() 216 sel->offoff, ntohs(sel->offmask), sel->offshift); in print_selector() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | cmov-fp.ll | 9 %sel = select i1 %cmp, double 99.0, double %x 10 ret double %sel 28 %sel = select i1 %cmp, double 99.0, double %x 29 ret double %sel 46 %sel = select i1 %cmp, double 99.0, double %x 47 ret double %sel 64 %sel = select i1 %cmp, double 99.0, double %x 65 ret double %sel 82 %sel = select i1 %cmp, double 99.0, double %x 83 ret double %sel [all …]
|
D | vselect-minmax.ll | 21 %sel = select <16 x i1> %cmp, <16 x i8> %load.a, <16 x i8> %load.b 22 store <16 x i8> %sel, <16 x i8>* %ptr.a, align 2 56 %sel = select <16 x i1> %cmp, <16 x i8> %load.a, <16 x i8> %load.b 57 store <16 x i8> %sel, <16 x i8>* %ptr.a, align 2 91 %sel = select <16 x i1> %cmp, <16 x i8> %load.a, <16 x i8> %load.b 92 store <16 x i8> %sel, <16 x i8>* %ptr.a, align 2 126 %sel = select <16 x i1> %cmp, <16 x i8> %load.a, <16 x i8> %load.b 127 store <16 x i8> %sel, <16 x i8>* %ptr.a, align 2 161 %sel = select <16 x i1> %cmp, <16 x i8> %load.a, <16 x i8> %load.b 162 store <16 x i8> %sel, <16 x i8>* %ptr.a, align 2 [all …]
|
/external/iproute2/ip/ |
D | ipxfrm.c | 444 void xfrm_selector_print(struct xfrm_selector *sel, __u16 family, in xfrm_selector_print() argument 450 f = sel->family; in xfrm_selector_print() 460 fprintf(fp, "src %s/%u ", rt_addr_n2a(f, sizeof(sel->saddr), in xfrm_selector_print() 461 &sel->saddr, abuf, sizeof(abuf)), in xfrm_selector_print() 462 sel->prefixlen_s); in xfrm_selector_print() 465 fprintf(fp, "dst %s/%u ", rt_addr_n2a(f, sizeof(sel->daddr), in xfrm_selector_print() 466 &sel->daddr, abuf, sizeof(abuf)), in xfrm_selector_print() 467 sel->prefixlen_d); in xfrm_selector_print() 469 if (sel->proto) in xfrm_selector_print() 470 fprintf(fp, "proto %s ", strxf_proto(sel->proto)); in xfrm_selector_print() [all …]
|
D | xfrm_policy.c | 277 req.xpinfo.sel.family = preferred_family; in xfrm_policy_modify() 356 xfrm_selector_parse(&req.xpinfo.sel, &argc, &argv); in xfrm_policy_modify() 358 preferred_family = req.xpinfo.sel.family; in xfrm_policy_modify() 396 if (req.xpinfo.sel.family == AF_UNSPEC) in xfrm_policy_modify() 397 req.xpinfo.sel.family = AF_INET; in xfrm_policy_modify() 420 if (xfrm_addr_match(&xpinfo->sel.saddr, &filter.xpinfo.sel.saddr, in xfrm_policy_filter_match() 426 if (xfrm_addr_match(&xpinfo->sel.daddr, &filter.xpinfo.sel.daddr, in xfrm_policy_filter_match() 431 if ((xpinfo->sel.ifindex^filter.xpinfo.sel.ifindex)&filter.sel_dev_mask) in xfrm_policy_filter_match() 434 if ((xpinfo->sel.proto^filter.xpinfo.sel.proto)&filter.upspec_proto_mask) in xfrm_policy_filter_match() 438 if ((xpinfo->sel.sport^filter.xpinfo.sel.sport)&filter.upspec_sport_mask) in xfrm_policy_filter_match() [all …]
|
/external/libedit/src/ |
D | sig.c | 52 private EditLine *sel = NULL; variable 78 sel->el_signal->sig_no = signo; in sig_handler() 82 tty_rawmode(sel); in sig_handler() 83 if (ed_redisplay(sel, 0) == CC_REFRESH) in sig_handler() 84 re_refresh(sel); in sig_handler() 85 terminal__flush(sel); in sig_handler() 89 el_resize(sel); in sig_handler() 93 tty_cookedmode(sel); in sig_handler() 101 (void) sigaction(signo, &sel->el_signal->sig_action[i], NULL); in sig_handler() 102 sel->el_signal->sig_action[i].sa_handler = SIG_ERR; in sig_handler() [all …]
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_shader.c | 112 struct r600_pipe_shader_selector *sel = shader->selector; in r600_pipe_shader_create() local 122 tgsi_dump(sel->tokens, 0); in r600_pipe_shader_create() 124 if (sel->so.num_outputs) { in r600_pipe_shader_create() 127 for (i = 0; i < sel->so.num_outputs; i++) { in r600_pipe_shader_create() 128 unsigned mask = ((1 << sel->so.output[i].num_components) - 1) << in r600_pipe_shader_create() 129 sel->so.output[i].start_component; in r600_pipe_shader_create() 131 sel->so.output[i].output_buffer, sel->so.output[i].register_index, in r600_pipe_shader_create() 168 unsigned sel; member 279 alu->src[src_idx].sel = sel0 | (sel1 << 8); in r600_src_from_byte_stream() 304 alu.dst.sel = bytes[bytes_read++]; in r600_alu_from_byte_stream() [all …]
|
D | r600_asm.c | 681 static int reserve_gpr(struct alu_bank_swizzle *bs, unsigned sel, unsigned chan, unsigned cycle) in reserve_gpr() argument 684 bs->hw_gpr[cycle][chan] = sel; in reserve_gpr() 685 else if (bs->hw_gpr[cycle][chan] != (int)sel) { in reserve_gpr() 692 static int reserve_cfile(struct r600_bytecode *bc, struct alu_bank_swizzle *bs, unsigned sel, unsig… in reserve_cfile() argument 701 bs->hw_cfile_addr[res] = sel; in reserve_cfile() 704 } else if (bs->hw_cfile_addr[res] == sel && in reserve_cfile() 712 static int is_gpr(unsigned sel) in is_gpr() argument 714 return (sel >= 0 && sel <= 127); in is_gpr() 720 static int is_cfile(unsigned sel) in is_cfile() argument 722 return (sel > 255 && sel < 512) || in is_cfile() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
D | X509CRLStoreSelector.java | 230 X509CRLStoreSelector sel = X509CRLStoreSelector.getInstance(this); in clone() local 231 sel.deltaCRLIndicator = deltaCRLIndicator; in clone() 232 sel.completeCRLEnabled = completeCRLEnabled; in clone() 233 sel.maxBaseCRLNumber = maxBaseCRLNumber; in clone() 234 sel.attrCertChecking = attrCertChecking; in clone() 235 sel.issuingDistributionPointEnabled = issuingDistributionPointEnabled; in clone() 236 sel.issuingDistributionPoint = Arrays.clone(issuingDistributionPoint); in clone() 237 return sel; in clone()
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | networkconfig.cpp | 63 void NetworkConfig::paramsFromScanResults(QTreeWidgetItem *sel) in paramsFromScanResults() argument 68 setWindowTitle(sel->text(0)); in paramsFromScanResults() 69 ssidEdit->setText(sel->text(0)); in paramsFromScanResults() 71 QString flags = sel->text(4); in paramsFromScanResults() 105 bssid = sel->text(1); in paramsFromScanResults() 109 void NetworkConfig::authChanged(int sel) in authChanged() argument 111 encrSelect->setEnabled(sel != AUTH_NONE_OPEN && sel != AUTH_NONE_WEP && in authChanged() 112 sel != AUTH_NONE_WEP_SHARED); in authChanged() 113 pskEdit->setEnabled(sel == AUTH_WPA_PSK || sel == AUTH_WPA2_PSK); in authChanged() 114 bool eap = sel == AUTH_IEEE8021X || sel == AUTH_WPA_EAP || in authChanged() [all …]
|
D | wpagui.h | 57 virtual void editNetwork(const QString &sel); 58 virtual void removeNetwork(const QString &sel); 59 virtual void enableNetwork(const QString &sel); 60 virtual void disableNetwork(const QString &sel); 61 virtual int getNetworkDisabled(const QString &sel); 83 virtual void selectNetwork(const QString &sel); 93 virtual void selectAdapter(const QString &sel);
|
/external/skia/samplecode/ |
D | SampleFuzz.cpp | 60 int sel; in make_number() local 63 sel = R(6); in make_number() 65 sel = R(4); in make_number() 68 if (return_undef == false && sel == 0) { in make_number() 69 sel = 1; in make_number() 76 switch (sel) { in make_number() 101 int sel; in make_fill() 103 if (quick == true) sel = 0; else sel = R(6); in make_fill() 105 switch (sel) { in make_fill()
|
/external/llvm/test/CodeGen/R600/ |
D | select64.ll | 23 %sel = select i1 %cmp, i64 0, i64 %in 24 %trunc = trunc i64 %sel to i32 34 %sel = select i1 %cmp, i64 %a, i64 %b 35 %trunc = trunc i64 %sel to i32 47 %sel = select i1 %cmp, i64 %a, i64 %b 48 %trunc = trunc i64 %sel to i32 65 %sel = select i1 %cmp, i64 %a, i64 270582939648 ; 63 << 32 66 store i64 %sel, i64 addrspace(1)* %out, align 8
|
/external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
D | TestSelection.java | 89 … CharsetSelector sel = new CharsetSelector(testEncodings, excluded, CharsetICU.ROUNDTRIP_SET); in TestConversionUTF16() local 91 List<String> result = sel.selectForString(texts[i]); in TestConversionUTF16() 131 CharsetSelector sel = null; in TestCharsetSelectorCodeCoverage() local 133 sel = new CharsetSelector(emptyList, nonEmptySet, CharsetICU.ROUNDTRIP_SET); in TestCharsetSelectorCodeCoverage() 137 sel = new CharsetSelector(null, null, -1); in TestCharsetSelectorCodeCoverage() 138 … have been thrown by CharsetSelector when given a bogus mappingType, but got - " + sel.toString()); in TestCharsetSelectorCodeCoverage()
|