HomeSort by relevance Sort by last modified time
    Searched refs:end (Results 501 - 525 of 28003) sorted by null

<<21222324252627282930>>

  /external/valgrind/coregrind/
pub_core_stacks.h 41 /* Convention for start and end:
42 'start' is the lowest address, 'end' is the highest address.
43 'start' and 'end' bytes are included in the stack.
44 In other words, the stack is the byte interval ['start', 'end']
48 'start' bigger than 'end' and will (transparently) swap 'start/end'
50 extern UWord VG_(register_stack) ( Addr start, Addr end );
52 extern void VG_(change_stack) ( UWord id, Addr start, Addr end );
53 extern void VG_(stack_limits) ( Addr SP, Addr *start, Addr *end );
64 /*--- end ---*
    [all...]
m_stacks.c 85 * This structure holds information about the start and end addresses of
96 Addr end; // Highest stack byte, included. member in struct:_Stack
106 * These are the id, start and end values of the current stack. If the
166 if (i && sp >= i->start && sp <= i->end)
171 if (sp >= i->start && sp <= i->end) {
184 * Register a new stack from start - end. This is invoked from the
188 UWord VG_(register_stack)(Addr start, Addr end)
192 if (start > end) {
195 (user) code registering stacks with start/end inverted . */
196 Addr t = end;
    [all...]
  /external/valgrind/none/tests/s390x/
stck.c 25 unsigned long start, end, diff; local
31 cc = stck(&end);
34 diff = clockticks_in_msec(end, start);
stckf.c 25 unsigned long start, end, diff; local
31 cc = stckf(&end);
35 diff = clockticks_in_msec(end, start);
  /external/walt/ios/WALT/
MIDIEndpoint.h 25 @end
30 @end
35 @end
  /external/webrtc/talk/app/webrtc/objc/
RTCDataChannel+Internal.h 39 @end
45 @end
55 @end
  /frameworks/base/core/java/android/os/
ConditionVariable.java 125 long end = now + timeout; local
126 while (!mCondition && now < end) {
128 this.wait(end-now);
  /frameworks/base/core/java/android/text/
AlteredCharSequence.java 66 public <T> T[] getSpans(int start, int end, Class<T> kind) {
67 return mSpanned.getSpans(start, end, kind);
82 public int nextSpanTransition(int start, int end, Class kind) {
83 return mSpanned.nextSpanTransition(start, end, kind);
100 public CharSequence subSequence(int start, int end) {
101 return AlteredCharSequence.make(mSource.subSequence(start, end),
105 public void getChars(int start, int end, char[] dest, int off) {
106 TextUtils.getChars(mSource, start, end, dest, off);
109 end = Math.min(mEnd, end);
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/util/
SearchUtil.java 47 int end = index + 1; local
48 while (end < contents.length()) {
49 if (contents.charAt(end) == '\n') {
52 end++;
54 matched.line = contents.substring(start + 1, end);
150 * Anything other than letter and numbers are considered delimiters. Remove start and end
171 int end = query.length() - 1; local
172 while (end > -1) {
173 if (Character.isLowSurrogate(query.charAt(end))) {
175 end--
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
TextViewCompatUtils.java 36 final Drawable start, final Drawable top, final Drawable end, final Drawable bottom) {
38 textView.setCompoundDrawablesWithIntrinsicBounds(start, top, end, bottom);
42 start, top, end, bottom);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/map.modifiers/
insert_iter_rv.pass.cpp 33 R r = m.insert(m.end(), P(2, 2));
39 r = m.insert(m.end(), P(1, 1));
45 r = m.insert(m.end(), P(3, 3));
46 assert(r == prev(m.end()));
51 r = m.insert(m.end(), P(3, 4));
52 assert(r == prev(m.end()));
73 R r = m.insert(m.end(), {2, MoveOnly(2)});
79 r = m.insert(m.end(), {1, MoveOnly(1)});
85 r = m.insert(m.end(), {3, MoveOnly(3)});
86 assert(r == prev(m.end()));
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.modifiers/string_insert/
iter_char.pass.cpp 43 test(s, s.end(), 'b', S("a1b"));
44 test(s, s.end()-1, 'c', S("a1cb"));
45 test(s, s.end()-2, 'd', S("a1dcb"));
46 test(s, s.end()-3, '2', S("a12dcb"));
47 test(s, s.end()-4, '3', S("a132dcb"));
48 test(s, s.end()-5, '4', S("a1432dcb"));
62 test(s, s.end(), 'b', S("a1b"));
63 test(s, s.end()-1, 'c', S("a1cb"));
64 test(s, s.end()-2, 'd', S("a1dcb"));
65 test(s, s.end()-3, '2', S("a12dcb"))
    [all...]
  /system/libufdt/utils/src/
mkdtimg_cfg_create.c 42 /* Find the end of the string or the first of '#' */
43 char *end = line; local
44 while (*end != '\0' && *end != '#') {
45 end++;
48 end--;
49 } while (end >= line && isspace(*end));
51 *(end + 1) = '\0';
128 goto end;
    [all...]
  /system/netd/server/
UidRanges.cpp 40 auto iter = std::lower_bound(mRanges.begin(), mRanges.end(), UidRange(intUid, intUid));
41 return (iter != mRanges.end() && iter->getStart() == intUid) ||
64 // Unexpected end of string.
86 std::sort(mRanges.begin(), mRanges.end());
92 std::sort(mRanges.begin(), mRanges.end());
96 auto middle = mRanges.insert(mRanges.end(), other.mRanges.begin(), other.mRanges.end());
97 std::inplace_merge(mRanges.begin(), middle, mRanges.end());
101 auto end = std::set_difference(mRanges.begin(), mRanges.end(), other.mRanges.begin() local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/alpha/
elf-reloc-6.s 18 .end nopv
25 .end stdgp
30 .end nopro
  /toolchain/binutils/binutils-2.27/gold/
gc.cc 47 if (find_it == this->section_reloc_map().end())
53 it_v != v.end();
58 == this->referenced_list().end())
67 } // End namespace gold.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
pic-and-nonpic-1a.s 14 .end f1
22 .end f2
31 .end f3
  /external/icu/icu4c/source/tools/toolutil/
uparse.cpp 44 char *end=uprv_strchr(s, 0); local
45 while(s<end && U_IS_INV_WHITESPACE(*(end-1))) {
46 *--end = 0;
48 return end;
192 char *end; local
212 value=(uint32_t)uprv_strtoul(s, &end, 16);
213 if(end<=s || (!U_IS_INV_WHITESPACE(*end) && *end!=';' && *end!=0) || value>=0x110000)
241 char *end; local
302 char *end; local
    [all...]
  /system/keymaster/include/keymaster/
android_keymaster_messages.h 120 uint8_t* Serialize(uint8_t* buf, const uint8_t* end) const override;
121 bool Deserialize(const uint8_t** buf_ptr, const uint8_t* end) override;
124 virtual uint8_t* NonErrorSerialize(uint8_t* buf, const uint8_t* end) const = 0;
125 virtual bool NonErrorDeserialize(const uint8_t** buf_ptr, const uint8_t* end) = 0;
135 uint8_t* Serialize(uint8_t* buf, const uint8_t* /* end */) const override { return buf; }
136 bool Deserialize(const uint8_t** /* buf_ptr */, const uint8_t* /* end */) override {
145 uint8_t* Serialize(uint8_t* buf, const uint8_t* end) const override {
146 return append_uint32_to_buf(buf, end, algorithm);
148 bool Deserialize(const uint8_t** buf_ptr, const uint8_t* end) override {
149 return copy_uint32_from_buf(buf_ptr, end, &algorithm)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallVector.h 124 iterator end() { return (iterator)this->EndX; } function in class:llvm::SmallVectorTemplateCommon
125 const_iterator end() const { return (const_iterator)this->EndX; } function in class:llvm::SmallVectorTemplateCommon
132 reverse_iterator rbegin() { return reverse_iterator(end()); }
133 const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); }
137 size_type size() const { return end()-begin(); }
150 assert(begin() + idx < end());
154 assert(begin() + idx < end());
166 return end()[-1];
169 return end()[-1];
210 this->uninitialized_copy(this->begin(), this->end(), NewElts)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
find.h 50 /* helper macro to fixup start/end slice values */
51 #define ADJUST_INDICES(start, end, len) \
52 if (end > len) \
53 end = len; \
54 else if (end < 0) { \
55 end += len; \
56 if (end < 0) \
57 end = 0; \
68 Py_ssize_t start, Py_ssize_t end)
70 ADJUST_INDICES(start, end, str_len);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
find.h 50 /* helper macro to fixup start/end slice values */
51 #define ADJUST_INDICES(start, end, len) \
52 if (end > len) \
53 end = len; \
54 else if (end < 0) { \
55 end += len; \
56 if (end < 0) \
57 end = 0; \
68 Py_ssize_t start, Py_ssize_t end)
70 ADJUST_INDICES(start, end, str_len);
    [all...]
  /external/python/cpython2/Objects/stringlib/
find.h 50 /* helper macro to fixup start/end slice values */
51 #define ADJUST_INDICES(start, end, len) \
52 if (end > len) \
53 end = len; \
54 else if (end < 0) { \
55 end += len; \
56 if (end < 0) \
57 end = 0; \
68 Py_ssize_t start, Py_ssize_t end)
70 ADJUST_INDICES(start, end, str_len)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
Support_Format.java 38 String text, Format.Field field, int begin, int end) {
52 if (begin != pos.getBeginIndex() || end != pos.getEndIndex()) {
53 assertEquals(field + " " + begin + ".." + end,
79 * which stores start and end indexes and an attribute this range has
85 int end = iterator.getRunLimit(); local
91 result.add(new FieldContainer(start, end, attribute, value));
92 // System.out.println(start + " " + end + ": " + attribute + ",
95 // end +"," + attribute+ "," + value+ "));");
97 iterator.setIndex(end);
104 final int end; field in class:Support_Format.FieldContainer
    [all...]
  /external/elfutils/libdw/
cfi.c 105 const uint8_t *program, const uint8_t *const end, bool abi_cfi,
128 while (program < end)
147 cfi_assert (program + 2 <= end);
151 cfi_assert (program + 4 <= end);
155 cfi_assert (program + 8 <= end);
167 These cases end with 'continue'. We only get out of the
171 get_uleb128 (operand, program, end);
172 cfi_assert (program < end);
173 get_uleb128 (offset, program, end);
184 get_uleb128 (regno, program, end);
    [all...]

Completed in 676 milliseconds

<<21222324252627282930>>