HomeSort by relevance Sort by last modified time
    Searched full:preg (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/libunwind/src/ia64/
regs.h 34 int preg; local
40 preg = reg;
43 preg = reg + rrb_gr; /* apply rotation */
44 if ((unsigned) (preg - 32) >= sor)
45 preg -= sor; /* wrap around */
48 Debug (15, "sor=%u rrb.gr=%u, r%d -> r%d\n", sor, rrb_gr, reg, preg);
49 return preg;
59 int preg; local
63 preg = reg; /* register not part of the rotating partition */
66 preg = reg + rrb_fr; /* apply rotation *
    [all...]
Gparser.c 700 int preg;
704 case UNW_IA64_AR_BSP: preg = IA64_REG_BSP; break;
705 case UNW_IA64_AR_BSPSTORE: preg = IA64_REG_BSPSTORE; break;
706 case UNW_IA64_AR_FPSR: preg = IA64_REG_FPSR; break;
707 case UNW_IA64_AR_LC: preg = IA64_REG_LC; break;
708 case UNW_IA64_AR_PFS: preg = IA64_REG_PFS; break;
709 case UNW_IA64_AR_RNAT: preg = IA64_REG_RNAT; break;
710 case UNW_IA64_AR_UNAT: preg = IA64_REG_UNAT; break;
711 case UNW_IA64_BR + 0: preg = IA64_REG_IP; break;
712 case UNW_IA64_PR: preg = IA64_REG_PR; break
699 int preg; local
    [all...]
  /external/chromium_org/components/policy/core/common/
preg_parser_win.h 5 // This file provides a parser for PReg files which are used for storing group
30 // The magic header in PReg files: ASCII "PReg" + version (0x0001).
33 // Reads the PReg file at |file_path| and writes the registry data to |dict|.
preg_parser_win.cc 32 // Maximum PReg file size we're willing to accept.
35 // Constants for PReg file delimiters.
43 // Magic strings for the PReg value field to trigger special actions.
64 // Reads a fixed-size field from a PReg file.
114 // Decodes a value from a PReg file given as a uint8 vector.
229 LOG(ERROR) << "PReg file " << file_path.value() << " too large: "
policy_loader_win.h 51 // The PReg file name used by GPO.
69 // Reads Chrome Policy from a PReg file at the given path and stores the
  /external/llvm/lib/Support/
Regex.cpp 24 preg = new llvm_regex();
25 preg->re_endp = regex.end();
32 error = llvm_regcomp(preg, regex.data(), flags|REG_PEND);
36 if (preg) {
37 llvm_regfree(preg);
38 delete preg;
46 size_t len = llvm_regerror(error, preg, nullptr, 0);
49 llvm_regerror(error, preg, &Error[0], len);
56 return preg->re_nsub;
60 unsigned nmatch = Matches ? preg->re_nsub+1 : 0
    [all...]
regfree.c 50 llvm_regfree(llvm_regex_t *preg)
54 if (preg->re_magic != MAGIC1) /* oops */
57 g = preg->re_g;
60 preg->re_magic = 0; /* mark it invalid */
regerror.c 84 llvm_regerror(int errcode, const llvm_regex_t *preg, char *errbuf, size_t errbuf_size)
93 s = regatoi(preg, convbuf, sizeof convbuf);
123 regatoi(const llvm_regex_t *preg, char *localbuf, int localbufsize)
128 if (strcmp(r->name, preg->re_endp) == 0)
regexec.c 141 llvm_regexec(const llvm_regex_t *preg, const char *string, size_t nmatch,
144 struct re_guts *g = preg->re_g;
151 if (preg->re_magic != MAGIC1 || g->magic != MAGIC2)
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.c 31 # define regfree(preg) __regfree (preg)
33 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags)
34 # define regerror(errcode, preg, errbuf, errbuf_size) \
35 __regerror(errcode, preg, errbuf, errbuf_size)
regcomp.c 23 static reg_errcode_t re_compile_internal (regex_t *preg, const char * pattern,
32 static void free_workarea_compile (regex_t *preg);
37 static reg_errcode_t analyze (regex_t *preg);
46 static bin_tree_t *lower_subexp (reg_errcode_t *err, regex_t *preg,
62 static bin_tree_t *parse (re_string_t *regexp, regex_t *preg,
64 static bin_tree_t *parse_reg_exp (re_string_t *regexp, regex_t *preg,
67 static bin_tree_t *parse_branch (re_string_t *regexp, regex_t *preg,
70 static bin_tree_t *parse_expression (re_string_t *regexp, regex_t *preg,
73 static bin_tree_t *parse_sub_exp (re_string_t *regexp, regex_t *preg,
445 PREG is a regex_t *. We do not expect any fields to be initialized
1301 regex_t *preg = (regex_t *) extra; local
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regfree.c 51 regfree(regex_t *preg)
55 if (preg->re_magic != MAGIC1) /* oops */
58 g = preg->re_g;
61 preg->re_magic = 0; /* mark it invalid */
regerror.c 79 regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size)
88 s = regatoi(preg, convbuf, sizeof convbuf);
118 regatoi(const regex_t *preg, char *localbuf, int localbufsize)
123 if (strcmp(r->name, preg->re_endp) == 0)
  /external/pcre/dist/
pcreposix.c 210 regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size)
220 addlength = (preg != NULL && (int)preg->re_erroffset != -1)?
226 sprintf(errbuf, "%s%s%-6d", message, addmessage, (int)preg->re_erroffset);
245 regfree(regex_t *preg)
247 (PUBL(free))(preg->re_pcre);
259 preg points to a structure for recording the compiled expression
268 regcomp(regex_t *preg, const char *pattern, int cflags)
284 preg->re_pcre = pcre_compile2(pattern, options, &errorcode, &errorptr,
286 preg->re_erroffset = erroffset
    [all...]
  /external/pcre/dist/doc/
pcreposix.3 
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regfree.c 104 regex_t *preg)
108 _DIAGASSERT(preg != NULL);
110 _DIAGASSERT(preg->re_magic == MAGIC1);
111 if (preg->re_magic != MAGIC1) /* oops */
114 g = preg->re_g;
117 preg->re_magic = 0; /* mark it invalid */
regerror.c 106 static const char *regatoi(const regex_t *preg, char *localbuf, size_t buflen);
164 const regex_t *preg,
174 _DIAGASSERT(errcode != REG_ATOI || preg != NULL);
178 s = regatoi(preg, convbuf, sizeof convbuf);
204 * static const char *regatoi(const regex_t *preg, char *localbuf,
209 const regex_t *preg,
216 if (strcmp(r->name, preg->re_endp) == 0)
  /external/llvm/include/llvm/Support/
Regex.h 51 std::swap(preg, regex.preg);
56 preg = regex.preg;
58 regex.preg = nullptr;
101 struct llvm_regex *preg; member in class:llvm::Regex
  /external/ltrace/
glob.c 180 globcomp(regex_t *preg, const char *glob, int cflags)
187 status = regcomp(preg, regex, cflags);
220 regex_t preg; local
221 int status = globcomp(&preg, glob, 0);
223 status = regexec(&preg, str, 0, NULL, 0);
225 regfree(&preg);
glob.h 30 int globcomp(regex_t *preg, const char *glob, int cflags);
  /external/pcre/dist/doc/html/
pcreposix.html 31 <b>int regcomp(regex_t *<i>preg</i>, const char *<i>pattern</i>,</b>
35 <b>int regexec(regex_t *<i>preg</i>, const char *<i>string</i>,</b>
37 <b> size_t regerror(int <i>errcode</i>, const regex_t *<i>preg</i>,</b>
41 <b>void regfree(regex_t *<i>preg</i>);</b>
93 is passed in the argument <i>pattern</i>. The <i>preg</i> argument is a pointer
157 <i>preg</i> structure is filled in on success, and one member of the structure
163 use the contents of the <i>preg</i> structure. If, for example, you pass it to
202 The function <b>regexec()</b> is called to match a compiled pattern <i>preg</i>
261 <b>regcomp()</b> or <b>regexec()</b> to a printable message. If <i>preg</i> is not
270 with the <i>preg</i> structure. The function <b>regfree()</b> frees all suc
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/
Xregion.h 165 #define EMPTY_REGION(pReg) pReg->numRects = 0
167 #define REGION_NOT_EMPTY(pReg) pReg->numRects
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xregion.h 165 #define EMPTY_REGION(pReg) pReg->numRects = 0
167 #define REGION_NOT_EMPTY(pReg) pReg->numRects
  /external/llvm/lib/CodeGen/
RegAllocPBQP.cpp 178 assert(isPRegOption(vreg, option) && "Not a preg option.");
197 // Collect the set of preg intervals, record that they're used in the MF.
221 unsigned preg = rawOrder[i]; local
222 if (mri->isReserved(preg))
225 // vregLI crosses a regmask operand that clobbers preg.
226 if (!regMaskOverlaps.empty() && !regMaskOverlaps.test(preg))
231 for (MCRegUnitIterator Units(preg, tri); Units.isValid(); ++Units) {
240 // preg is usable for this virtual register.
241 vrAllowed.push_back(preg);
476 unsigned preg = problem.getPRegForOption(vreg, alloc) local
    [all...]
  /external/llvm/lib/Target/R600/
R600ExpandSpecialInstrs.cpp 121 unsigned PReg = AMDGPU::R600_ArrayBaseRegClass.getRegister(
133 DstReg, MI.getOperand(3 + (Chan % 2)).getReg(), PReg);
150 unsigned PReg = AMDGPU::R600_ArrayBaseRegClass.getRegister(
162 DstReg, MI.getOperand(3 + (Chan % 2)).getReg(), PReg);
180 unsigned PReg = AMDGPU::R600_ArrayBaseRegClass.getRegister(
186 TRI.getSubReg(DstReg, TRI.getSubRegFromChannel(Chan)), PReg);

Completed in 554 milliseconds

1 2 3 4