Searched defs:start (Results 201 - 225 of 3334) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_heap.c30 unsigned start, unsigned size)
38 r->start = start;
68 r->start = (heap->start + heap->size) - size;
110 new->start = r->start;
29 nouveau_heap_init(struct nouveau_heap **heap, unsigned start, unsigned size) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dcolortab.h44 _mesa_ColorSubTable( GLenum target, GLsizei start,
62 _mesa_ColorSubTable( GLenum target, GLsizei start, argument
/external/chromium_org/third_party/ots/test/
H A Dperf.cc61 struct timeval start, end, elapsed; local
62 ::gettimeofday(&start, 0);
72 timersub(&end, &start, &elapsed);
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
H A Dcharacter_predicate.cc24 AcceptRange::AcceptRange(int32_t start, int32_t end) argument
25 : start_(start),
/external/chromium_org/third_party/skia/tests/
H A DSListTest.cpp40 SListEntry* start, int count, int step = 1) {
47 for(SListEntry* value = start; index < count; value += step, ++index) {
71 verifyEmptyList(reporter, list, "start");
37 verifyList(skiatest::Reporter* reporter, const SkTInternalSList<SListEntry>& list, const char* stage, SListEntry* start, int count, int step = 1) argument
/external/chromium_org/third_party/smhasher/src/
H A DBitvec.h204 uint32_t window1 ( void * blob, int len, int start, int count );
205 uint32_t window8 ( void * blob, int len, int start, int count );
206 uint32_t window32 ( void * blob, int len, int start, int count );
208 inline uint32_t window ( void * blob, int len, int start, int count ) argument
212 return window8(blob,len,start,count);
216 return window32(blob,len,start,count);
221 inline uint32_t window ( T & blob, int start, int count ) argument
225 return window32(&blob,sizeof(T),start,count);
229 return window8(&blob,sizeof(T),start,count);
234 inline uint32_t window ( uint32_t & blob, int start, in argument
240 window( uint64_t & blob, int start, int count ) argument
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dfree_list.cc36 // are stored at the start of each element, independently of the
72 // |start| will point to the first node of the range, |end| will point
75 void FL_PopRange(void **head, int n, void **start, void **end) { argument
77 *start = NULL;
82 *start = *head; // Remember the first node in the range.
96 // Pushes the nodes in the list begginning at |start| whose last node
99 void FL_PushRange(void **head, void *start, void *end) { argument
100 if (!start) return;
104 FL_Next(start);
106 ASSERT(FL_Previous_No_Check(start)
[all...]
H A Dmalloc_hook_mmap_freebsd.h59 void* mmap(void *start, size_t length,int prot, int flags,
62 int munmap(void* start, size_t length) __THROW
68 static inline void* do_mmap(void *start, size_t length,
72 start, length, prot, flags, fd, offset);
116 extern "C" void* mmap(void *start, size_t length, int prot, int flags,
118 MallocHook::InvokePreMmapHook(start, length, prot, flags, fd, offset);
121 start, length, prot, flags, fd, offset, &result)) {
122 result = do_mmap(start, length, prot, flags, fd,
125 MallocHook::InvokeMmapHook(result, start, length, prot, flags, fd, offset);
129 extern "C" int munmap(void* start, size_
146 UnhookedMMap(void *start, size_t length, int prot, int flags, int fd, off_t offset) argument
157 UnhookedMUnmap(void *start, size_t length) argument
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-profiler_unittest.cc59 static ATTRIBUTE_NOINLINE void Allocate(int start, int end, int size) { argument
60 for (int i = start; i < end; ++i) {
66 static ATTRIBUTE_NOINLINE void Allocate2(int start, int end, int size) { argument
67 for (int i = start; i < end; ++i) {
73 static void Deallocate(int start, int end) { argument
74 for (int i = start; i < end; ++i) {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmalloc_hook_mmap_freebsd.h59 void* mmap(void *start, size_t length,int prot, int flags,
62 int munmap(void* start, size_t length) __THROW
68 static inline void* do_mmap(void *start, size_t length,
72 start, length, prot, flags, fd, offset);
116 extern "C" void* mmap(void *start, size_t length, int prot, int flags,
118 MallocHook::InvokePreMmapHook(start, length, prot, flags, fd, offset);
121 start, length, prot, flags, fd, offset, &result)) {
122 result = do_mmap(start, length, prot, flags, fd,
125 MallocHook::InvokeMmapHook(result, start, length, prot, flags, fd, offset);
129 extern "C" int munmap(void* start, size_
146 UnhookedMMap(void *start, size_t length, int prot, int flags, int fd, off_t offset) argument
157 UnhookedMUnmap(void *start, size_t length) argument
[all...]
H A Dmalloc_hook_mmap_linux.h56 static inline void* do_mmap64(void *start, size_t length,
59 return sys_mmap(start, length, prot, flags, fd, offset);
67 static inline void* do_mmap64(void *start, size_t length,
86 start, length, prot, flags, fd,
106 int32 args[6] = { (int32) start, (int32) length, prot, flags, fd,
139 void* mmap64(void *start, size_t length, int prot, int flags,
142 void* mmap(void *start, size_t length,int prot, int flags,
145 int munmap(void* start, size_t length) __THROW
154 extern "C" void* mmap64(void *start, size_t length, int prot, int flags,
156 MallocHook::InvokePreMmapHook(start, lengt
214 UnhookedMMap(void *start, size_t length, int prot, int flags, int fd, off_t offset) argument
224 UnhookedMUnmap(void *start, size_t length) argument
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-profiler_unittest.cc59 static ATTRIBUTE_NOINLINE void Allocate(int start, int end, int size) { argument
60 for (int i = start; i < end; ++i) {
66 static ATTRIBUTE_NOINLINE void Allocate2(int start, int end, int size) { argument
67 for (int i = start; i < end; ++i) {
73 static void Deallocate(int start, int end) { argument
74 for (int i = start; i < end; ++i) {
/external/chromium_org/third_party/webrtc/base/
H A Dmacsocketserver_unittest.cc38 uint32 start = Time(); local
40 EXPECT_GE(TimeSince(start), 1000);
47 uint32 start = Time(); local
50 EXPECT_LT(TimeSince(start), 10000);
56 uint32 start = Time(); local
58 EXPECT_GE(TimeSince(start), 1000);
65 uint32 start = Time(); local
68 EXPECT_LT(TimeSince(start), 10000);
74 uint32 start = Time(); local
76 EXPECT_GE(TimeSince(start), 100
83 uint32 start = Time(); local
[all...]
/external/chromium_org/third_party/webrtc/tools/loopback_test/
H A Dloopback_test.js91 if (forceTurn) requestTurn(start, fail);
92 else start();
94 function start(turnServer) {
120 call.start();
150 // c.start();
170 this.start = function() {
/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dpinch.js8 // 2. action.start(pinch_options)
46 PinchAction.prototype.start = function(opt_options) {
H A Dscroll.js8 // 2. action.start(scroll_options)
82 ScrollAction.prototype.start = function(opt_options) {
H A Dscroll_bounce.js23 ScrollBounceAction.prototype.start = function(options) {
H A Dswipe.js42 SwipeAction.prototype.start = function(opt_options) {
/external/chromium_org/ui/base/ime/
H A Dcomposition_text_util_pango.cc54 gint start, end; local
55 pango_attr_iterator_range(iter, &start, &end);
57 start = std::min(start, utf8_length);
59 if (start >= end)
62 start = g_utf8_pointer_to_offset(utf8_text, utf8_text + start);
66 start = std::min(start, char_length);
68 if (start >
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
H A Dfunction_sequence.js99 this.logger.vlog('Attempting to start step [' +
111 * This function should be called only once on start, so start sequence pipeline
114 FunctionSequence.prototype.start = function(var_args) {
132 this.start.apply(this, args);
/external/chromium_org/ui/file_manager/image_loader/
H A Dworker.js105 Worker.prototype.start = function() {
/external/chromium_org/ui/gfx/range/
H A Drange.h30 // range of characters in a text selection. A range is made of a start and end
39 // Initializes the range with a start and end.
40 Range(size_t start, size_t end);
42 // Initializes the range with the same start and end positions.
61 size_t start() const { return start_; } function in class:gfx::Range
62 void set_start(size_t start) { start_ = start; } argument
69 ptrdiff_t length = end() - start();
73 bool is_reversed() const { return start() > end(); }
74 bool is_empty() const { return start()
[all...]
/external/chromium_org/ui/views/accessibility/
H A Dax_aura_obj_wrapper.h38 virtual void SetSelection(int32 start, int32 end) {} argument
/external/chromium_org/v8/src/
H A Dinterface-descriptors.cc46 CallInterfaceDescriptorData* start = isolate->call_descriptor_data(0); local
47 size_t index = data_ - start;
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-schedule.cc26 CHECK_NE(NULL, schedule.start());
27 CHECK_EQ(schedule.start(), *(schedule.all_blocks().begin()));
39 BasicBlock* entry = schedule.start();
56 BasicBlock* entry = schedule.start();
75 BasicBlock* entry = schedule.start();
106 BasicBlock* entry = schedule.start();
120 BasicBlock* entry = schedule.start();
136 Node* start = graph.NewNode(common.Start(0)); local
137 graph.SetStart(start);
138 Node* param0 = graph.NewNode(common.Parameter(0), graph.start());
[all...]

Completed in 5377 milliseconds

1234567891011>>