HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 1051 - 1075 of 1449) sorted by null

<<41424344454647484950>>

  /external/libxml2/
encoding.c 172 const unsigned char* base = in; local
188 *inlen = processed - base;
195 *inlen = processed - base;
303 const unsigned char* base = in; local
330 *inlen = in - base;
    [all...]
nanoftp.c 1724 int indx = 0, base; local
    [all...]
pattern.c 177 const xmlChar *base; /* the full expression */ member in struct:_xmlPatParserContext
305 cur->base = pattern;
1030 "Unexpected attribute axis in '%s'.\n", ctxt->base);
1183 "Unexpected attribute axis in '%s'.\n", ctxt->base);
1249 "Incomplete expression '%s'.\n", ctxt->base);
1272 "Incomplete expression '%s'.\n", ctxt->base);
1296 "Incomplete expression '%s'.\n", ctxt->base);
1308 "Failed to compile pattern %s\n", ctxt->base);
1330 ctxt->base);
    [all...]
xinclude.c 84 xmlChar * base; /* the current xml:base */ member in struct:_xmlXIncludeCtxt
405 if (ctxt->base != NULL) {
406 xmlFree(ctxt->base);
494 xmlChar *base; local
539 base = xmlNodeGetBase(ctxt->doc, cur);
540 if (base == NULL) {
543 URI = xmlBuildURI(href, base);
551 escbase = xmlURIEscape(base);
563 if (base != NULL
1691 xmlChar *base; local
2001 xmlChar *base; local
    [all...]
xmlsave.c 207 const unsigned char* base = in; local
307 *inlen = in - base;
311 *inlen = in - base;
1952 xmlChar *base, *cur; local
    [all...]
  /external/libxml2/include/libxml/
xpath.h 371 const xmlChar *base; /* the full expression */ member in struct:_xmlXPathParserContext
  /external/libxslt/libxslt/
pattern.c 122 const xmlChar *base; /* the full expression */ member in struct:_xsltParserContext
    [all...]
xsltutils.c 1442 int base; local
    [all...]
  /external/mdnsresponder/mDNSShared/
DebugServices.c 1271 unsigned_long_long_compat base; local
    [all...]
  /external/mksh/src/
eval.c 193 short base; /* begin position of expanded word */ member in struct:SubType
369 st->base = Xsavepos(ds, dp);
650 dp = Xrestpos(ds, dp, st->base);
673 dp = Xrestpos(ds, dp, st->base);
699 char *s = Xrestpos(ds, dp, st->base);
709 dp = Xrestpos(ds, dp, st->base);
    [all...]
histrap.c 701 unsigned char *base; local
744 base = (void *)mmap(NULL, hsize, PROT_READ,
749 if (base == (unsigned char *)MAP_FAILED ||
750 *base != HMAGIC1 || base[1] != HMAGIC2) {
751 if (base != (unsigned char *)MAP_FAILED)
752 munmap((caddr_t)base, hsize);
759 lines = hist_count_lines(base+2, hsize-2);
762 if (hist_shrink(base, hsize))
764 munmap((caddr_t)base, hsize)
982 unsigned char *base, *news, hdr[5]; local
    [all...]
lex.c 62 struct lex_state *base; member in union:lex_state::__anon9736
81 #define ls_base u.base
87 Lex_state *base; member in struct:__anon9738
162 if (--statep == state_info.base) \
197 Lex_state states[STATE_BSIZE], *statep, *s2, *base; local
209 state_info.base = states;
210 state_info.end = &state_info.base[STATE_BSIZE];
538 base = state_info.base;
540 for (; s2 != base; s2--)
    [all...]
var.c 36 * if (flag&INTEGER), val.i contains integer value, and type contains base.
349 int base; local
351 * worst case number length is when base == 2:
352 * 1 (minus) + 2 (base, up to 36) + 1 ('#') +
364 base = (vp->type == 0) ? 10 : vp->type;
366 if (base == 1 && n == 0)
367 base = 2;
368 if (base == 1) {
382 *--s = digits[n % base];
383 n /= base;
473 int c, base, neg; local
554 int base; local
    [all...]
  /external/openfst/src/include/fst/
fst.h 19 // Finite-State Transducer (FST) - abstract base class definition,
20 // state and arc iterator interface, and suggested base implementation.
307 // This allows base class virtual access to non-virtual derived-
320 StateIteratorBase<A> *base; // Specialized iterator if non-zero member in struct:fst::StateIteratorData
345 ~StateIterator() { if (data_.base) delete data_.base; }
348 return data_.base ? data_.base->Done() : s_ >= data_.nstates;
351 StateId Value() const { return data_.base ? data_.base->Value() : s_;
428 ArcIteratorBase<A> *base; \/\/ Specialized iterator if non-zero member in struct:fst::ArcIteratorData
    [all...]
  /external/ppp/pppd/
options.c 1569 const char *base = _PATH_PLUGIN; local
    [all...]
  /external/qemu/target-arm/
helper.c 1230 uint32_t base; local
    [all...]
  /external/qemu/telephony/
sms.c 695 bytes_t base; member in struct:SmsPDURec
704 free( pdu->base );
705 pdu->base = NULL;
1219 p->base = gsm_rope_done_acquire( rope, &size );
1220 if (p->base == NULL)
1223 p->end = p->base + size;
1224 p->tpdu = p->base + 1;
    [all...]
  /external/quake/quake/src/QW/client/
gl_rsurf.c 229 Returns the proper texture for a given time and base texture
232 texture_t *R_TextureAnimation (texture_t *base)
239 if (base->alternate_anims)
240 base = base->alternate_anims;
243 if (!base->anim_total)
244 return base;
246 reletive = (int)(cl.time*10) % base->anim_total;
249 while (base->anim_min > reletive || base->anim_max <= reletive
787 byte *base; local
866 byte *base; local
1601 byte *base; local
    [all...]
  /external/quake/quake/src/WinQuake/
gl_rsurf.cpp 230 Returns the proper texture for a given time and base texture
233 texture_t *R_TextureAnimation (texture_t *base)
240 if (base->alternate_anims)
241 base = base->alternate_anims;
244 if (!base->anim_total)
245 return base;
247 reletive = (int)(cl.time*10) % base->anim_total;
250 while (base->anim_min > reletive || base->anim_max <= reletive
857 byte *base; local
935 byte *base; local
1676 byte *base; local
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 582 char* base = (char*)this->getPixels(); local
583 if (base) {
584 base += y * this->rowBytes();
587 base += x << 2;
591 base += x << 1;
595 base += x;
598 base += x >> 3;
602 base = NULL;
606 base = NULL;
610 return base;
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 379 uint8_t* base = (uint8_t*)storage.get(); local
383 uint8_t* row = base;
391 base += sampler.srcY0() * rb;
393 reallyHasAlpha |= sampler.next(base);
394 base += sampler.srcDY() * rb;
753 uint8_t* base = (uint8_t*)storage.get(); local
762 uint8_t* row = base;
770 base += sampler.srcY0() * rb;
772 reallyHasAlpha |= sampler.next(base);
773 base += sampler.srcDY() * rb
    [all...]
  /external/strace/
util.c 655 struct { u_int32_t base; u_int32_t len; } *iov32; member in struct:__anon12877::__anon12878
656 struct { u_int64_t base; u_int64_t len; } *iov64; member in struct:__anon12877::__anon12879
664 ? (u_int64_t) iovu.iov32[i].base : iovu.iov64[i].base)
    [all...]
  /external/tcpdump/
print-isakmp.c 135 "none", "base", "ident", "auth", "agg", "inf", NULL, NULL,
1284 struct isakmp base; local
    [all...]
  /external/v8/src/
frames.cc 575 Address base = fp() + offset; local
577 ASSERT(base >= limit); // stack grows downwards
579 return static_cast<int>((base - limit) / kPointerSize);
1221 Object** base = &Memory::Object_at(sp()); local
    [all...]
  /external/v8/src/ia32/
disasm-ia32.cc 342 static void get_sib(byte data, int* scale, int* index, int* base) {
345 *base = data & 7;
403 int scale, index, base; local
404 get_sib(sib, &scale, &index, &base);
405 if (index == esp && base == esp && scale == 0 /*times_1*/) {
408 } else if (base == ebp) {
415 } else if (index != esp && base != ebp) {
416 // [base+index*scale]
418 (this->*register_name)(base),
435 int scale, index, base; local
    [all...]

Completed in 1696 milliseconds

<<41424344454647484950>>