Searched defs:rep (Results 1 - 25 of 135) sorted by relevance

123456

/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Dtable.h62 explicit Table(Rep* rep) { rep_ = rep; } argument
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Drep.asm3 rep stosb label
H A Dsse-prefix.asm4 rep movsw label
5 rep fs movsw label
6 fs rep movsw
10 rep movsd label
11 rep fs movsd label
12 fs rep movsd
19 rep fs cmpsd label
20 fs rep cmpsd
27 rep movsw label
30 rep movs label
35 rep cmpsd label
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
H A Dgas-prefix.asm0 rep
1 rep label
/external/eigen/bench/
H A Dquatmul.cpp23 int rep = 1000000; local
32 BENCH(t, tries, rep, quatmul_default(a,b,c));
33 std::cout << label << " default " << 1e3*t.best(CPU_TIMER) << "ms \t" << 1e-6*double(rep)/(t.best(CPU_TIMER)) << " M mul/s\n";
35 BENCH(t, tries, rep, quatmul_novec(a,b,c));
36 std::cout << label << " novec " << 1e3*t.best(CPU_TIMER) << "ms \t" << 1e-6*double(rep)/(t.best(CPU_TIMER)) << " M mul/s\n";
H A Dproduct_threshold.cpp53 int rep = 100000./n; local
54 rep /= 2;
55 if(rep<1) rep = 1;
57 rep *= 2;
59 BENCH(t,1,rep,prod<CoeffBasedProductMode>(a,b,c));
63 BENCH(t,5,rep,prod<Mode>(a,b,c));
66 std::cout << int(1e-6*n*rep/t.best()) << "\t";
H A Deig33.cpp175 int rep = 400000; local
182 BENCH(t, tries, rep, eig.compute(A));
187 BENCH(t, tries, rep, eigen33(A,evecs,evals));
H A Dquat_slerp.cpp165 int rep = 100; local
167 for (int w=0; w<rep; ++w)
214 avgerr /= RefScalar(rep*iters);
/external/oprofile/libregex/tests/
H A Dregex_test.cpp32 regular_expression_replace rep; local
34 setup_regex(rep, "../stl.pat");
50 rep.execute(str);
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test_util_linux.cc61 bool OnReport(const ReportDesc *rep, bool suppressed) { argument
63 if (rep->typ != expect_report_type) {
65 (int)expect_report_type, (int)rep->typ);
/external/chromium_org/third_party/icu/source/i18n/
H A Dcasetrn.cpp36 Replaceable *rep=(Replaceable *)csc->p; local
56 c=rep->char32At(csc->index-1);
67 c=rep->char32At(csc->index);
H A Dutrans.cpp17 #include "unicode/rep.h"
40 UReplaceable *rep; member in class:ReplaceableGlue
91 this->rep = replaceable;
98 return (*func->length)(rep);
102 return (*func->charAt)(rep, offset);
106 return (*func->char32At)(rep, offset);
112 (*func->replace)(rep, start, limit, text.getBuffer(), text.length());
118 (*func->extract)(rep, start, limit, target.getBuffer(limit-start));
123 (*func->copy)(rep, start, limit, dest);
397 UReplaceable* rep,
[all...]
/external/icu4c/i18n/
H A Dcasetrn.cpp38 Replaceable *rep=(Replaceable *)csc->p; local
58 c=rep->char32At(csc->index-1);
69 c=rep->char32At(csc->index);
H A Dutrans.cpp17 #include "unicode/rep.h"
40 UReplaceable *rep; member in class:ReplaceableGlue
91 this->rep = replaceable;
98 return (*func->length)(rep);
102 return (*func->charAt)(rep, offset);
106 return (*func->char32At)(rep, offset);
112 (*func->replace)(rep, start, limit, text.getBuffer(), text.length());
118 (*func->extract)(rep, start, limit, target.getBuffer(limit-start));
123 (*func->copy)(rep, start, limit, dest);
397 UReplaceable* rep,
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
H A Dvmw_screen_dri.c162 struct drm_vmw_surface_create_req *rep = &arg.rep; local
184 if (rep->mip_levels[0] != 1) {
187 whandle->handle, rep->mip_levels[0]);
192 if (rep->mip_levels[i] != 0) {
209 *format = rep->format;
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dappledri.c156 xAppleDRIQueryVersionReply rep; local
166 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) {
172 *majorVersion = rep.majorVersion;
173 *minorVersion = rep.minorVersion;
174 *patchVersion = rep.patchVersion;
188 xAppleDRIQueryDirectRenderingCapableReply rep; local
199 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) {
205 *isCapable = rep.isCapable;
220 xAppleDRIAuthConnectionReply rep; local
231 rep
254 xAppleDRICreateSurfaceReply rep; local
314 xAppleDRICreateSharedBufferReply rep; local
383 xAppleDRICreatePixmapReply rep; local
[all...]
/external/chromium_org/tools/traceline/traceline/
H A Dstubs.asm39 rep stosb label
41 rep movsb label
/external/compiler-rt/lib/
H A Dextendsfdf2.c58 const union { src_t f; src_rep_t i; } rep = {.f = x}; local
59 return rep.i;
63 const union { dst_t f; dst_rep_t i; } rep = {.i = x}; local
64 return rep.f;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cc161 static ReportStack *ChooseSummaryStack(const ReportDesc *rep) { argument
162 if (rep->mops.Size())
163 return rep->mops[0]->stack;
164 if (rep->stacks.Size())
165 return rep->stacks[0];
166 if (rep->mutexes.Size())
167 return rep->mutexes[0]->stack;
168 if (rep->threads.Size())
169 return rep->threads[0]->stack;
179 void PrintReport(const ReportDesc *rep) { argument
245 PrintReport(const ReportDesc *rep) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DDominators.java142 SsaBasicBlock vAncestorRep = vabbInfo.rep;
143 SsaBasicBlock vRep = vbbInfo.rep;
146 vbbInfo.rep = vAncestorRep;
161 return bbInfo.rep;
261 bbInfo.rep = v;
273 * rep(resentative) is known as "label" in the paper. It is the node
276 public SsaBasicBlock rep; field in class:Dominators.DFSInfo
/external/hyphenation/
H A Dexample.c29 void single_hyphenations(char * word, char * hyphen, char ** rep, int * pos, int * cut, int utf8) { argument
35 if (rep && rep[j]) {
39 printf(" - %s%s", word, rep[j]);
73 char ** rep; local
144 rep = NULL;
150 (optd && hnj_hyphen_hyphenate2(dict, lcword, n-1, hyphens, hword, &rep, &pos, &cut))) {
182 if (optdd) single_hyphenations(lcword, hyphens, rep, pos, cut, dict->utf8);
183 if (rep) {
185 if (rep[
[all...]
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen_dri.c162 struct drm_vmw_surface_create_req *rep = &arg.rep; local
184 if (rep->mip_levels[0] != 1) {
187 whandle->handle, rep->mip_levels[0]);
192 if (rep->mip_levels[i] != 0) {
209 *format = rep->format;
/external/mesa3d/src/glx/apple/
H A Dappledri.c156 xAppleDRIQueryVersionReply rep; local
166 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) {
172 *majorVersion = rep.majorVersion;
173 *minorVersion = rep.minorVersion;
174 *patchVersion = rep.patchVersion;
188 xAppleDRIQueryDirectRenderingCapableReply rep; local
199 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) {
205 *isCapable = rep.isCapable;
220 xAppleDRIAuthConnectionReply rep; local
231 rep
254 xAppleDRICreateSurfaceReply rep; local
314 xAppleDRICreateSharedBufferReply rep; local
383 xAppleDRICreatePixmapReply rep; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xinerama/
H A DXinerama.c108 xPanoramiXQueryVersionReply rep; local
119 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
124 *major_versionp = rep.majorVersion;
125 *minor_versionp = rep.minorVersion;
143 xPanoramiXGetStateReply rep; local
153 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
160 panoramiX_info->window = rep.window;
161 panoramiX_info->State = rep.state;
172 xPanoramiXGetScreenCountReply rep; local
182 if (!_XReply (dpy, (xReply *) &rep,
202 xPanoramiXGetScreenSizeReply rep; local
253 xXineramaIsActiveReply rep; local
283 xXineramaQueryScreensReply rep; local
[all...]
/external/chromium_org/chrome/browser/speech/
H A Dspeech_recognition_bubble.cc157 const gfx::ImageSkiaRep& rep = local
161 rep.pixel_width(), rep.pixel_height());
166 rep.pixel_width(), rep.pixel_height());

Completed in 3312 milliseconds

123456