Searched defs:start (Results 226 - 250 of 1486) sorted by relevance

1234567891011>>

/external/oprofile/daemon/
H A Dopd_kernel.c50 sscanf(arg, "%llx,%llx", &vmlinux_image.start, &vmlinux_image.end);
53 vmlinux_image.start, vmlinux_image.end);
55 if (!vmlinux_image.start && !vmlinux_image.end) {
57 vmlinux_image.start, vmlinux_image.end);
75 sscanf(arg, "%llx,%llx", &xen_image.start, &xen_image.end);
78 xen_image.start, xen_image.end);
80 if (!xen_image.start && !xen_image.end) {
82 xen_image.start, xen_image.end);
91 * @param start start addres
95 opd_create_module(char const * name, vma_t start, vma_t end) argument
[all...]
/external/oprofile/libpp/
H A Dprofile.cpp147 profile_t::samples_range(odb_key_t start, odb_key_t end) const argument
149 // Check the start position isn't before start_offset:
150 // this avoids wrapping/underflowing start/end.
154 if (start < start_offset) {
159 start -= start_offset;
162 // sanity check if start > end caller will enter into an infinite loop
163 if (start > end) {
164 throw op_fatal_error("profile_t::samples_range(): start > end"
171 ordered_samples.lower_bound(start);
/external/proguard/src/proguard/gui/splash/
H A DSplashPanel.java82 SplashPanel.this.start();
91 public void start() method in class:SplashPanel
100 animationThread.start();
233 panel.start();
/external/qemu/android/protocol/
H A Dcore-commands.h55 int start; member in struct:UICmdTraceControl
/external/qemu/distrib/sdl-1.2.12/src/cdrom/dc/
H A DSDL_syscdrom.c39 static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length);
124 static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length) argument
126 int ret = cdrom_cdda_play(start-150,start-150+length,1,CDDA_SECTORS);
/external/qemu/distrib/sdl-1.2.12/src/timer/amigaos/
H A DSDL_systimer.c60 static clock_t start; variable
65 start=clock();
72 ticks=clock()-start;
113 ULONG start[2]; variable
121 PPCGetTimerObject(MyTimer,PPCTIMERTAG_CURRENTTICKS,start);
122 start[1]>>=10;
123 start[1]|=((result[0]&0x3ff)<<22);
124 start[0]>>=10;
/external/qemu/distrib/sdl-1.2.12/src/timer/macos/
H A DSDL_MPWtimer.c45 UInt64 start; variable
53 start = WideTo64bit(now);
65 return (Uint32)((WideTo64bit(now)-start)/1000);
/external/qemu/distrib/sdl-1.2.12/src/timer/win32/
H A DSDL_systimer.c40 static DWORD start; variable
55 start = GetTickCount();
68 start = timeGetTime();
99 if ( now < start ) {
100 ticks = (TIME_WRAP_VALUE-start) + now;
102 ticks = (now - start);
/external/qemu/
H A Dqstring.c39 QString *qstring_from_substr(const char *str, int start, int end) argument
45 qstring->length = end - start + 1;
49 memcpy(qstring->string, str + start, qstring->length);
/external/quake/quake/src/QW/client/
H A Dgl_test.c48 plane_t *HitPlane (vec3_t start, vec3_t end) argument
58 SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace);
/external/quake/quake/src/WinQuake/
H A Dchase.cpp47 // start position 12 units behind head
50 void TraceLine (vec3_t start, vec3_t end, vec3_t impact) argument
55 SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace);
H A Dgl_test.cpp48 plane_t *HitPlane (vec3_t start, vec3_t end) argument
58 SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace);
/external/skia/gpu/include/
H A DGrStopwatch.h45 void start() { function in class:GrStopwatchBase
/external/skia/src/animator/
H A DSkScriptDecompile.cpp131 void SkScriptEngine2::decompile(const unsigned char* start, size_t length) { argument
133 const unsigned char* opCode = start;
135 SkASSERT((size_t)(opCode - start) < length);
138 SkDebugf("%d: %s", opCode - start - 1, gOpNames[op].fName);
208 SkDebugf(" offset (address): %d (%d)", size, opCode - start + size);
/external/skia/src/core/
H A DSkChunkAlloc.cpp137 char* start = block->startOfData(); local
138 if (start <= cPtr && cPtr < block->fFreePtr) {
/external/skia/src/views/
H A DSkScrollBarView.cpp22 void SkScrollBarView::setStart(unsigned start) argument
24 if ((int)start < 0)
25 start = 0;
27 if (fStartPoint != start)
29 fStartPoint = start;
116 int start = fStartPoint; local
127 if (start + shown > total)
128 start = total - shown;
134 e.setScalar("_startPoint", SkIntToScalar(start));
/external/srec/portable/include/
H A Dpstream.h56 unsigned char *start; member in struct:_FileRecord
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dclosure.h45 StateId start = fst->Start(); local
52 fst->AddArc(s, Arc(0, 0, final, start));
58 if (start != kNoLabel)
59 fst->AddArc(nstart, Arc(0, 0, Weight::One(), start));
H A Ddfs-visit.h82 StateId start = fst.Start(); local
83 if (start == kNoStateId) {
100 for (StateId root = start; dfs && root < nstates;) {
149 for (root = root == start ? 0 : root + 1;
/external/v8/src/
H A Dd8-readline.cc55 static char** AttemptedCompletion(const char* text, int start, int end);
94 int start,
93 AttemptedCompletion(const char* text, int start, int end) argument
H A Dsmall-pointer-list.h123 int CountOccurrences(T* pointer, int start, int end) const { argument
126 if (start == 0 && end >= 0) {
131 return list()->CountOccurrences(pointer, start, end);
/external/v8/test/cctest/
H A Dtest-hashmap.cc128 const int start = 453; local
133 int x = start;
142 x = start;
150 x = start;
159 int y = start;
/external/valgrind/main/coregrind/
H A Dpub_core_aspacemgr.h78 /* Is the area [start .. start+len-1] validly accessible by the
86 // ( Addr start, SizeT len, UInt prot );
93 ( Addr start, SizeT len, UInt prot );
132 Addr start; member in struct:__anon11080
148 fixed requests. If start is zero, a floating request is issued; if
152 ( Addr start, SizeT len, /*OUT*/Bool* ok );
176 extern Bool VG_(am_notify_mprotect)( Addr start, SizeT len, UInt prot );
184 extern Bool VG_(am_notify_munmap)( Addr start, SizeT len );
192 ( Addr start, Size
411 Addr start; member in struct:__anon11084
[all...]
/external/valgrind/tsan/
H A Dts_heap_info.h64 void EraseRange(uintptr_t start, uintptr_t end) { argument
65 CHECK(IsValidPtr(start));
67 // TODO(glider): the [start, end) range may cover several map_ records.
68 EraseInfo(start);
/external/valgrind/unittest/
H A Dold_test_suite.h76 long start = GetTimeInMs(); local
79 printf("*RESULT test%d: time= %4ld ms\n", id_, end - start);
80 // printf ("Time: %4ldms\n", end-start);

Completed in 436 milliseconds

1234567891011>>