HomeSort by relevance Sort by last modified time
    Searched defs:cur (Results 251 - 275 of 431) sorted by null

<<1112131415161718

  /external/iptables/libxtables/
xtoptions.c 1112 char *cur, *nxt; local
1120 cur = buf;
1121 while (isspace(*cur))
1122 ++cur;
1123 if (*cur == '#' || *cur == '\n' || *cur == '\0')
1128 id = strtoul(cur, &nxt, strncmp(cur, "0x", 2) == 0 ? 16 : 10);
1129 if (nxt == cur || errno != 0
    [all...]
  /external/jpeg/
jquant1.c 159 int row_index; /* cur row's vertical index in dither matrix */
615 register LOCFSERROR cur; /* current error or pixel value */ local
616 LOCFSERROR belowerr; /* error for pixel below cur */
659 cur = 0;
664 /* cur holds the error propagated from the previous pixel on the
672 cur = RIGHT_SHIFT(cur + errorptr[dir] + 8, 4);
677 cur += GETJSAMPLE(*input_ptr);
678 cur = GETJSAMPLE(range_limit[cur]);
    [all...]
  /external/libedit/src/
history.c 133 int cur; /* Current number of events */ member in struct:history_t
158 #define history_def_getsize(p) (((history_t *)p)->cur)
284 (h->cur > 0) ? _HE_END_REACHED : _HE_EMPTY_LIST);
312 (h->cur > 0) ? _HE_CURR_INVALID : _HE_EMPTY_LIST);
329 if (h->cur == 0) {
356 if (h->cur == 0) {
457 h->cur--;
482 h->cur++;
512 while (h->cur > h->max && h->cur > 0
    [all...]
  /external/libpcap/Win32/Src/
getaddrinfo.c 307 struct addrinfo *cur; local
328 cur = &sentinel;
427 error = explore_null(pai, hostname, servname, &cur->ai_next);
429 error = explore_numeric_scope(pai, hostname, servname, &cur->ai_next);
434 while (cur && cur->ai_next)
435 cur = cur->ai_next;
487 &cur->ai_next);
489 while (cur && cur->ai_next
531 struct addrinfo sentinel, *cur; local
702 struct addrinfo *cur; local
764 struct addrinfo *cur; local
926 struct addrinfo *cur = NULL; local
    [all...]
  /external/libselinux/src/
avc.c 252 struct avc_node *prev, *cur; local
260 cur = avc_cache.slots[hvalue];
261 while (cur) {
262 if (!cur->ae.used)
265 cur->ae.used = 0;
267 prev = cur;
268 cur = cur->next;
281 avc_cache.slots[hvalue] = cur->next;
283 prev->next = cur->next
331 struct avc_node *cur; local
    [all...]
  /external/libxml2/
SAX2.c 460 enc = xmlDetectCharEncoding(ctxt->input->cur, 4);
468 input->base = ctxt->input->cur;
469 input->cur = ctxt->input->cur;
1789 xmlNodePtr cur; local
1862 xmlChar cur = str[len]; local
2443 xmlNodePtr cur; local
    [all...]
uri.c 209 const char *cur; local
214 cur = *str;
215 if (!ISA_ALPHA(cur))
217 cur++;
218 while (ISA_ALPHA(cur) || ISA_DIGIT(cur) ||
219 (*cur == '+') || (*cur == '-') || (*cur == '.')) cur++
246 const char *cur; local
283 const char *cur; local
327 const char *cur = *str; local
358 const char *cur; local
394 const char *cur = *str; local
433 const char *cur = *str; local
509 const char *cur; local
551 const char *cur; local
580 const char *cur; local
620 const char *cur; local
666 const char *cur; local
708 const char *cur; local
753 const char *cur; local
1410 char *cur, *out; local
1881 int ret, len, indx, cur, out; local
    [all...]
xmlmemory.c 601 void *cur; local
604 cur = *((void **) &buf[j]);
605 q = CLIENT_2_HDR(cur);
  /external/lzma/C/
LzFindMt.c 234 Int32 NO_INLINE GetMatchesSpecN(UInt32 lenLimit, UInt32 pos, const Byte *cur, CLzRef *son,
258 const Byte *pb = cur - delta;
260 if (pb[len] == cur[len])
262 if (++len != lenLimit && pb[len] == cur[len])
264 if (pb[len] != cur[len])
278 if (pb[len] < cur[len])
296 cur++;
561 const Byte *cur = p->pointerToCurPos; local
569 if (cur[(ptrdiff_t)curMatch2 - lzPos] == cur[0])
581 const Byte *cur = p->pointerToCurPos; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_text.c 42 static boolean is_alpha_underscore( const char *cur )
45 (*cur >= 'a' && *cur <= 'z') ||
46 (*cur >= 'A' && *cur <= 'Z') ||
47 *cur == '_';
50 static boolean is_digit( const char *cur )
52 return *cur >= '0' && *cur <= '9';
55 static boolean is_digit_alpha_underscore( const char *cur )
91 const char *cur = *pcur; local
112 const char *cur = *pcur; local
135 const char *cur = *pcur; local
146 const char *cur = *pcur; local
160 const char *cur = *pcur; local
177 const char *cur = *pcur; local
194 const char *cur = *pcur; local
238 const char *cur; member in struct:translate_ctx
303 const char *cur = ctx->cur; local
322 const char *cur = *pcur; local
338 const char *cur; local
451 const char *cur; local
519 const char *cur = ctx->cur; local
625 const char *cur; local
684 const char *cur; local
727 const char *cur = ctx->cur; local
834 const char *cur = *pcur; local
870 const char *cur; local
1072 const char *cur, *cur2; local
1375 const char *cur = *pcur; local
1392 const char *cur = *pcur; local
1409 const char *cur = *pcur; local
    [all...]
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 226 Integer cur = (Integer) currentLexer.get(nexttok.toUpperCase()); local
228 if (cur == null || cur.intValue() != tok)
  /external/opencv/cv/src/
cvconvhull.cpp 687 CvPoint* cur = (CvPoint*)ptseq_reader.ptr; local
690 double dx = (double)cur->x - (double)hull_cur->x;
691 double dy = (double)cur->y - (double)hull_cur->y;
699 defect.depth_point = cur;
  /external/opencv/ml/src/
mlem.cpp 248 double cur = log_weight_div_det->data.db[k]; local
257 cur += val*val*w0;
269 cur += val*val*w[i];
273 expo.data.db[k] = cur;
274 if( cur < opt )
277 opt = cur;
279 /* probability = (2*pi)^(-dims/2)*exp( -0.5 * cur ) */
    [all...]
  /external/oprofile/gui/
oprof_start.cpp 489 QListViewItem * cur; local
490 for (cur = events_list->firstChild(); cur; cur = cur->nextSibling()) {
491 if (is_selectable_event(cur))
492 cur->setPixmap(0, *green_pixmap);
494 cur->setPixmap(0, *red_pixmap);
524 QListViewItem * cur; local
525 for (cur = events_list->firstChild(); cur; cur = cur->nextSibling())
847 QListViewItem * cur; local
949 QListViewItem * cur; local
    [all...]
  /external/oprofile/libop/
op_events.c 637 u32 cur; local
638 for (cur = 0 ; cur < unit->num ; ++cur) {
639 if (unit->um[cur].desc)
640 free(unit->um[cur].desc);
  /external/oprofile/opjitconv/
debug_line.c 169 ubyte cur = data & 0x7F; local
172 cur |= 0x80;
173 add_data(b, &cur, 1);
184 ubyte cur = data & 0x7F; local
188 if ((data == 0 && !(cur & 0x40)) ||
189 (data == -1l && (cur & 0x40)))
192 cur |= 0x80;
193 add_data(b, &cur, 1);
  /bionic/libc/upstream-netbsd/lib/libc/isc/
eventlib_p.h 217 const evEvent_p *cur; member in struct:__anon1039
  /external/bluetooth/bluedroid/bta/hf_client/
bta_hf_client_at.c 95 tBTA_HF_CLIENT_AT_QCMD *cur = bta_hf_client_cb.scb.at_cb.queued_cmd; local
98 while (cur != NULL) {
99 next = cur->next;
100 GKI_freebuf(cur);
101 cur = next;
194 tBTA_HF_CLIENT_AT_QCMD *cur = bta_hf_client_cb.scb.at_cb.queued_cmd; local
199 if (cur != NULL)
201 next = cur->next;
203 bta_hf_client_send_at(cur->cmd, cur->buf, cur->buf_len)
    [all...]
  /external/chromium_org/media/formats/webm/
webm_parser.cc 712 const uint8* cur = buf; local
719 int result = WebMParseElementHeader(cur, cur_size, &element_id,
752 const uint8* element_data = cur + header_size;
779 cur += result;
  /external/chromium_org/third_party/freetype/src/cff/
cffgload.c 3015 FT_Outline* cur = &glyph->root.outline; local
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
backward_references.c 690 uint32_t* cur = dist_array + dist_array_size - 1; local
691 while (cur >= dist_array) {
692 const int k = *cur;
695 cur -= k;
    [all...]
  /external/chromium_org/third_party/libxml/src/
c14n.c 75 static void xmlC14NVisibleNsStackDestroy (xmlC14NVisibleNsStackPtr cur);
76 static void xmlC14NVisibleNsStackAdd (xmlC14NVisibleNsStackPtr cur,
79 static void xmlC14NVisibleNsStackSave (xmlC14NVisibleNsStackPtr cur,
81 static void xmlC14NVisibleNsStackRestore (xmlC14NVisibleNsStackPtr cur,
83 static void xmlC14NVisibleNsStackShift (xmlC14NVisibleNsStackPtr cur);
84 static int xmlC14NVisibleNsStackFind (xmlC14NVisibleNsStackPtr cur,
86 static int xmlExcC14NVisibleNsStackFind (xmlC14NVisibleNsStackPtr cur,
96 static int xmlC14NProcessNode(xmlC14NCtxPtr ctx, xmlNodePtr cur);
97 static int xmlC14NProcessNodeList(xmlC14NCtxPtr ctx, xmlNodePtr cur);
293 xmlC14NVisibleNsStackDestroy(xmlC14NVisibleNsStackPtr cur) {
1001 xmlNodePtr cur; local
2147 const xmlChar *cur = input; local
    [all...]
debugXML.c 95 xmlNsPtr cur; local
115 cur = node->nsDef;
116 while (cur != NULL) {
117 if (cur == ns)
119 if (xmlStrEqual(cur->prefix, ns->prefix))
121 cur = cur->next;
539 xmlEnumerationPtr cur = attr->tree; local
543 fprintf(ctxt->output, "|%s", (char *) cur->name);
545 fprintf(ctxt->output, " (%s", (char *) cur->name)
2003 xmlNodePtr cur; local
2804 char *cmdline = NULL, *cur; local
    [all...]
encoding.c 2302 int cur; local
2439 const unsigned char *cur = (const unsigned char *)in->cur; local
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
xpath.h 183 * @cur: the previous node being explored on that axis
186 * the first time with cur == NULL and repeat until the function returns
193 xmlXPathObjectPtr cur);
369 const xmlChar *cur; /* the current char being parsed */ member in struct:_xmlXPathParserContext

Completed in 643 milliseconds

<<1112131415161718