/third_party/ffmpeg/libavcodec/ |
H A D | pcx.c | 162 goto end; in pcx_decode_frame() 179 goto end; in pcx_decode_frame() 185 goto end; in pcx_decode_frame() 197 goto end; in pcx_decode_frame() 207 goto end; in pcx_decode_frame() 219 goto end; in pcx_decode_frame() 247 end: in pcx_decode_frame()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | cabac.h | 47 #define END_CHECK(end) "" 49 #define END_CHECK(end) \ 50 "cmp "end" , %%"FF_REG_c" \n\t"\ 80 #define BRANCHLESS_GET_CABAC(ret, retq, statep, low, lowword, range, rangeq, tmp, tmpbyte, byte, end, norm_off, lps_off, mlps_off, tables) \ 98 END_CHECK(end)\ 144 #define BRANCHLESS_GET_CABAC(ret, retq, statep, low, lowword, range, rangeq, tmp, tmpbyte, byte, end, norm_off, lps_off, mlps_off, tables) \ 159 END_CHECK(end)\
|
/third_party/glslang/glslang/MachineIndependent/ |
H A D | attribute.cpp | 69 std::transform(value.begin(), value.end(), value.begin(), ::tolower); in getString() 160 attr1->splice(attr1->end(), *attr2); in mergeAttributes() 173 for (auto it = attributes.begin(); it != attributes.end(); ++it) { in handleSelectionAttributes() 202 for (auto it = attributes.begin(); it != attributes.end(); ++it) { in handleSwitchAttributes() 233 for (auto it = agg->getSequence().begin(); it != agg->getSequence().end(); ++it) { in handleLoopAttributes() 242 for (auto it = attributes.begin(); it != attributes.end(); ++it) { in handleLoopAttributes() 352 for (auto it = attributes.begin(); it != attributes.end(); ++it) { in handleFunctionAttributes() 370 } // end namespace glslang
|
/third_party/benchmark/src/ |
H A D | commandlineflags.cc | 36 char* end = nullptr; in ParseInt32() local 37 const long long_value = strtol(str, &end, 10); // NOLINT in ParseInt32() 40 if (*end != '\0') { in ParseInt32() 70 char* end = nullptr; in ParseDouble() local 71 const double double_value = strtod(str, &end); // NOLINT in ParseDouble() 74 if (*end != '\0') { in ParseDouble() 290 std::transform(value_lower.begin(), value_lower.end(), value_lower.begin(), in IsTruthyFlagValue() 298 } // end namespace benchmark
|
/third_party/googletest/googletest/include/gtest/ |
H A D | gtest-param-test.h | 81 // Range(begin, end [, step]) - Yields values {begin, begin+step, 83 // include end. step defaults to 1. 86 // ValuesIn(begin,end) container, or an iterator range [begin, end). 208 // Range(start, end) 211 // Range(start, end, step) 215 // * The generated sequences never include end. For example, Range(1, 5) 218 // * start and end must have the same type. That type may be any integral or 225 // * Condition start < end must be satisfied in order for resulting sequences 229 internal::ParamGenerator<T> Range(T start, T end, Increment argument 235 Range(T start, T end) Range() argument 297 ValuesIn(ForwardIterator begin, ForwardIterator end) ValuesIn() argument [all...] |
/third_party/icu/icu4c/source/samples/layout/ |
H A D | FontMap.cpp | 177 le_int32 start, end, len; in strip() local 186 end = len - 1; in strip() 188 while (end > start && isspace(s[end])) { in strip() 189 end -= 1; in strip() 192 if (end < len) { in strip() 193 s[end + 1] = '\0'; in strip()
|
/third_party/icu/icu4c/source/common/ |
H A D | locutil.cpp | 76 // end of string, whichever comes first. In 3.0 I changed this to in canonicalLocaleString() 77 // stop at first '@' or '.'. It used to run out to the end of in canonicalLocaleString() 84 int32_t end = result.indexOf(AT_SIGN_CHAR); in canonicalLocaleString() local 86 if (n >= 0 && n < end) { in canonicalLocaleString() 87 end = n; in canonicalLocaleString() 89 if (end < 0) { in canonicalLocaleString() 90 end = result.length(); in canonicalLocaleString() 94 n = end; in canonicalLocaleString() 103 for (n = end; i < n; ++i) { in canonicalLocaleString()
|
/third_party/lzma/CPP/7zip/Compress/ |
H A D | XzEncoder.cpp | 142 const wchar_t *end;
in SetCoderProp() local 144 UInt32 id32 = ConvertStringToUInt32(name, &end);
in SetCoderProp() 146 if (end != name)
in SetCoderProp() 147 name = end;
in SetCoderProp() 170 const UInt32 delta = ConvertStringToUInt32(name, &end);
in SetCoderProp() 171 if (end == name || *end != 0 || delta == 0 || delta > 256)
in SetCoderProp()
|
/third_party/node/test/fixtures/wpt/user-timing/ |
H A D | measure-with-dict.any.js | 74 self.performance.measure("measure12", { end: undefined })); 76 self.performance.measure("measure13", { end: 'mark1' })); 78 self.performance.measure("measure14", { start: timeStamp3, end: 'mark1' })); 80 self.performance.measure("measure15", { start: timeStamp1, end: timeStamp2, detail: undefined })); 82 self.performance.measure("measure16", { start: 'mark1', end: undefined, detail: null })); 84 self.performance.measure("measure17", { start: timeStamp3, end: 'mark2', detail: { customInfo: 159 }})); 88 self.performance.measure("measure19", { duration: timeStamp2 - timeStamp1, end: timeStamp2 })); 95 }, "measure entries' detail and start/end are customizable"); 101 }, "measure should throw a TypeError when passed an options object and an end time"); 104 }, "measure should throw a TypeError when passed an options object and an end mar [all...] |
/third_party/ninja/src/ |
H A D | subprocess-win32.cc | 63 // Get the write end of the pipe as a handle inheritable across processes. in SetupPipe() 272 vector<Subprocess*>::iterator end = in DoWork() local 273 remove(running_.begin(), running_.end(), subproc); in DoWork() 274 if (running_.end() != end) { in DoWork() 276 running_.resize(end - running_.begin()); in DoWork() 293 i != running_.end(); ++i) { in Clear() 304 i != running_.end(); ++i) in Clear()
|
/third_party/node/deps/googletest/include/gtest/ |
H A D | gtest-param-test.h | 81 // Range(begin, end [, step]) - Yields values {begin, begin+step, 83 // include end. step defaults to 1. 86 // ValuesIn(begin,end) container, or an iterator range [begin, end). 208 // Range(start, end) 211 // Range(start, end, step) 215 // * The generated sequences never include end. For example, Range(1, 5) 218 // * start and end must have the same type. That type may be any integral or 225 // * Condition start < end must be satisfied in order for resulting sequences 229 internal::ParamGenerator<T> Range(T start, T end, Increment argument 235 Range(T start, T end) Range() argument 297 ValuesIn(ForwardIterator begin, ForwardIterator end) ValuesIn() argument [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | locutil.cpp | 76 // end of string, whichever comes first. In 3.0 I changed this to in canonicalLocaleString() 77 // stop at first '@' or '.'. It used to run out to the end of in canonicalLocaleString() 84 int32_t end = result.indexOf(AT_SIGN_CHAR); in canonicalLocaleString() local 86 if (n >= 0 && n < end) { in canonicalLocaleString() 87 end = n; in canonicalLocaleString() 89 if (end < 0) { in canonicalLocaleString() 90 end = result.length(); in canonicalLocaleString() 94 n = end; in canonicalLocaleString() 103 for (n = end; i < n; ++i) { in canonicalLocaleString()
|
/third_party/node/deps/v8/src/base/ |
H A D | small-vector.h | 94 T* end() { return end_; } in end() function in v8::base::SmallVector 95 const T* end() const { return end_; } in end() function in v8::base::SmallVector 124 T* end = end_; in emplace_back() local 125 if (V8_UNLIKELY(end == end_of_storage_)) end = Grow(); in emplace_back() 126 new (end) T(std::forward<Args>(args)...); in emplace_back() 127 end_ = end + 1; in emplace_back() 154 // Grows the backing store by a factor of two. Returns the new end of the used
|
/third_party/node/deps/v8/src/utils/ |
H A D | ostreams.h | 155 T end; member 156 PrintIteratorRange(T start, T end) : start(start), end(end) {} in PrintIteratorRange() 159 // Print any collection which can be iterated via std::begin and std::end. 160 // {Iterator} is the common type of {std::begin} and {std::end} called on a 165 decltype(std::end(collection))>::type> { 166 return {std::begin(collection), std::end(collection)}; 194 for (T it = range.start; it != range.end; ++it, comma = ", ") { in operator <<()
|
/third_party/mesa3d/src/gtest/include/gtest/ |
H A D | gtest-param-test.h | 81 // Range(begin, end [, step]) - Yields values {begin, begin+step, 83 // include end. step defaults to 1. 86 // ValuesIn(begin,end) container, or an iterator range [begin, end). 208 // Range(start, end) 211 // Range(start, end, step) 215 // * The generated sequences never include end. For example, Range(1, 5) 218 // * start and end must have the same type. That type may be any integral or 225 // * Condition start < end must be satisfied in order for resulting sequences 229 internal::ParamGenerator<T> Range(T start, T end, Increment argument 235 Range(T start, T end) Range() argument 297 ValuesIn(ForwardIterator begin, ForwardIterator end) ValuesIn() argument [all...] |
/third_party/openssl/test/ |
H A D | srptest.c | 53 goto end; in run_srp() 64 goto end; in run_srp() 72 goto end; in run_srp() 78 goto end; in run_srp() 86 goto end; in run_srp() 101 goto end; in run_srp() 105 end: in run_srp()
|
/third_party/skia/third_party/externals/icu/source/samples/layout/ |
H A D | FontMap.cpp | 177 le_int32 start, end, len; in strip() local 186 end = len - 1; in strip() 188 while (end > start && isspace(s[end])) { in strip() 189 end -= 1; in strip() 192 if (end < len) { in strip() 193 s[end + 1] = '\0'; in strip()
|
/third_party/skia/src/sksl/ir/ |
H A D | SkSLProgram.h | 153 return iterator(fProgram.fOwnedElements.begin(), fProgram.fOwnedElements.end(), in begin() 154 fProgram.fSharedElements.begin(), fProgram.fSharedElements.end()); in begin() 157 iterator end() const { in end() function in SkSL::Program::ElementsCollection 158 return iterator(fProgram.fOwnedElements.end(), fProgram.fOwnedElements.end(), in end() 159 fProgram.fSharedElements.end(), fProgram.fSharedElements.end()); in end()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/ |
H A D | font_info.cc | 67 chars_to_glyph_ids->end()); in FontInfo() 69 resolved_glyph_ids->end()); in FontInfo() 70 fonts_ = new FontIdMap(fonts->begin(), fonts->end()); in FontInfo() 83 if (it == fonts_->end()) in GetTable() 92 if (it == fonts_->end()) in GetTableMap() 206 e = chars_to_glyph_ids->end(); it != e; ++it) { in ResolveCompositeGlyphs() 247 == resolved_glyph_ids->end()) { in ResolveCompositeGlyphs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/ |
H A D | webtreemap.js | 103 // Returns [end, sum], where end is one past the last rectangle and sum is the 107 // bad. Result is [start,end) covering the best run for this span. 114 for (var end = start; node = nodes[end]; ++end) { 134 return [end, rsum]; 173 var end = span[0], rsum = span[1]; 175 // Now that we've selected a span, lay out rectangles [start,end) in our 178 for (var i = start; i < end; [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | locutil.cpp | 76 // end of string, whichever comes first. In 3.0 I changed this to in canonicalLocaleString() 77 // stop at first '@' or '.'. It used to run out to the end of in canonicalLocaleString() 84 int32_t end = result.indexOf(AT_SIGN_CHAR); in canonicalLocaleString() local 86 if (n >= 0 && n < end) { in canonicalLocaleString() 87 end = n; in canonicalLocaleString() 89 if (end < 0) { in canonicalLocaleString() 90 end = result.length(); in canonicalLocaleString() 94 n = end; in canonicalLocaleString() 103 for (n = end; i < n; ++i) { in canonicalLocaleString()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | MustExecute.h | 414 /// Return an universal end iterator. 416 iterator &end() { return EndIterator; } in end() function 417 iterator &end(const Instruction *) { return EndIterator; } in end() function 419 const_iterator &end() const { return EndIterator; } in end() function 420 const_iterator &end(const Instruction *) const { return EndIterator; } in end() function 425 return llvm::make_range(begin(PP), end(PP)); in range() 430 return llvm::make_range(begin(PP), end(PP)); in range() 441 auto EIt = begin(PP), EEnd = end(PP); in findInContextOf() 495 /// A unique end iterator.
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | taxonomy.c | 243 char *pos, *end; in retrieve_sta_taxonomy() local 252 end = buf + buflen; in retrieve_sta_taxonomy() 254 ie_to_string(pos, end - pos, sta->probe_ie_taxonomy); in retrieve_sta_taxonomy() 256 if (pos >= end) in retrieve_sta_taxonomy() 258 ret = os_snprintf(pos, end - pos, "|assoc:"); in retrieve_sta_taxonomy() 259 if (os_snprintf_error(end - pos, ret)) in retrieve_sta_taxonomy() 262 ie_to_string(pos, end - pos, sta->assoc_ie_taxonomy); in retrieve_sta_taxonomy()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuFormatUtil.hpp | 93 Bitfield (deUint64 value, const BitDesc* begin, const BitDesc* end) in Bitfield() argument 96 , m_end (end) in Bitfield() 183 Iterator end; member in tcu::Format::Array 185 Array (const Iterator& begin_, const Iterator& end_) : begin(begin_), end(end_) {} in Array() 202 for (Iterator cur = fmt.begin; cur != fmt.end; ++cur) in operator <<() 274 inline Format::Array<Iterator> formatArray (const Iterator& begin, const Iterator& end) in formatArray() argument 276 return Format::Array<Iterator>(begin, end); in formatArray()
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglClientExtensionTests.cpp | 217 if (knownDisplayExtensions.find(clientExtensions[extNdx]) != knownDisplayExtensions.end()) in iterate() 226 if (knownClientExtensions.find(displayExtensions[extNdx]) != knownClientExtensions.end()) in iterate() 296 const set<string> clientExtensionSet(clientExtensions.begin(), clientExtensions.end()); in iterate() 297 const set<string> displayExtensionSet(displayExtensions.begin(), displayExtensions.end()); in iterate() 299 for (set<string>::const_iterator iter = clientExtensionSet.begin(); iter != clientExtensionSet.end(); ++iter) in iterate() 301 if (displayExtensionSet.find(*iter) != displayExtensionSet.end()) in iterate() 305 for (set<string>::const_iterator iter = commonExtensionSet.begin(); iter != commonExtensionSet.end(); ++iter) in iterate()
|