HomeSort by relevance Sort by last modified time
    Searched defs:cur (Results 26 - 50 of 729) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/lzma/CPP/7zip/Common/
InOutTempBuffer.cpp 63 UInt32 cur = MyMin(kTempBufSize - _bufPos, size); local
64 memcpy(_buf + _bufPos, data, cur);
65 _crc = CrcUpdate(_crc, data, cur);
66 _bufPos += cur;
67 size -= cur;
68 data = ((const Byte *)data) + cur;
69 _size += cur;
  /external/pdfium/third_party/freetype/src/base/
ftinit.c 201 const FT_Module_Class* const* cur; local
213 cur = (const FT_Module_Class* const*)FT_DEFAULT_MODULES_GET;
216 while ( *cur )
218 error = FT_Add_Module( library, *cur );
223 (*cur)->module_name, error ));
224 cur++;
  /external/strace/
io.c 68 unsigned long size, cur, end, abbrev_end; local
90 for (cur = addr; cur < end; cur += sizeof_iov) {
91 if (cur > addr)
93 if (cur >= abbrev_end) {
97 if (umove_ulong_array_or_printaddr(tcp, cur, iov,
poll.c 54 unsigned long cur, abbrev_end; local
79 for (cur = start + sizeof(fds); cur < end; cur += sizeof(fds)) {
81 if (cur >= abbrev_end) {
85 if (umove(tcp, cur, &fds) < 0) {
105 unsigned long cur, abbrev_end; local
131 for (cur = start; cur < end; cur += sizeof(fds))
    [all...]
  /frameworks/base/core/java/android/os/
PooledStringWriter.java 59 final Integer cur = mPool.get(str); local
60 if (cur != null) {
61 mOut.writeInt(cur);
  /frameworks/compile/mclinker/lib/Script/
GroupCmd.cpp 48 bool prev = false, cur = false; local
55 cur = input->asNeeded();
56 if (!prev && cur)
58 else if (prev && !cur)
65 prev = cur;
InputCmd.cpp 59 bool prev = false, cur = false; local
66 cur = input->asNeeded();
67 if (!prev && cur)
69 else if (prev && !cur)
76 prev = cur;
  /libcore/ojluni/src/main/native/
FileInputStream.c 72 jlong cur = jlong_zero; local
79 if ((cur = IO_Lseek(fd, (jlong)0, (jint)SEEK_CUR)) == -1) {
88 return (end - cur);
  /bionic/libc/upstream-netbsd/lib/libc/gen/
popen.c 83 struct pid *cur, *old; local
107 if ((cur = malloc(sizeof(struct pid))) == NULL) {
121 free(cur);
164 cur->fd = pdes[0];
170 cur->fd = pdes[1];
176 cur->fp = iop;
177 cur->pid = pid;
178 cur->next = pidlist;
179 pidlist = cur;
193 struct pid *cur, *last local
    [all...]
  /device/google/contexthub/firmware/inc/
isr.h 59 struct link_t *cur, *tmp; local
63 list_iterate(&interrupt->isrs, cur, tmp) {
64 struct ChainedIsr *curIsr = container_of(cur, struct ChainedIsr, node);
78 struct link_t *cur, *tmp; local
80 list_iterate(&interrupt->isrs, cur, tmp) {
81 struct ChainedIsr *curIsr = container_of(cur, struct ChainedIsr, node);
  /external/bison/lib/
mbuiter.h 119 struct mbchar cur; /* the current character: member in struct:mbuiter_multi
120 const char *cur.ptr pointer to current character
122 size_t cur.bytes number of bytes of current character
123 bool cur.wc_valid true if wc is a valid wide character
124 wchar_t cur.wc if wc_valid: the current character
136 if (is_basic (*iter->cur.ptr))
141 iter->cur.bytes = 1;
142 iter->cur.wc = *iter->cur.ptr;
143 iter->cur.wc_valid = true
    [all...]
  /external/blktrace/btt/
mmap.c 37 static off_t cur_min, cur, cur_max, total_size; variable
86 cur_min = (cur & ~(pgsz-1));
99 return (cur < cur_max);
134 if ((cur + 512) > cur_max)
140 next_t = cur_map + (cur - cur_min);
142 cur += this_len;
149 return 100.0 * ((double)cur / (double)total_size);
  /external/clang/test/Analysis/engine/
replay-without-inlining.c 16 int cur; member in struct:__anon7789
23 if (input->cur + 1 > input->end)
25 return input->ib[(input->cur)++];
46 while (st->cur < st->end && i < 4) {
54 st.cur = 0;
  /external/compiler-rt/test/dfsan/
write_callback.c 37 char *cur = string; local
40 int res = write(fileno(stdout), cur, bytes_left);
42 cur += res;
  /external/dexmaker/src/dx/java/com/android/dx/util/
Leb128Utils.java 84 int cur; local
89 cur = in.readByte() & 0xff;
90 result |= (cur & 0x7f) << (count * 7);
93 } while (((cur & 0x80) == 0x80) && count < 5);
95 if ((cur & 0x80) == 0x80) {
112 int cur; local
116 cur = in.readByte() & 0xff;
117 result |= (cur & 0x7f) << (count * 7);
119 } while (((cur & 0x80) == 0x80) && count < 5);
121 if ((cur & 0x80) == 0x80)
    [all...]
  /external/libdrm/freedreno/
freedreno_ringbuffer.h 45 uint32_t *cur, *end, *start, *last_start; member in struct:fd_ringbuffer
64 (*ring->cur++) = data;
  /external/libselinux/src/
avc_sidtab.c 82 struct sidtab_node *cur; local
88 cur = s->htable[hvalue];
89 while (cur != NULL && strcmp(cur->sid_s.ctx, ctx))
90 cur = cur->next;
92 if (cur == NULL) { /* need to make a new entry */
99 *sid = &cur->sid_s;
107 struct sidtab_node *cur; local
112 cur = h->htable[i]
135 struct sidtab_node *cur, *temp; local
    [all...]
  /external/libxml2/
testAutomata.c 18 char *cur; local
20 cur = *ptr;
21 while ((*cur >= '0') && (*cur <= '9')) {
22 ret = ret * 10 + (*cur - '0');
23 cur++;
25 *ptr = cur;
224 xmlAutomataStatePtr start, cur; local
232 cur = xmlAutomataNewTransition(am, start, NULL, BAD_CAST"a", NULL);
233 xmlAutomataNewTransition(am, cur, cur, BAD_CAST"b", NULL)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_cfg.h 91 fs_bblock *cur; member in class:fs_cfg
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
CallbackInfo.java 76 Class cur = null; local
80 if (cur != null) {
81 throw new IllegalStateException("Callback implements both " + cur + " and " + info.cls);
83 cur = info.cls;
86 if (cur == null) {
89 return Type.getType(cur);
  /external/opencv/cvaux/src/
extendededges.cpp 143 CvPoint cur; local
145 CV_READ_SEQ_ELEM( cur, reader );
148 ((uchar*)image->imageData)[image->widthStep * cur.y + cur.x]++;
149 assert( ((uchar*)image->imageData)[image->widthStep * cur.y + cur.x] != 255 );
156 CvPoint cur; local
158 CV_READ_SEQ_ELEM( cur, reader );
161 uchar flag = image->imageData[image->widthStep * cur.y + cur.x]
    [all...]
  /external/pdfium/third_party/freetype/src/cid/
cidparse.c 58 FT_Byte *cur, *limit; local
166 cur = parser->root.cursor;
168 while ( cur < limit )
176 if ( cur[0] == 'S' && ft_strncmp( (char*)cur, "StartData", 9 ) == 0 )
194 else if ( cur[1] == 's' && ft_strncmp( (char*)cur, "/sfnts", 6 ) == 0 )
204 arg2 = cur;
205 cur = parser->root.cursor;
  /external/pdfium/third_party/freetype/src/type1/
t1parse.c 335 FT_Byte* cur = parser->base_dict; local
336 FT_Byte* limit = cur + parser->base_len;
344 if ( cur[0] == 'e' &&
345 cur + 9 < limit ) /* 9 = 5 letters for `eexec' + */
348 if ( cur[1] == 'e' &&
349 cur[2] == 'x' &&
350 cur[3] == 'e' &&
351 cur[4] == 'c' )
354 cur++;
355 if ( cur >= limit
    [all...]
  /external/selinux/libselinux/src/
avc_sidtab.c 82 struct sidtab_node *cur; local
88 cur = s->htable[hvalue];
89 while (cur != NULL && strcmp(cur->sid_s.ctx, ctx))
90 cur = cur->next;
92 if (cur == NULL) { /* need to make a new entry */
99 *sid = &cur->sid_s;
107 struct sidtab_node *cur; local
112 cur = h->htable[i]
135 struct sidtab_node *cur, *temp; local
    [all...]
  /external/tcpdump/missing/
inet_ntop.c 113 } best, cur; local
127 cur.len = 0;
128 cur.base = -1;
133 if (cur.base == -1)
134 cur.base = i, cur.len = 1;
135 else cur.len++;
137 else if (cur.base != -1)
139 if (best.base == -1 || cur.len > best.len)
140 best = cur;
    [all...]

Completed in 880 milliseconds

12 3 4 5 6 7 8 91011>>