Searched defs:end (Results 176 - 200 of 3317) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/tests/
H A DMD5Test.cpp37 const uint8_t* end = reinterpret_cast<const uint8_t*>(string + len); local
38 for (; data < end; ++data) {
/external/chromium_org/third_party/skia/tools/timer/
H A DSysTimer_windows.cpp46 unsigned __int64 end = __rdtsc(); local
52 return static_cast<double>(end - fStartWall) / static_cast<double>(freq_khz.QuadPart);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dvdso_support.h84 SymbolIterator end() const { return image_.end(); } function in class:base::VDSOSupport
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dfree_list.cc72 // |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
78 *end = NULL;
84 for (int i = 1; i < n; ++i) { // Find end of range.
87 *end = tmp; // |end| now set to point to last node in range.
88 *head = FL_Next(*end);
89 FL_SetNext(*end, NULL); // Unlink range from list.
97 // is |end| into the linked list at |*head|. |*head| is updated to
99 void FL_PushRange(void **head, void *start, void *end) { 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/base/
H A Dvdso_support.h84 SymbolIterator end() const { return image_.end(); } function in class:base::VDSOSupport
/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/tools/gn/
H A Dlocation.cc66 LocationRange::LocationRange(const Location& begin, const Location& end) argument
68 end_(end) {
H A Dlocation.h40 // The end is exclusive i.e. [begin, end)
44 LocationRange(const Location& begin, const Location& end);
47 const Location& end() const { return end_; } function in class:LocationRange
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dnative_heap.py84 while cur_start < alloc.end:
92 if alloc.end < page_end:
93 alloc_memory_in_current_page -= page_end - alloc.end
122 def end(self): member in class:Allocation
/external/chromium_org/ui/app_list/search/
H A Dtokenized_string_char_iterator.h60 // Returns true if the iterator is at the end.
61 bool end() const { return !current_token_iter_; } function in class:app_list::TokenizedStringCharIterator
/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);
58 end = std::min(end, utf8_length);
59 if (start >= end)
63 end = g_utf8_pointer_to_offset(utf8_text, utf8_text + end);
67 end = std::min(end, char_length);
68 if (start >= end)
[all...]
/external/chromium_org/ui/base/x/
H A Dselection_utils.h85 const_iterator end() const { return data_.end(); } function in class:ui::SelectionFormatMap
/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.
64 size_t end() const { return end_; } function in class:gfx::Range
65 void set_end(size_t end) { end_ = end; } argument
69 ptrdiff_t length = end() - start();
73 bool is_reversed() const { return start() > end(); }
74 bool is_empty() const { return start() == end(); }
[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/base/platform/
H A Dsemaphore.cc56 TimeTicks end = now + rel_time; local
59 if (now >= end) {
64 ts = (end - now).ToMachTimespec();
121 // Compute the time for end of timeout.
180 TimeTicks end = now + rel_time;
182 int64_t msec = (end - now).InMilliseconds();
/external/chromium_org/v8/src/compiler/
H A Dgeneric-algorithm-inl.h26 static Iterator end(Node* node) { return node->inputs().end(); } function in class:v8::internal::compiler::NodeInputIterationTraits
39 static Iterator end(Node* node) { return node->uses().end(); } function in class:v8::internal::compiler::NodeUseIterationTraits
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_persistent_allocator.h38 uptr end = atomic_load(&region_end, memory_order_acquire); local
39 if (cmp == 0 || cmp + size > end) return 0;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_procmaps_test.cc27 uptr start, end; local
28 bool res = GetCodeRangeForFile("[vdso]", &start, &end);
31 EXPECT_LT(start, end);
/external/compiler-rt/test/asan/TestCases/
H A Dcontiguous_container.cc13 char *end = beg + capacity; local
22 __sanitizer_annotate_contiguous_container(beg, end, old_mid, mid);
28 assert(__sanitizer_verify_contiguous_container(beg, mid, end));
30 assert(!__sanitizer_verify_contiguous_container(beg, mid - 1, end));
31 if (mid != end)
32 assert(!__sanitizer_verify_contiguous_container(beg, mid + 1, end));
36 __sanitizer_annotate_contiguous_container(beg, end, mid, end);
H A Dgc-test.cc20 void *beg, *end; local
22 __asan_addr_is_in_fake_stack(fake_stack, &var[0], &beg, &end);
25 assert((char*)end > (char*)&var[0]);
33 assert(end == end1);
/external/compiler-rt/test/builtins/Unit/
H A Dclear_cache_test.c16 void __clear_cache(void* start, void* end) argument
18 if (!FlushInstructionCache(GetCurrentProcess(), start, end-start))
23 extern void __clear_cache(void* start, void* end);
49 char* end = (char*)((uintptr_t)(&execution_buffer[128+4096]) & (-4095)); local
57 if (mprotect(start, end-start, PROT_READ|PROT_WRITE|PROT_EXEC) != 0)
H A Denable_execute_stack_test.c16 void __clear_cache(void* start, void* end) argument
18 if (!FlushInstructionCache(GetCurrentProcess(), start, end-start))
32 extern void __clear_cache(void* start, void* end);
/external/compiler-rt/test/msan/
H A Dchained_origin_limits.cc58 static char *buf, *cur, *end; variable
67 end = buf + 1000;
78 memmove(buf, p + 1, end - p - 1);
85 size_t copy_sz = end - cur;
/external/e2fsprogs/e2fsck/
H A Dprof_err.c70 struct et_list *et, **end; local
72 for (end = list, et = *list; et; end = &et->next, et = et->next)
84 *end = et;

Completed in 1654 milliseconds

1234567891011>>