Home
last modified time | relevance | path

Searched refs:end (Results 826 - 850 of 11851) sorted by relevance

1...<<31323334353637383940>>...475

/third_party/ltp/testcases/lib/
H A Dtst_random.c37 char *end; in main() local
55 max = strtol(argv[1], &end, 10); in main()
56 if (argv[1][0] == '\0' || *end != '\0') { in main()
64 min = strtol(argv[2], &end, 10); in main()
65 if (argv[2][0] == '\0' || *end != '\0') { in main()
H A Dtst_sleep.c34 char *end; in main() local
53 interval = strtol(argv[optind], &end, 10); in main()
55 if (argv[optind] == end) { in main()
63 if (!strcmp(units[i].unit, end)) in main()
68 fprintf(stderr, "ERROR: Invalid interval unit '%s'\n\n", end); in main()
/third_party/ltp/testcases/kernel/syscalls/getcwd/
H A Dgetcwd03.c44 goto end; in verify_getcwd()
54 goto end; in verify_getcwd()
61 goto end; in verify_getcwd()
70 goto end; in verify_getcwd()
75 end: in verify_getcwd()
/third_party/rust/crates/cxx/gen/src/
H A Difndef.rs12 let end = find_line(offset, &endif);
13 if let (Some(begin), Some(end)) = (begin, end) {
22 for line in HEADER[begin + ifndef.len()..end].trim().lines() {
27 offset = end + endif.len();
/third_party/rust/crates/cxx/gen/cmd/src/gen/
H A Difndef.rs12 let end = find_line(offset, &endif);
13 if let (Some(begin), Some(end)) = (begin, end) {
22 for line in HEADER[begin + ifndef.len()..end].trim().lines() {
27 offset = end + endif.len();
/third_party/rust/crates/cxx/gen/build/src/gen/
H A Difndef.rs12 let end = find_line(offset, &endif);
13 if let (Some(begin), Some(end)) = (begin, end) {
22 for line in HEADER[begin + ifndef.len()..end].trim().lines() {
27 offset = end + endif.len();
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dbit_vector.cpp46 while (this_it != this->bits_.end() && other_it != other.bits_.end()) { in Or()
56 if (other_it != other.bits_.end()) { in Or()
58 this->bits_.insert(this->bits_.end(), other_it, other.bits_.end()); in Or()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dbit_vector.cpp46 while (this_it != this->bits_.end() && other_it != other.bits_.end()) { in Or()
56 if (other_it != other.bits_.end()) { in Or()
58 this->bits_.insert(this->bits_.end(), other_it, other.bits_.end()); in Or()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DUniqueVector.h62 if (MI != Map.end()) return MI->second; in idFor()
80 /// Return an iterator to the end of the vector.
81 iterator end() { return Vector.end(); } in end() function in llvm::UniqueVector
83 /// Return an iterator to the end of the vector.
84 const_iterator end() const { return Vector.end(); } in end() function in llvm::UniqueVector
99 } // end namespace llvm
/third_party/rust/crates/cxx/gen/lib/src/gen/
H A Difndef.rs12 let end = find_line(offset, &endif);
13 if let (Some(begin), Some(end)) = (begin, end) {
22 for line in HEADER[begin + ifndef.len()..end].trim().lines() {
27 offset = end + endif.len();
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dchi_square.h38 // assumes that the values in [begin, end) are uniformly distributed.
40 double ChiSquareWithExpected(Iterator begin, Iterator end, double expected) { in ChiSquareWithExpected() argument
44 for (auto it = begin; it != end; it++) { in ChiSquareWithExpected()
56 double ChiSquare(Iterator it, Iterator end, Expected eit, Expected eend) { in ChiSquare() argument
58 for (; it != end && eit != eend; ++it, ++eit) { in ChiSquare()
69 assert(it == end && eit == eend); in ChiSquare()
/third_party/spirv-tools/source/util/
H A Dbit_vector.cpp46 while (this_it != this->bits_.end() && other_it != other.bits_.end()) { in Or()
56 if (other_it != other.bits_.end()) { in Or()
58 this->bits_.insert(this->bits_.end(), other_it, other.bits_.end()); in Or()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/
H A Ddbus-listen-preq.py22 end=' ')
25 end=' ')
28 end=' ')
30 print('signal:%d' % args['signal'], end=' ')
32 print('have IEs (%d bytes)' % len(args['ies']), end=' ')
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/
H A Ddbus-listen-preq.py22 end=' ')
25 end=' ')
28 end=' ')
30 print('signal:%d' % args['signal'], end=' ')
32 print('have IEs (%d bytes)' % len(args['ies']), end=' ')
/third_party/musl/src/network/
H A Ddn_skipname.c3 int dn_skipname(const unsigned char *s, const unsigned char *end) in dn_skipname() argument
6 while (p < end) in dn_skipname()
9 if (p+1<end) return p-s+2; in dn_skipname()
12 if (end-p<*p+1) break; in dn_skipname()
/third_party/ffmpeg/libavcodec/
H A Dopus.c53 static inline int xiph_lacing_16bit(const uint8_t **ptr, const uint8_t *end) in xiph_lacing_16bit() argument
57 if (*ptr >= end) in xiph_lacing_16bit()
61 if (*ptr >= end) in xiph_lacing_16bit()
71 static inline int xiph_lacing_full(const uint8_t **ptr, const uint8_t *end) in xiph_lacing_full() argument
77 if (*ptr >= end || val > INT_MAX - 254) in xiph_lacing_full()
96 const uint8_t *end = buf + buf_size; in ff_opus_parse_packet() local
120 int len = xiph_lacing_16bit(&ptr, end); in ff_opus_parse_packet()
121 if (len < 0 || len > end - ptr) in ff_opus_parse_packet()
123 end = ptr + len; in ff_opus_parse_packet()
124 buf_size = end in ff_opus_parse_packet()
[all...]
/third_party/ffmpeg/libswscale/
H A Drgb2rgb_template.c36 const uint8_t *end = s + src_size; in rgb24tobgr32_c() local
38 while (s < end) { in rgb24tobgr32_c()
60 const uint8_t *end = s + src_size; in rgb32tobgr24_c() local
62 while (s < end) { in rgb32tobgr24_c()
89 register const uint8_t *end = s + src_size; in rgb15to16_c() local
90 const uint8_t *mm_end = end - 3; in rgb15to16_c()
98 if (s < end) { in rgb15to16_c()
108 register const uint8_t *end = s + src_size; in rgb16to15_c() local
109 const uint8_t *mm_end = end - 3; in rgb16to15_c()
117 if (s < end) { in rgb16to15_c()
127 const uint8_t *end = s + src_size; rgb32to16_c() local
143 const uint8_t *end = s + src_size; rgb32tobgr16_c() local
158 const uint8_t *end = s + src_size; rgb32to15_c() local
174 const uint8_t *end = s + src_size; rgb32tobgr15_c() local
190 const uint8_t *end = s + src_size; rgb24tobgr16_c() local
204 const uint8_t *end = s + src_size; rgb24to16_c() local
219 const uint8_t *end = s + src_size; rgb24tobgr15_c() local
233 const uint8_t *end = s + src_size; rgb24to15_c() local
248 const uint16_t *end = s + src_size / 2; rgb15tobgr24_c() local
263 const uint16_t *end = s + src_size / 2; rgb16tobgr24_c() local
277 const uint16_t *end = s + src_size / 2; rgb15to32_c() local
299 const uint16_t *end = s + src_size / 2; rgb16to32_c() local
[all...]
/third_party/python/Python/
H A Dformatter_unicode.c60 get_integer(PyObject *str, Py_ssize_t *ppos, Py_ssize_t end, in get_integer() argument
69 for (; pos < end; pos++, numdigits++) { in get_integer()
143 ptr points to the start of the format_spec, end points just past its end.
151 Py_ssize_t start, Py_ssize_t end, in parse_internal_render_format_spec()
159 /* end-pos is used throughout this code to specify the length of in parse_internal_render_format_spec()
179 if (end-pos >= 2 && is_alignment_token(READ_spec(pos+1))) { in parse_internal_render_format_spec()
186 else if (end-pos >= 1 && is_alignment_token(READ_spec(pos))) { in parse_internal_render_format_spec()
193 if (end-pos >= 1 && is_sign_element(READ_spec(pos))) { in parse_internal_render_format_spec()
200 if (end in parse_internal_render_format_spec()
149 parse_internal_render_format_spec(PyObject *obj, PyObject *format_spec, Py_ssize_t start, Py_ssize_t end, InternalFormatSpec *format, char default_type, char default_align) parse_internal_render_format_spec() argument
447 parse_number(PyObject *s, Py_ssize_t pos, Py_ssize_t end, Py_ssize_t *n_remainder, int *has_decimal) parse_number() argument
1451 _PyUnicode_FormatAdvancedWriter(_PyUnicodeWriter *writer, PyObject *obj, PyObject *format_spec, Py_ssize_t start, Py_ssize_t end) _PyUnicode_FormatAdvancedWriter() argument
1487 _PyLong_FormatAdvancedWriter(_PyUnicodeWriter *writer, PyObject *obj, PyObject *format_spec, Py_ssize_t start, Py_ssize_t end) _PyLong_FormatAdvancedWriter() argument
1549 _PyFloat_FormatAdvancedWriter(_PyUnicodeWriter *writer, PyObject *obj, PyObject *format_spec, Py_ssize_t start, Py_ssize_t end) _PyFloat_FormatAdvancedWriter() argument
1588 _PyComplex_FormatAdvancedWriter(_PyUnicodeWriter *writer, PyObject *obj, PyObject *format_spec, Py_ssize_t start, Py_ssize_t end) _PyComplex_FormatAdvancedWriter() argument
[all...]
/third_party/gn/src/gn/
H A Dscope.cc102 if (found != values_.end()) { in GetValueWithScope()
124 if (found != values_.end()) { in GetMutableValue()
140 if (found != values_.end()) in GetStorageKey()
157 if (found != values_.end()) { in GetValueWithScope()
177 if (found != values_.end()) in RemoveIdentifier()
205 if (found != templates_.end()) in GetTemplate()
214 if (found == values_.end()) { in MarkUsed()
229 excluded_values.find(std::string(cur.first)) != excluded_values.end()) { in MarkAllUsed()
238 if (found == values_.end()) { in MarkUnused()
247 if (found != values_.end()) { in IsSetButUnused()
[all...]
/third_party/node/deps/v8/src/wasm/
H A Ddecoder.h55 Decoder(const byte* start, const byte* end, uint32_t buffer_offset = 0) in Decoder() argument
56 : Decoder(start, start, end, buffer_offset) {} in Decoder()
60 Decoder(const byte* start, const byte* pc, const byte* end, in Decoder() argument
62 : start_(start), pc_(pc), end_(end), buffer_offset_(buffer_offset) { in Decoder()
64 DCHECK_LE(pc, end); in Decoder()
65 DCHECK_EQ(static_cast<uint32_t>(end - start), end - start); in Decoder()
235 errorf(pc_, "expected %u bytes, fell off end", size); in checkAvailable()
286 void traceByteRange(const byte* start, const byte* end) { in traceByteRange() argument
287 DCHECK_LE(start, end); in traceByteRange()
308 Reset(const byte* start, const byte* end, uint32_t buffer_offset = 0) Reset() argument
346 const byte* end() const { return end_; } end() function
347 set_end(const byte* end) set_end() argument
[all...]
/third_party/mesa3d/src/intel/genxml/
H A Dgen_pack_header.py71 __gen_mbo(uint32_t start, uint32_t end)
73 return (~0ull >> (64 - (end - start + 1))) << start;
77 __gen_uint(uint64_t v, uint32_t start, NDEBUG_UNUSED uint32_t end)
82 const int width = end - start + 1;
93 __gen_uint_nonzero(uint64_t v, uint32_t start, uint32_t end)
96 return __gen_uint(v, start, end);
100 __gen_sint(int64_t v, uint32_t start, uint32_t end)
102 const int width = end - start + 1;
120 __gen_sint_nonzero(int64_t v, uint32_t start, uint32_t end)
123 return __gen_sint(v, start, end);
[all...]
/third_party/pcre2/pcre2/src/
H A Dpcre2_auto_possess.c330 PCRE2_SPTR end; in get_chr_property_list() local
477 end = code + GET(code, 0) - 1; in get_chr_property_list()
480 end = code + 32 / sizeof(PCRE2_UCHAR); in get_chr_property_list()
482 switch(*end) in get_chr_property_list()
491 end++; in get_chr_property_list()
497 end++; in get_chr_property_list()
503 list[1] = (GET2(end, 1) == 0); in get_chr_property_list()
504 end += 1 + 2 * IMM2_SIZE; in get_chr_property_list()
507 list[2] = (uint32_t)(end - code); in get_chr_property_list()
508 return end; in get_chr_property_list()
1135 PCRE2_SPTR end; auto_possessify() local
[all...]
/third_party/alsa-lib/test/
H A Dmixtest.c228 unsigned long long begin, end, diff, diffS, diff0, diff1, diff1_mmx, diff2; in main() local
263 rdtscll(end); in main()
264 diff = end - begin; in main()
276 rdtscll(end); in main()
277 diff = end - begin; in main()
289 rdtscll(end); in main()
290 diff = end - begin; in main()
302 rdtscll(end); in main()
303 diff = end - begin; in main()
315 rdtscll(end); in main()
[all...]
/third_party/mbedtls/scripts/
H A Dgenerate_ssl_debug_helpers.py59 def _yield_objects(s, d, p, st, end):
75 for instance in cls.extract(s, st, end):
87 start, end = match.span()
90 stack.append((directive, param, start, end))
116 stack.append((directive, param, start, end))
144 def extract(cls, source_code, start=0, end=-1):
150 for match in enum_pattern.finditer(source_code, start, end):
233 def extract(cls, source_code, start=0, end=-1):
237 matches = list(sig_alg_pattern.finditer(source_code, start, end))
292 def extract(cls, source_code, start=0, end
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_liverangeevaluator_helpers.cpp151 return (begin() <= other.begin()) && (end() >= other.end()); in contains_range_of()
226 int ProgramScope::end() const in end() function in r600::ProgramScope
231 void ProgramScope::set_end(int end) in set_end() argument
234 scope_end = end; in set_end()
257 last_read(range.end), in RegisterCompAccess()
450 /* We are at the end of scope C and already recorded a write in record_else_write()
502 int lr = first_write_scope->end(); in propagate_live_range_to_dominant_write_scope()
519 m_range.end = -1; in update_required_live_range()
528 m_range.end in update_required_live_range()
[all...]

Completed in 11 milliseconds

1...<<31323334353637383940>>...475