Searched refs:start (Results 251 - 275 of 5526) sorted by relevance

<<11121314151617181920>>

/external/kernel-headers/original/uapi/linux/netfilter/
H A Dnfnetlink_compat.h50 #define NFA_NEST_END(skb, start) \
51 ({ (start)->nfa_len = skb_tail_pointer(skb) - (unsigned char *)(start); \
53 #define NFA_NEST_CANCEL(skb, start) \
54 ({ if (start) \
55 skb_trim(skb, (unsigned char *) (start) - (skb)->data); \
/external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
H A Dpush_back.pass.cpp23 make(int size, int start = 0 )
27 if (start > 0)
29 init = (start+1) / b + ((start+1) % b != 0);
34 for (int i = 0; i < init-start; ++i)
38 for (int i = 0; i < start; ++i)
H A Dpush_back_rvalue.pass.cpp26 make(int size, int start = 0 )
30 if (start > 0)
32 init = (start+1) / b + ((start+1) % b != 0);
37 for (int i = 0; i < init-start; ++i)
41 for (int i = 0; i < start; ++i)
H A Demplace.pass.cpp25 make(int size, int start = 0 )
29 if (start > 0)
31 init = (start+1) / b + ((start+1) % b != 0);
36 for (int i = 0; i < init-start; ++i)
40 for (int i = 0; i < start; ++i)
60 testN(int start, int N) argument
66 C c1 = make<C>(N, start);
74 C c1 = make<C>(N, start);
82 C c1 = make<C>(N, start);
[all...]
H A Dinsert_rvalue.pass.cpp25 make(int size, int start = 0 )
29 if (start > 0)
31 init = (start+1) / b + ((start+1) % b != 0);
36 for (int i = 0; i < init-start; ++i)
40 for (int i = 0; i < start; ++i)
66 testN(int start, int N) argument
72 C c1 = make<C>(N, start);
80 C c1 = make<C>(N, start);
88 C c1 = make<C>(N, start);
[all...]
/external/libvncserver/webclients/novnc/include/
H A Dplayback.js87 start = frame.indexOf('{', 1) + 1;
88 bytes_processed += frame.length - start;
90 var u8 = new Uint8Array(frame.length - start);
91 for (var i = 0; i < frame.length - start; i++) {
92 u8[i] = frame.charCodeAt(start + i);
96 rfb.recv_message({'data' : frame.slice(start)});
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_dmatmp2.h94 GLuint start, GLuint nr )
99 for ( i = 0 ; i+1 < nr ; i+=2, start += 2 ) {
100 EMIT_TWO_ELTS( dest, 0, start, start+1 );
104 EMIT_ELT( dest, 0, start );
118 GLuint start,
122 if (start < count) {
125 EMIT_PRIM( ctx, GL_POINTS, HW_POINTS, start, count );
130 GLuint start,
136 count -= (count-start)
92 emit_consecutive_elts( struct gl_context *ctx, ELT_TYPE *dest, GLuint start, GLuint nr ) argument
117 render_points_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
129 render_lines_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
153 render_line_strip_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
200 render_line_loop_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
289 render_triangles_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
310 render_tri_strip_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
355 render_tri_fan_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
398 render_poly_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
412 render_quad_strip_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
463 render_quads_verts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
512 render_noop( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
542 render_points_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
566 render_lines_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
605 render_line_strip_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
634 render_line_loop_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
686 render_triangles_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
719 render_tri_strip_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
749 render_tri_fan_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
776 render_poly_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
802 render_quad_strip_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
864 render_quads_elts( struct gl_context *ctx, GLuint start, GLuint count, GLuint flags ) argument
[all...]
/external/regex-re2/re2/
H A Dmake_perl_groups.pl39 my $start = -1;
43 if ($start < 0) {
44 $start = $i;
47 if ($start >= 0) {
48 push @ranges, [$start, $i-1];
50 $start = -1;
/external/rmi4utils/rmihidtool/
H A Dmain.cpp85 char * start = input; local
89 ++start;
99 if (start == end)
103 if (static_cast<ssize_t>(result_len) < end - start + 1)
105 strncpy(result, start, end - start);
106 result[end - start] = '\0';
114 char * start; local
127 start = input + 2;
128 find_token(start, toke
227 char * start; local
[all...]
/external/squashfs-tools/squashfs-tools/
H A Dread_xattrs.c53 long long start; member in struct:hash_entry
76 static void save_xattr_block(long long start, int offset) argument
79 int hash = start & 0xffff;
81 TRACE("save_xattr_block: start %lld, offset %d\n", start, offset);
86 hash_entry->start = start;
97 static int get_xattr_block(long long start) argument
99 int hash = start & 0xffff;
103 if(hash_entry->start
154 long long *index, start, end; local
313 long long start; local
[all...]
/external/llvm/unittests/ADT/
H A DIntervalMapTest.cpp82 EXPECT_EQ(100u, I.start());
95 EXPECT_EQ(100u, I.start());
104 EXPECT_EQ(100u, I.start());
111 EXPECT_EQ(0u, I.start());
117 EXPECT_EQ(0u, I.start());
124 EXPECT_EQ(150u, I.start());
130 EXPECT_EQ(150u, I.start());
149 EXPECT_EQ(90u, map.start());
155 EXPECT_EQ(90u, map.start());
161 EXPECT_EQ(60u, map.start());
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dblkmap64_ba.c58 size = (size_t) (((bitmap->real_end - bitmap->start) / 8) + 1);
82 size = (size_t) (((bitmap->real_end - bitmap->start) / 8) + 1);
117 size = (size_t) (((src->real_end - src->start) / 8) + 1);
140 ext2fs_clear_bit64(bitno - bmap->start, bp->bitarray);
147 size = ((bmap->real_end - bmap->start) / 8) + 1;
148 new_size = ((new_real_end - bmap->start) / 8) + 1;
169 return ext2fs_set_bit64(bitno - bitmap->start, bp->bitarray);
177 return ext2fs_clear_bit64(bitno - bitmap->start, bp->bitarray);
185 return ext2fs_test_bit64(bitno - bitmap->start, bp->bitarray);
196 ext2fs_fast_set_bit64(bitno + i - bitmap->start, b
210 ba_test_clear_bmap_extent(ext2fs_generic_bitmap bitmap, __u64 start, unsigned int len) argument
284 ba_set_bmap_range(ext2fs_generic_bitmap bitmap, __u64 start, size_t num, void *in) argument
294 ba_get_bmap_range(ext2fs_generic_bitmap bitmap, __u64 start, size_t num, void *out) argument
320 ba_find_first_zero(ext2fs_generic_bitmap bitmap, __u64 start, __u64 end, __u64 *out) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUResource.java102 public Key subSequence(int start, int end) { argument
103 assert(0 <= start && start < length);
104 assert(start <= end && end <= length);
105 return new Key(bytes, offset + start, end - start);
118 private String internalSubString(int start, int end) { argument
119 StringBuilder sb = new StringBuilder(end - start);
120 for (int i = start; i < end; ++i) {
129 public String substring(int start) { argument
137 substring(int start, int end) argument
152 regionMatches(int start, CharSequence cs, int n) argument
197 regionMatches(int start, CharSequence cs) argument
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
H A DReplaceableTest.java80 * If at start, use the following character<br>
116 public String substring(int start, int limit) { argument
117 return chars.substring(start, limit);
136 public void replace(int start, int limit, String text) { argument
137 if (substring(start,limit).equals(text)) return; // NO ACTION!
138 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
140 chars.replace(start, limit, text);
141 fixStyles(start, limit, text.length());
145 public void replace(int start, int limit, char[] charArray, argument
147 if (substring(start,limi
152 fixStyles(int start, int limit, int newLen) argument
176 copy(int start, int limit, int dest) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUResource.java100 public Key subSequence(int start, int end) { argument
101 assert(0 <= start && start < length);
102 assert(start <= end && end <= length);
103 return new Key(bytes, offset + start, end - start);
116 private String internalSubString(int start, int end) { argument
117 StringBuilder sb = new StringBuilder(end - start);
118 for (int i = start; i < end; ++i) {
127 public String substring(int start) { argument
135 substring(int start, int end) argument
150 regionMatches(int start, CharSequence cs, int n) argument
195 regionMatches(int start, CharSequence cs) argument
[all...]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DReplaceableTest.java76 * If at start, use the following character<br>
112 public String substring(int start, int limit) { argument
113 return chars.substring(start, limit);
132 public void replace(int start, int limit, String text) { argument
133 if (substring(start,limit).equals(text)) return; // NO ACTION!
134 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
136 chars.replace(start, limit, text);
137 fixStyles(start, limit, text.length());
141 public void replace(int start, int limit, char[] charArray, argument
143 if (substring(start,limi
148 fixStyles(int start, int limit, int newLen) argument
172 copy(int start, int limit, int dest) argument
[all...]
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt010lexer.py29 assert token.start == 0, token.start
35 assert token.start == 6, token.start
41 assert token.start == 7, token.start
47 assert token.start == 12, token.start
53 assert token.start == 15, token.start
[all...]
H A Dt011lexer.py29 assert token.start == 0, token.start
35 assert token.start == 6, token.start
41 assert token.start == 7, token.start
47 assert token.start == 12, token.start
53 assert token.start == 15, token.start
[all...]
/external/hamcrest/src/org/hamcrest/
H A DBaseDescription.java56 public <T> Description appendValueList(String start, String separator, String end, T... values) { argument
57 return appendValueList(start, separator, end, Arrays.asList(values));
60 public <T> Description appendValueList(String start, String separator, String end, Iterable<T> values) { argument
61 return appendValueList(start, separator, end, values.iterator());
64 private <T> Description appendValueList(String start, String separator, String end, Iterator<T> values) { argument
65 return appendList(start, separator, end, new SelfDescribingValueIterator<T>(values));
68 public Description appendList(String start, String separator, String end, Iterable<? extends SelfDescribing> values) { argument
69 return appendList(start, separator, end, values.iterator());
72 private Description appendList(String start, String separator, String end, Iterator<? extends SelfDescribing> i) { argument
75 append(start);
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTitlecaseTransliterator.java71 if (offsets.start >= offsets.limit) {
83 // in which case we want to start in toLower mode. If the
84 // prior context is anything else (including empty) then start
86 int c, start;
87 for (start = offsets.start - 1; start >= offsets.contextStart; start -= UTF16.getCharCount(c)) {
88 c = text.char32At(start);
104 iter.setIndex(offsets.start);
[all...]
/external/icu/icu4c/source/extra/scrptrun/
H A Dscrptrun.h40 ScriptRun(const UChar chars[], int32_t start, int32_t length);
44 void reset(int32_t start, int32_t count);
46 void reset(const UChar chars[], int32_t start, int32_t length);
110 inline ScriptRun::ScriptRun(const UChar chars[], int32_t start, int32_t length) argument
112 reset(chars, start, length);
138 inline void ScriptRun::reset(int32_t start, int32_t length) argument
140 charStart = start;
141 charLimit = start + length;
146 inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length) argument
150 reset(start, lengt
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTitlecaseTransliterator.java70 if (offsets.start >= offsets.limit) {
82 // in which case we want to start in toLower mode. If the
83 // prior context is anything else (including empty) then start
85 int c, start;
86 for (start = offsets.start - 1; start >= offsets.contextStart; start -= UTF16.getCharCount(c)) {
87 c = text.char32At(start);
103 iter.setIndex(offsets.start);
[all...]
/external/javassist/src/main/javassist/runtime/
H A DDesc.java86 int start, int num) {
88 if (start >= descLen)
91 char c = desc.charAt(start);
122 return getClassType(desc, descLen, start, num);
127 Class[] result = getType(desc, descLen, start + 1, num + 1);
133 int start, int num) {
134 int end = start;
145 if (desc.charAt(start) == 'L')
146 cname = desc.substring(start + 1, end);
148 cname = desc.substring(start, en
85 getType(String desc, int descLen, int start, int num) argument
132 getClassType(String desc, int descLen, int start, int num) argument
[all...]
/external/libcxx/test/std/containers/sequences/deque/deque.cons/
H A Dassign_iter_iter.pass.cpp24 make(int size, int start = 0 )
28 if (start > 0)
30 init = (start+1) / b + ((start+1) % b != 0);
35 for (int i = 0; i < init-start; ++i)
39 for (int i = 0; i < start; ++i)
55 testN(int start, int N, int M) argument
57 C c1 = make<C>(N, start);
75 testNI(int start, int N, int M) argument
77 C c1 = make<C>(N, start);
[all...]
/external/libdrm/freedreno/
H A Dfreedreno_ringbuffer.c50 ring->start = ring->funcs->hostptr(ring);
51 ring->end = &(ring->start[size/4]);
53 ring->cur = ring->last_start = ring->start;
75 uint32_t *start = ring->start; local
77 start = &ring->start[0x140];
78 ring->cur = ring->last_start = start;
136 uint32_t fd_ringmarker_dwords(struct fd_ringmarker *start, argument
139 return end->cur - start
[all...]

Completed in 1066 milliseconds

<<11121314151617181920>>