Searched refs:rep (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
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...]
H A Drep.asm3 rep stosb label
/external/chromium_org/third_party/icu/source/common/unicode/
H A Durep.h57 * @param rep A pointer to "this" UReplaceable object.
61 int32_t (*length)(const UReplaceable* rep);
66 * returned by (*length)(rep). See unistr.h for a description of
69 * @param rep A pointer to "this" UReplaceable object.
74 UChar (*charAt)(const UReplaceable* rep,
82 * @param rep A pointer to "this" UReplaceable object.
87 UChar32 (*char32At)(const UReplaceable* rep,
95 * @param rep A pointer to "this" UReplaceable object.
106 void (*replace)(UReplaceable* rep,
116 * @param rep
[all...]
/external/icu/icu4c/source/common/unicode/
H A Durep.h57 * @param rep A pointer to "this" UReplaceable object.
61 int32_t (*length)(const UReplaceable* rep);
66 * returned by (*length)(rep). See unistr.h for a description of
69 * @param rep A pointer to "this" UReplaceable object.
74 UChar (*charAt)(const UReplaceable* rep,
82 * @param rep A pointer to "this" UReplaceable object.
87 UChar32 (*char32At)(const UReplaceable* rep,
95 * @param rep A pointer to "this" UReplaceable object.
106 void (*replace)(UReplaceable* rep,
116 * @param rep
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cc221 static ReportStack *ChooseSummaryStack(const ReportDesc *rep) { argument
222 if (rep->mops.Size())
223 return rep->mops[0]->stack;
224 if (rep->stacks.Size())
225 return rep->stacks[0];
226 if (rep->mutexes.Size())
227 return rep->mutexes[0]->stack;
228 if (rep->threads.Size())
229 return rep->threads[0]->stack;
239 void PrintReport(const ReportDesc *rep) { argument
348 PrintReport(const ReportDesc *rep) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/tests/
H A Dnasmpp-decimal.asm5 %rep 8
/external/libcxx/test/utilities/time/
H A Dclock.h18 typedef duration::rep rep; typedef in class:Clock
/external/libcxx/test/utilities/time/time.duration/time.duration.cons/
H A Ddefault.pass.cpp21 #include "../../rep.h"
28 assert(d.count() == typename D::rep());
31 static_assert(d2.count() == typename D::rep(), "");
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dc.cc46 struct leveldb_t { DB* rep; }; member in struct:leveldb_t
47 struct leveldb_iterator_t { Iterator* rep; }; member in struct:leveldb_iterator_t
48 struct leveldb_writebatch_t { WriteBatch rep; }; member in struct:leveldb_writebatch_t
49 struct leveldb_snapshot_t { const Snapshot* rep; }; member in struct:leveldb_snapshot_t
50 struct leveldb_readoptions_t { ReadOptions rep; }; member in struct:leveldb_readoptions_t
51 struct leveldb_writeoptions_t { WriteOptions rep; }; member in struct:leveldb_writeoptions_t
52 struct leveldb_options_t { Options rep; }; member in struct:leveldb_options_t
53 struct leveldb_cache_t { Cache* rep; }; member in struct:leveldb_cache_t
54 struct leveldb_seqfile_t { SequentialFile* rep; }; member in struct:leveldb_seqfile_t
55 struct leveldb_randomfile_t { RandomAccessFile* rep; }; member in struct:leveldb_randomfile_t
56 struct leveldb_writablefile_t { WritableFile* rep; }; member in struct:leveldb_writablefile_t
57 struct leveldb_logger_t { Logger* rep; }; member in struct:leveldb_logger_t
58 struct leveldb_filelock_t { FileLock* rep; }; member in struct:leveldb_filelock_t
128 Env* rep; member in struct:leveldb_env_t
[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/compiler-rt/lib/builtins/
H A Dfp_trunc.h55 const union { src_t f; src_rep_t i; } rep = {.f = x}; local
56 return rep.i;
60 const union { dst_t f; dst_rep_t i; } rep = {.i = x}; local
61 return rep.f;
/external/compiler-rt/test/builtins/Unit/
H A Dfp_test.h68 uint32_t rep = toRep32(result); local
70 if (rep == expected){
75 if ((rep & 0x7f800000U) == 0x7f800000U &&
76 (rep & 0x7fffffU) > 0){
86 uint64_t rep = toRep64(result); local
88 if (rep == expected){
93 if ((rep & 0x7ff0000000000000UL) == 0x7ff0000000000000UL &&
94 (rep & 0xfffffffffffffUL) > 0){
108 __uint128_t rep = toRep128(result); local
109 uint64_t hi = rep >> 6
[all...]
/external/chromium_org/chrome/common/
H A Dspellcheck_result.h31 const base::string16& rep = base::string16(),
33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
H A Dgas-prefix.asm0 rep
1 rep label
/external/chromium_org/third_party/mesa/src/src/glx/
H A DXF86dri.c120 xXF86DRIQueryVersionReply rep; local
130 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) {
136 *majorVersion = rep.majorVersion;
137 *minorVersion = rep.minorVersion;
138 *patchVersion = rep.patchVersion;
150 xXF86DRIQueryDirectRenderingCapableReply rep; local
161 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) {
167 *isCapable = rep.isCapable;
179 xXF86DRIOpenConnectionReply rep; local
190 if (!_XReply(dpy, (xReply *) & rep,
227 xXF86DRIAuthConnectionReply rep; local
280 xXF86DRIGetClientDriverNameReply rep; local
328 xXF86DRICreateContextReply rep; local
389 xXF86DRICreateDrawableReply rep; local
470 xXF86DRIGetDrawableInfoReply rep; local
555 xXF86DRIGetDeviceInfoReply rep; local
[all...]
/external/mesa3d/src/glx/
H A DXF86dri.c120 xXF86DRIQueryVersionReply rep; local
130 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) {
136 *majorVersion = rep.majorVersion;
137 *minorVersion = rep.minorVersion;
138 *patchVersion = rep.patchVersion;
150 xXF86DRIQueryDirectRenderingCapableReply rep; local
161 if (!_XReply(dpy, (xReply *) & rep, 0, xFalse)) {
167 *isCapable = rep.isCapable;
179 xXF86DRIOpenConnectionReply rep; local
190 if (!_XReply(dpy, (xReply *) & rep,
227 xXF86DRIAuthConnectionReply rep; local
280 xXF86DRIGetClientDriverNameReply rep; local
328 xXF86DRICreateContextReply rep; local
389 xXF86DRICreateDrawableReply rep; local
470 xXF86DRIGetDrawableInfoReply rep; local
555 xXF86DRIGetDeviceInfoReply rep; local
[all...]
/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/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/chromium_org/ui/gfx/image/
H A Dimage.cc75 const ImageSkiaRep* rep = NULL; variable
85 if (!rep || rep->scale() < (*iter).scale())
86 rep = &(*iter);
87 if (rep->scale() >= scale)
90 return rep ? *rep : ImageSkiaRep();
98 const gfx::ImageSkiaRep rep = ToImageSkiaRep(png_rep); local
99 if (rep.is_null())
102 size_ = gfx::Size(rep
176 ImageRep(Image::RepresentationType rep) argument
433 internal::ImageRepPNG* rep = new internal::ImageRepPNG(filtered); local
440 internal::ImageRepSkia* rep = new internal::ImageRepSkia( local
450 internal::ImageRepCocoaTouch* rep = new internal::ImageRepCocoaTouch(image); local
458 internal::ImageRepCocoa* rep = new internal::ImageRepCocoa(image); local
508 internal::ImageRep* rep = GetRepresentation(kImageRepSkia, false); local
547 internal::ImageRep* rep = GetRepresentation(kImageRepCocoaTouch, false); local
575 internal::ImageRep* rep = GetRepresentation(kImageRepCocoa, false); local
[all...]
/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";
/external/elfutils/0.153/libcpu/
H A Di386_dis.h140 { .mnemonic = MNE_aaa, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1 = 0, .off1_2 = 0, .off1_3 = 0, .fct2 = 0, .str2 = 0, .off2_1 = 0, .off2_2 = 0, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
141 { .mnemonic = MNE_aad, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1 = 0, .off1_2 = 0, .off1_3 = 0, .fct2 = 0, .str2 = 0, .off2_1 = 0, .off2_2 = 0, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
142 { .mnemonic = MNE_aam, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1 = 0, .off1_2 = 0, .off1_3 = 0, .fct2 = 0, .str2 = 0, .off2_1 = 0, .off2_2 = 0, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
143 { .mnemonic = MNE_aas, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1 = 0, .off1_2 = 0, .off1_3 = 0, .fct2 = 0, .str2 = 0, .off2_1 = 0, .off2_2 = 0, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
144 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_1 = 5, .off1_2 = 3, .off1_3 = 0, .fct2 = 5, .str2 = 0, .off2_1 = 11, .off2_2 = 3, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
145 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 15, .str1 = 0, .off1_1 = 13, .off1_2 = 3, .off1_3 = 0, .fct2 = 16, .str2 = 0, .off2_1 = 3, .off2_2 = 9, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
146 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 18, .str1 = 0, .off1_1 = 13, .off1_2 = 0, .off1_3 = 0, .fct2 = 15, .str2 = 0, .off2_1 = 3, .off2_2 = 9, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
147 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 26, .str1 = 0, .off1_1 = 7, .off1_2 = 3, .off1_3 = 0, .fct2 = 16, .str2 = 0, .off2_1 = 3, .off2_2 = 9, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
148 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 24, .str1 = 0, .off1_1 = 5, .off1_2 = 9, .off1_3 = 0, .fct2 = 19, .str2 = 0, .off2_1 = 5, .off2_2 = 3, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
149 { .mnemonic = MNE_add, .rep
[all...]
H A Dx86_64_dis.h141 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_1 = 5, .off1_2 = 3, .off1_3 = 0, .fct2 = 5, .str2 = 0, .off2_1 = 11, .off2_2 = 3, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
142 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 15, .str1 = 0, .off1_1 = 13, .off1_2 = 3, .off1_3 = 0, .fct2 = 16, .str2 = 0, .off2_1 = 3, .off2_2 = 9, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
143 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 19, .str1 = 0, .off1_1 = 13, .off1_2 = 0, .off1_3 = 0, .fct2 = 15, .str2 = 0, .off2_1 = 3, .off2_2 = 9, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
144 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 27, .str1 = 0, .off1_1 = 7, .off1_2 = 3, .off1_3 = 0, .fct2 = 16, .str2 = 0, .off2_1 = 3, .off2_2 = 9, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
145 { .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 25, .str1 = 0, .off1_1 = 5, .off1_2 = 9, .off1_3 = 0, .fct2 = 20, .str2 = 0, .off2_1 = 5, .off2_2 = 3, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
146 { .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_1 = 5, .off1_2 = 3, .off1_3 = 0, .fct2 = 5, .str2 = 0, .off2_1 = 11, .off2_2 = 3, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
147 { .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 15, .str1 = 0, .off1_1 = 13, .off1_2 = 3, .off1_3 = 0, .fct2 = 16, .str2 = 0, .off2_1 = 3, .off2_2 = 9, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
148 { .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 19, .str1 = 0, .off1_1 = 13, .off1_2 = 0, .off1_3 = 0, .fct2 = 15, .str2 = 0, .off2_1 = 3, .off2_2 = 9, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
149 { .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 27, .str1 = 0, .off1_1 = 7, .off1_2 = 3, .off1_3 = 0, .fct2 = 16, .str2 = 0, .off2_1 = 3, .off2_2 = 9, .off2_3 = 0, .fct3 = 0, .str3 = 0, .off3_1 = 0, .off3_2 = 0, },
150 { .mnemonic = MNE_add, .rep
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkMiniData.cpp9 static bool is_long(uint64_t rep) { argument
13 return rep && SkIsAlign8(rep);
27 uint64_t rep = reinterpret_cast<uint64_t>(s); local
28 SkASSERT(is_long(rep));
29 return rep;
/external/libcxx/test/utilities/time/time.clock/time.clock.hires/
H A Dconsistency.pass.cpp29 static_assert((std::is_same<C::rep, C::duration::rep>::value), "");
/external/libcxx/test/utilities/time/time.clock/time.clock.steady/
H A Dconsistency.pass.cpp29 static_assert((std::is_same<C::rep, C::duration::rep>::value), "");

Completed in 1442 milliseconds

1234567891011>>