Searched defs:nbytes (Results 76 - 93 of 93) sorted by relevance

1234

/external/regex-re2/re2/testing/
H A Dregexp_benchmark.cc137 void MakeText(string* text, int nbytes) { argument
138 text->resize(nbytes);
140 for (int i = 0; i < nbytes; i++) {
148 // Makes text of size nbytes, then calls run to search
150 void Search(int iters, int nbytes, const char* regexp, SearchImpl* search) { argument
153 MakeText(&s, nbytes);
157 SetBenchmarkBytesProcessed(static_cast<int64>(iters)*nbytes);
239 void SearchBigFixed(int iters, int nbytes, SearchImpl* search) { argument
242 s.append(nbytes/2, 'x');
245 MakeText(&t, nbytes/
266 FindAndConsume(int iters, int nbytes) argument
286 SearchSuccess(int iters, int nbytes, const char* regexp, SearchImpl* search) argument
692 SearchPhone(int iters, int nbytes, ParseImpl* search) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.c758 size_t nbytes; member in struct:stream_state
1443 stream->nbytes = 0;
1643 stream->nbytes += pkt->data.raw.sz;
1665 stream->nbytes += pkt->data.raw.sz;
1672 stream->nbytes += pkt->data.raw.sz;
2172 frames_in, streams->frames_out, (int64_t)streams->nbytes);
2280 global.passes, frames_in, stream->frames_out, (int64_t)stream->nbytes,
2281 seen_frames ? (unsigned long)(stream->nbytes * 8 / seen_frames) : 0,
2282 seen_frames ? (int64_t)stream->nbytes * 8
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h145 inline static SizeType getSizeType(unsigned nbytes);
161 inline ValueType::SizeType ValueType::getSizeType(unsigned nbytes) { argument
162 switch (nbytes) {
/external/elfutils/0.153/libcpu/
H A Di386_parse.c2988 size_t nbytes = (totalbits - zerobits + 7) / 8; local
2989 assert (nbytes > 0);
2992 fprintf (outfile, " %#zx,", nbytes | (leadingbytes << 4));
3017 if (--nbytes == 0)
3032 if (--nbytes == 0)
3042 if (--nbytes == 0)
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c4114 int nbytes; local
4124 nbytes = sqlite3_column_bytes((sqlite3_stmt *) v->vm, col);
4128 b = (*env)->NewByteArray(env, nbytes);
4133 (*env)->SetByteArrayRegion(env, b, 0, nbytes, data);
4151 int nbytes; local
4161 nbytes = sqlite3_column_bytes16((sqlite3_stmt *) v->vm, col);
4165 nbytes /= sizeof (jchar);
4166 b = (*env)->NewString(env, data, nbytes);
/external/libcxx/src/
H A Dlocale.cpp1647 int nbytes = 0; local
1658 ++nbytes;
1663 return nbytes;
1665 nbytes += n;
1670 return nbytes;
/external/libvpx/libvpx/
H A Dvpxenc.c631 size_t nbytes; member in struct:stream_state
1215 stream->nbytes = 0;
1366 stream->nbytes += pkt->data.raw.sz;
1388 stream->nbytes += pkt->data.raw.sz;
1680 frames_in, streams->frames_out, (int64_t)streams->nbytes);
1751 global.passes, frames_in, stream->frames_out, (int64_t)stream->nbytes,
1752 seen_frames ? (unsigned long)(stream->nbytes * 8 / seen_frames) : 0,
1753 seen_frames ? (int64_t)stream->nbytes * 8
/external/netperf/
H A Dnettest_bsd.c3413 sendpath(int s, char *path, off_t offset, size_t nbytes,
3416 return syscall(SYS_sendpath, s, path, offset, nbytes, hdtrl, flags);
3403 sendpath(int s, char *path, off_t offset, size_t nbytes, const struct iovec *hdtrl, int flags) argument
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreaddwarf3.c530 (Addr aMin; Addr aMax; UShort nbytes; ..bytes..; UChar isEnd)
535 The number of bytes in '..bytes..' is nbytes.
556 UShort nbytes; local
578 /* nbytes, and actual expression */
579 nbytes = ML_(read_UShort)(p); p += sizeof(UShort);
580 p += nbytes;
585 static GExpr* make_singleton_GX ( DiCursor block, ULong nbytes )
592 vg_assert(nbytes <= 0xFFFF); /* else we overflow the nbytes field */
596 + sizeof(UShort) /*nbytes*/
630 Word nbytes; local
[all...]
H A Dreaddwarf.c1800 fde_arange = read_encoded_Addr(&nbytes, &adi, data);
2726 Word nbytes = sizeof(Addr) - (offset % sizeof(Addr)); local
2727 *data = ML_(cur_plus)(*data, nbytes);
4115 fde_arange = read_encoded_Addr(&nbytes, &adi, data);
4116 data += nbytes;
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c3369 int, fd, char *, buf, int, nbytes, long *, basep);
3386 int,fd, char *,buf, vki_size_t,nbytes, vki_off_t *,basep);
7713 Int nbytes = VEX_GUEST_X86_LDT_NENT * sizeof(VexGuestX86SegDescr); local
7714 return VG_(arena_calloc)(VG_AR_CORE, "syswrap-darwin.ldt", nbytes, 1);
/external/libpng/contrib/tools/
H A Dpngfix.c2261 zlib_advance(struct zlib *zlib, png_uint_32 nbytes) argument
2262 /* Read nbytes compressed bytes; the stream will be initialized if required.
2284 while (in_bytes < nbytes && endrc == ZLIB_OK)
2439 assert(in_bytes == nbytes || endrc != ZLIB_OK);
2472 if (in_bytes < nbytes)
2475 zlib->extra_bytes = nbytes - in_bytes;
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 419 milliseconds

1234