Searched refs:cur (Results 251 - 275 of 746) sorted by relevance

<<11121314151617181920>>

/external/perfetto/src/tracing/core/
H A Dtrace_buffer.h363 ChunkMap::iterator cur; member in struct:perfetto::TraceBuffer::SequenceIterator
368 bool is_valid() const { return cur != seq_end; }
372 return cur->first.producer_id;
377 return cur->first.writer_id;
382 return cur->first.chunk_id;
387 return cur->second;
390 // Moves |cur| to the next chunk in the index.
395 void MoveToEnd() { cur = seq_end; }
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/
H A Dgtest-printers.cc265 const char cur = begin[index]; local
266 if (is_previous_hex && IsXDigit(cur)) {
272 is_previous_hex = PrintAsNarrowStringLiteralTo(cur, os) == kHexEscape;
290 const wchar_t cur = begin[index]; local
291 if (is_previous_hex && isascii(cur) && IsXDigit(static_cast<char>(cur))) {
297 is_previous_hex = PrintAsWideStringLiteralTo(cur, os) == kHexEscape;
/external/tensorflow/tensorflow/core/lib/random/
H A Drandom_distributions_test.cc321 int cur = 0; local
322 for (; cur < skip_after; cur++) {
328 for (; cur < skip_after + skip; cur++) {
336 for (; cur < total_samples; cur++) {
/external/capstone/suite/arm/
H A Dtest_arm_regression.c47 static void snprint_insn_detail(char * buf, size_t * cur, size_t * left, cs_insn *ins) argument
54 used = snprintf(buf + *cur, *left, __VA_ARGS__); \
56 *cur += used; \
137 size_t cur=0, left=2048; local
138 snprint_insn_detail(a_buf, &cur, &left, ins);
315 used = snprintf(tmp_buf + cur, left, __VA_ARGS__); \
317 cur += used; \
325 size_t cur = 0; local
356 snprint_insn_detail(tmp_buf, &cur, &left, &insn[k]);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zExtract.cpp154 UInt32 cur = (size < _rem ? size : (UInt32)_rem); local
157 result = _stream->Write(data, cur, &cur);
159 _crc = CrcUpdate(_crc, data, cur);
161 *processedSize += cur;
162 data = (const Byte *)data + cur;
163 size -= cur;
164 _rem -= cur;
171 if (cur == 0)
/external/chromium-trace/catapult/devil/devil/utils/
H A Dlsusb.py114 cur = depth_stack[-1]
119 cur[m.group(1)] = new_group
129 cur[m.group(1)] = new_entry
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_thread.cc372 Shadow cur(fast_state);
373 cur.SetWrite(is_write);
374 cur.SetAddr0AndSizeLog(addr & (kShadowCell - 1), kAccessSizeLog);
376 shadow_mem, cur);
383 Shadow cur(fast_state);
384 cur.SetWrite(is_write);
385 cur.SetAddr0AndSizeLog(0, kAccessSizeLog);
387 shadow_mem, cur);
393 Shadow cur(fast_state);
394 cur
[all...]
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dlsusb.py58 cur = depth_stack[-1]
63 cur[m.group(1)] = new_group
73 cur[m.group(1)] = new_entry
/external/libxml2/include/libxml/
H A Dxpointer.h81 xmlXPtrLocationSetAdd (xmlLocationSetPtr cur,
86 xmlXPtrLocationSetDel (xmlLocationSetPtr cur,
89 xmlXPtrLocationSetRemove (xmlLocationSetPtr cur,
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
H A Ds-c.c694 mes_t *cur; local
729 cur = measures;
739 while (cur->next != NULL) {
740 cur = cur->next;
744 Xavg += (double)cur->nthreads;
745 LnXavg += log((double)cur->nthreads);
748 Yavg[i] += (double)cur->_data[i];
749 LnYavg[i] += log((double)cur->_data[i]);
774 cur
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.cc84 Suppression &cur = suppressions_[i]; local
85 if (0 == internal_strcmp(cur.type, type) && TemplateMatch(cur.templ, str)) {
86 *s = &cur;
/external/freetype/src/cid/
H A Dcidload.c333 FT_Byte* cur = base; local
334 FT_Byte* limit = cur + size;
342 parser->root.cursor = cur;
351 for ( ; cur < newlimit; cur++ )
353 if ( *cur == '%' &&
354 ft_strncmp( (char*)cur, "%ADOBeginFontDict", 17 ) == 0 )
363 cur = parser->root.cursor;
365 if ( cur >= limit )
373 if ( *cur
[all...]
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.seeks/
H A Dtellp.pass.cpp35 assert(way == std::ios_base::cur);
/external/libjpeg-turbo/
H A Djquant1.c159 int row_index; /* cur row's vertical index in dither matrix */
617 register LOCFSERROR cur; /* current error or pixel value */ local
618 LOCFSERROR belowerr; /* error for pixel below cur */
660 cur = 0;
665 /* cur holds the error propagated from the previous pixel on the
673 cur = RIGHT_SHIFT(cur + errorptr[dir] + 8, 4);
678 cur += GETJSAMPLE(*input_ptr);
679 cur = GETJSAMPLE(range_limit[cur]);
[all...]
/external/lzma/C/
H A DXzDec.c735 UInt32 cur = p->blockHeaderSize - p->pos; local
736 if (cur > srcRem)
737 cur = (UInt32)srcRem;
738 memcpy(p->buf + p->pos, src, cur);
739 p->pos += cur;
740 (*srcLen) += cur;
741 src += cur;
768 UInt32 cur = checkSize - p->pos; local
769 if (cur != 0)
771 if (cur > srcRe
802 UInt64 cur = p->indexSize - p->indexPos; local
854 UInt32 cur = XZ_STREAM_FOOTER_SIZE - p->pos; local
[all...]
/external/python/cpython2/Parser/
H A Dtokenizer.h17 /* Input state; buf <= cur <= inp <= end */
20 char *cur; /* Next character in buffer */ member in struct:tok_state
25 /* NB If done != E_OK, cur must be == inp!!! */
/external/python/cpython3/Parser/
H A Dtokenizer.h23 /* Input state; buf <= cur <= inp <= end */
26 char *cur; /* Next character in buffer */ member in struct:tok_state
31 /* NB If done != E_OK, cur must be == inp!!! */
/external/libxml2/
H A Dxmlregexp.c53 #define NEXT ctxt->cur++
54 #define CUR (*(ctxt->cur))
55 #define NXT(index) (ctxt->cur[index])
58 #define NEXTL(l) ctxt->cur += l;
62 * when it's guaranteed that cur is not at the beginning of ctxt->string!
64 #define PREV (ctxt->cur[-1])
244 xmlChar *cur; member in struct:_xmlAutomata
405 idx = ctxt->cur - ctxt->string;
694 ret->cur = ret->string;
4603 int cur; local
4633 int cur; local
4850 int cur; local
4995 int cur, len; local
5199 int cur; local
6353 const char *cur; member in struct:_xmlExpCtxt
[all...]
/external/freetype/src/base/
H A Dftobjs.c619 FT_GlyphSlot cur; local
624 cur = slot->face->glyph;
626 while ( cur )
628 if ( cur == slot )
631 slot->face->glyph = cur->next;
633 prev->next = cur->next;
643 prev = cur;
644 cur = cur->next;
1183 FT_CharMap* cur; local
1272 FT_CharMap* cur; local
2340 FT_Module* cur; local
3460 FT_CharMap* cur; local
3502 FT_CharMap* cur; local
4268 FT_ListNode cur; local
4841 FT_Module* cur; local
4899 FT_Module* cur = library->modules; local
4937 FT_Module* cur = library->modules; local
4974 FT_Module* cur; local
[all...]
/external/python/cpython2/Lib/sqlite3/test/
H A Dfactory.py61 cur = self.con.cursor()
62 self.assertIsInstance(cur, sqlite.Cursor)
63 cur = self.con.cursor(MyCursor)
64 self.assertIsInstance(cur, MyCursor)
65 cur = self.con.cursor(factory=lambda con: MyCursor(con))
66 self.assertIsInstance(cur, MyCursor)
81 cur = self.con.cursor(factory=MyCursor)
82 cur.execute("select 4+5 as foo")
83 row = cur.fetchone()
85 cur
[all...]
/external/python/cpython3/Lib/sqlite3/test/
H A Dfactory.py61 cur = self.con.cursor()
62 self.assertIsInstance(cur, sqlite.Cursor)
63 cur = self.con.cursor(MyCursor)
64 self.assertIsInstance(cur, MyCursor)
65 cur = self.con.cursor(factory=lambda con: MyCursor(con))
66 self.assertIsInstance(cur, MyCursor)
81 cur = self.con.cursor(factory=MyCursor)
82 cur.execute("select 4+5 as foo")
83 row = cur.fetchone()
85 cur
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkQueryUtil.hpp202 for (ExtensionIterator cur = begin; cur != end; ++cur)
204 if (isCompatible(*cur, required))
213 for (LayerIterator cur = begin; cur != end; ++cur)
215 if (isCompatible(*cur, required))
/external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
H A Dseekoff.pass.cpp34 pos_type p = f.pubseekoff(-15, std::ios_base::cur);
55 pos_type p = f.pubseekoff(-15, std::ios_base::cur);
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
H A Dseekg_off.pass.cpp64 is.seekg(5, std::ios_base::cur);
74 is.seekg(5, std::ios_base::cur);
/external/libdrm/freedreno/
H A Dfreedreno_ringbuffer.h45 uint32_t *cur, *end, *start, *last_start; member in struct:fd_ringbuffer
70 (*ring->cur++) = data;

Completed in 829 milliseconds

<<11121314151617181920>>