Searched defs:repl (Results 1 - 25 of 38) sorted by relevance

12

/external/iproute2/ip/
H A Dipseg6.c128 int repl = 0, dump = 0; local
161 repl = 1;
165 if (!repl && !dump) {
168 } else if (repl) {
/external/ltp/testcases/cve/
H A Dcve-2016-4997.c86 struct ipt_replace repl; member in struct:payload
114 p.repl.num_entries = 2;
115 p.repl.num_counters = 1;
116 p.repl.size = sizeof(struct payload);
117 p.repl.valid_hooks = 0;
/external/python/cpython2/Lib/
H A Dmimify.py45 repl = re.compile('^subject:\\s+re: ', re.I) variable
152 if not prefix and repl.match(line):
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/
H A Datrace_agent.py357 def repl(m): function in function:fix_missing_tgids
369 trace_data = re.sub(r'^\s*(\S+)-(\d+)\s+(\(\S+\))', repl, trace_data,
/external/deqp/framework/qphelper/
H A DqpXmlWriter.c56 const char* repl = DE_NULL; local
60 case '<': repl = "&lt;"; break;
61 case '>': repl = "&gt;"; break;
62 case '&': repl = "&amp;"; break;
63 case '\'': repl = "&apos;"; break;
64 case '"': repl = "&quot;"; break;
67 case 1: repl = "&lt;SOH&gt;"; break;
68 case 2: repl = "&lt;STX&gt;"; break;
69 case 3: repl = "&lt;ETX&gt;"; break;
70 case 4: repl
[all...]
/external/google-breakpad/src/testing/gtest/scripts/
H A Dupload.py827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
/external/google-breakpad/src/testing/scripts/
H A Dupload.py827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
/external/googletest/googlemock/scripts/
H A Dupload.py827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
/external/googletest/googletest/scripts/
H A Dupload.py827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
/external/libnl/lib/netfilter/
H A Dct.c119 static int ct_parse_ip(struct nfnl_ct *ct, int repl, struct nlattr *attr) argument
133 err = nfnl_ct_set_src(ct, repl, addr);
142 err = nfnl_ct_set_dst(ct, repl, addr);
151 err = nfnl_ct_set_src(ct, repl, addr);
160 err = nfnl_ct_set_dst(ct, repl, addr);
174 static int ct_parse_proto(struct nfnl_ct *ct, int repl, struct nlattr *attr) argument
183 if (!repl && tb[CTA_PROTO_NUM])
186 nfnl_ct_set_src_port(ct, repl,
189 nfnl_ct_set_dst_port(ct, repl,
194 nfnl_ct_set_icmp_id(ct, repl,
217 ct_parse_tuple(struct nfnl_ct *ct, int repl, struct nlattr *attr) argument
277 ct_parse_counters(struct nfnl_ct *ct, int repl, struct nlattr *attr) argument
435 nfnl_ct_build_tuple(struct nl_msg *msg, const struct nfnl_ct *ct, int repl) argument
[all...]
H A Dct_obj.c631 int nfnl_ct_set_src(struct nfnl_ct *ct, int repl, struct nl_addr *addr) argument
633 struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig;
634 int attr = repl ? CT_ATTR_REPL_SRC : CT_ATTR_ORIG_SRC;
638 int nfnl_ct_set_dst(struct nfnl_ct *ct, int repl, struct nl_addr *addr) argument
640 struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig;
641 int attr = repl ? CT_ATTR_REPL_DST : CT_ATTR_ORIG_DST;
645 struct nl_addr *nfnl_ct_get_src(const struct nfnl_ct *ct, int repl) argument
647 const struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig;
648 int attr = repl ? CT_ATTR_REPL_SRC : CT_ATTR_ORIG_SRC;
654 struct nl_addr *nfnl_ct_get_dst(const struct nfnl_ct *ct, int repl) argument
663 nfnl_ct_set_src_port(struct nfnl_ct *ct, int repl, uint16_t port) argument
672 nfnl_ct_test_src_port(const struct nfnl_ct *ct, int repl) argument
678 nfnl_ct_get_src_port(const struct nfnl_ct *ct, int repl) argument
685 nfnl_ct_set_dst_port(struct nfnl_ct *ct, int repl, uint16_t port) argument
694 nfnl_ct_test_dst_port(const struct nfnl_ct *ct, int repl) argument
700 nfnl_ct_get_dst_port(const struct nfnl_ct *ct, int repl) argument
707 nfnl_ct_set_icmp_id(struct nfnl_ct *ct, int repl, uint16_t id) argument
716 nfnl_ct_test_icmp_id(const struct nfnl_ct *ct, int repl) argument
722 nfnl_ct_get_icmp_id(const struct nfnl_ct *ct, int repl) argument
729 nfnl_ct_set_icmp_type(struct nfnl_ct *ct, int repl, uint8_t type) argument
738 nfnl_ct_test_icmp_type(const struct nfnl_ct *ct, int repl) argument
744 nfnl_ct_get_icmp_type(const struct nfnl_ct *ct, int repl) argument
751 nfnl_ct_set_icmp_code(struct nfnl_ct *ct, int repl, uint8_t code) argument
760 nfnl_ct_test_icmp_code(const struct nfnl_ct *ct, int repl) argument
766 nfnl_ct_get_icmp_code(const struct nfnl_ct *ct, int repl) argument
773 nfnl_ct_set_packets(struct nfnl_ct *ct, int repl, uint64_t packets) argument
782 nfnl_ct_test_packets(const struct nfnl_ct *ct, int repl) argument
788 nfnl_ct_get_packets(const struct nfnl_ct *ct, int repl) argument
795 nfnl_ct_set_bytes(struct nfnl_ct *ct, int repl, uint64_t bytes) argument
804 nfnl_ct_test_bytes(const struct nfnl_ct *ct, int repl) argument
810 nfnl_ct_get_bytes(const struct nfnl_ct *ct, int repl) argument
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dopt_function_inlining.cpp40 ir_dereference *repl);
331 * Replaces references to the "orig" variable with a clone of "repl."
341 ir_variable_replacement_visitor(ir_variable *orig, ir_dereference *repl) argument
344 this->repl = repl;
360 ir_dereference *repl; member in class:ir_variable_replacement_visitor
368 *deref = this->repl->clone(ralloc_parent(*deref), NULL);
426 ir_dereference *repl)
428 ir_variable_replacement_visitor v(orig, repl);
424 do_variable_replacement(exec_list *instructions, ir_variable *orig, ir_dereference *repl) argument
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ssa_builder.cpp221 bool repl = (n.op_ptr()->flags & AF_REPL) || local
224 n.init_args(repl);
H A Dsb_ir.cpp54 void alu_packed_node::init_args(bool repl) { argument
68 if (repl) {
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DMacroExpander.cpp318 Token &repl = replacements->front(); local
321 repl.text = std::to_string(identifier.location.line);
325 repl.text = std::to_string(identifier.location.file);
342 Token &repl = replacements->at(i); local
347 repl.setAtStartOfLine(identifier.atStartOfLine());
348 repl.setHasLeadingSpace(identifier.hasLeadingSpace());
350 repl.location = replacementLocation;
481 const Token &repl = macro.replacements[i]; local
482 if (repl.type != Token::IDENTIFIER)
484 replacements->push_back(repl);
[all...]
/external/v8/testing/gmock/scripts/
H A Dupload.py827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
/external/v8/testing/gtest/scripts/
H A Dupload.py827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetEncoderICU.java683 public boolean isLegalReplacement(byte[] repl) { argument
/external/python/cpython3/Modules/clinic/
H A D_sre.c.h311 "sub($self, /, repl, string, count=0)\n"
314 "Return the string obtained by replacing the leftmost non-overlapping occurrences of pattern in string by the replacement repl.");
320 _sre_SRE_Pattern_sub_impl(PatternObject *self, PyObject *repl,
327 static const char * const _keywords[] = {"repl", "string", "count", NULL};
329 PyObject *repl; local
334 &repl, &string, &count)) {
337 return_value = _sre_SRE_Pattern_sub_impl(self, repl, string, count);
344 "subn($self, /, repl, string, count=0)\n"
347 "Return the tuple (new_string, number_of_subs_made) found by replacing the leftmost non-overlapping occurrences of pattern with the replacement repl.");
353 _sre_SRE_Pattern_subn_impl(PatternObject *self, PyObject *repl,
362 PyObject *repl; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dreapits.c1000 UChar repl[100]; local
1011 u_uastrncpy(repl, "some other", UPRV_LENGTHOF(repl));
1019 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status);
1028 u_uastrncpy(repl, "abc\\u0041\\U00000042 \\\\ \\$ \\abc", UPRV_LENGTHOF(repl));
1029 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status);
1039 uregex_appendReplacement(re, repl, -1, &bufPtr, NULL, &status);
1905 UChar repl[100]; local
1915 u_uastrncpy(repl, "som
[all...]
/external/libnetfilter_conntrack/include/internal/
H A Dobject.h160 struct __nfct_tuple repl; member in struct:nf_conntrack
/external/iptables/libiptc/
H A Dlibiptc.c1118 static inline int iptcc_compile_rule (struct xtc_handle *h, STRUCT_REPLACE *repl, struct rule_head *r) argument
1137 memcpy((char *)repl->entries+r->offset, r->entry, r->size);
1143 static int iptcc_compile_chain(struct xtc_handle *h, STRUCT_REPLACE *repl, struct chain_head *c) argument
1153 head = (void *)repl->entries + c->head_offset;
1161 repl->hook_entry[c->hooknum-1] = c->head_offset;
1162 repl->underflow[c->hooknum-1] = c->foot_offset;
1167 ret = iptcc_compile_rule(h, repl, r);
1173 foot = (void *)repl->entries + c->foot_offset;
1249 static int iptcc_compile_table(struct xtc_handle *h, STRUCT_REPLACE *repl) argument
1256 int ret = iptcc_compile_chain(h, repl,
2480 counters_normal_map(STRUCT_COUNTERS_INFO *newcounters, STRUCT_REPLACE *repl, unsigned int idx, unsigned int mappos) argument
2495 counters_map_zeroed(STRUCT_COUNTERS_INFO *newcounters, STRUCT_REPLACE *repl, unsigned int idx, unsigned int mappos, STRUCT_COUNTERS *counters) argument
2528 STRUCT_REPLACE *repl; local
[all...]
/external/python/cpython3/Modules/
H A D_sre.c1245 repl: object
1249 Return the string obtained by replacing the leftmost non-overlapping occurrences of pattern in string by the replacement repl.
1253 _sre_SRE_Pattern_sub_impl(PatternObject *self, PyObject *repl, argument
1257 return pattern_subx(self, repl, string, count, 0);
1263 repl: object
1267 Return the tuple (new_string, number_of_subs_made) found by replacing the leftmost non-overlapping occurrences of pattern with the replacement repl.
1271 _sre_SRE_Pattern_subn_impl(PatternObject *self, PyObject *repl, argument
1275 return pattern_subx(self, repl, string, count, 1);
/external/selinux/libsemanage/src/
H A Dgenhomedircon.c510 static char *replace_all(const char *str, const replacement_pair_t * repl) argument
515 if (!str || !repl)
519 for (i = 0; retval != NULL && repl[i].search_for; i++) {
520 retval2 = semanage_str_replace(repl[i].search_for,
521 repl[i].replace_with, retval, 0);
575 const replacement_pair_t *repl)
580 line = replace_all(tpl->data, repl);
597 semanage_list_t *tpl, const replacement_pair_t *repl,
607 line = replace_all(tpl->data, repl);
681 replacement_pair_t repl[] local
573 write_replacements(genhomedircon_settings_t * s, FILE * out, const semanage_list_t * tpl, const replacement_pair_t *repl) argument
596 write_contexts(genhomedircon_settings_t *s, FILE *out, semanage_list_t *tpl, const replacement_pair_t *repl, const genhomedircon_user_entry_t *user) argument
701 replacement_pair_t repl[] = { local
713 replacement_pair_t repl[] = { local
726 replacement_pair_t repl[] = { local
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DGVN.cpp1294 // where we have a value available in repl, also keep track of whether we see
2111 Value *repl = findLeader(I->getParent(), Num); local
2112 if (repl == 0) {
2119 I->replaceAllUsesWith(repl);
2120 if (MD && repl->getType()->isPointerTy())
2121 MD->invalidateCachedPointerInfo(repl);

Completed in 5080 milliseconds

12