Home
last modified time | relevance | path

Searched refs:end (Results 2201 - 2225 of 10887) sorted by relevance

1...<<81828384858687888990>>...436

/third_party/skia/third_party/externals/icu/source/tools/makeconv/
H A Dmakeconv.cpp568 char *end; in readFile() local
608 end=uprv_strchr(line, 0); in readFile()
609 while(line<end && in readFile()
610 (*(end-1)=='\n' || *(end-1)=='\r' || *(end-1)==' ' || *(end-1)=='\t')) { in readFile()
611 --end; in readFile()
613 *end=0; in readFile()
615 if(line[0]=='#' || u_skipWhitespace(line)==end) { in readFile()
[all...]
/third_party/skia/src/ports/
H A DSkFontMgr_config_parser.cpp46 /** Called at the end tag.
51 void (*end)(FamilyData* data, const char* tag); member
123 const char* end = start + s->size(); // end is exclusive in trim_string() local
125 if (start != end) { in trim_string()
126 --end; // make end inclusive in trim_string()
127 while (is_whitespace(*end)) { in trim_string()
128 --end; in trim_string()
130 ++end; // mak in trim_string()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp56 } // end anonymous namespace
68 return I != Ranges.end() && I->Low <= R.Low; in IsInRanges()
128 } // end anonymous namespace
162 for (Function::iterator I = F.begin(), E = F.end(); I != E; ) { in runOnFunction()
190 for (LowerSwitch::CaseVector::const_iterator B = C.begin(), E = C.end(); in operator <<()
315 BasicBlock *LBranch = switchConvert(LHS.begin(), LHS.end(), LowerBound, in switchConvert()
318 BasicBlock *RBranch = switchConvert(RHS.begin(), RHS.end(), NewLowerBound, in switchConvert()
417 for (CaseItr J = std::next(I), E = Cases.end(); J != E; ++J) { in Clusterify()
433 Cases.erase(std::next(I), Cases.end()); in Clusterify()
553 for (auto I = UnreachableRanges.begin(), E = UnreachableRanges.end(); in processSwitchInst()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86CmovConversion.cpp149 } // end anonymous namespace
224 SmallVector<MachineLoop *, 4> Loops(MLI.begin(), MLI.end()); in runOnMachineFunction()
337 // Check if this instruction define EFLAGS, to determine end of processed in collectCmovCandidates()
349 // End of basic block is considered end of range, check if current processed in collectCmovCandidates()
400 CmovInstructions.insert(Group.begin(), Group.end()); in checkForProfitableCmovCandidates()
540 if (UIs.begin() != UIs.end() && ++UIs.begin() == UIs.end()) { in checkForProfitableCmovCandidates()
576 for (auto I = std::next(ItrMI), E = BB->end(); I != E; ++I) { in checkEFLAGSLive()
583 // We hit the end of the block, check whether EFLAGS is live into a successor. in checkEFLAGSLive()
685 std::next(MachineBasicBlock::iterator(LastCMOV)), MBB->end()); in convertCmovInstsToBranches()
[all...]
/third_party/toybox/toys/pending/
H A Dmke2fs.c158 // uint32_t reserved[172]; // Padding to the end of the block
640 uint32_t start, itable, used, end; in mke2fs_main() local
643 // Where does this group end? in mke2fs_main()
644 end = TT.blockbits; in mke2fs_main()
645 if ((i+1)*TT.blockbits > TT.blocks) end = TT.blocks & (TT.blockbits-1); in mke2fs_main()
692 temp = end-used-temp; in mke2fs_main()
719 bits_set(toybuf, end, TT.blockbits-end); in mke2fs_main()
722 if (end-start > temp) temp = end in mke2fs_main()
[all...]
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dmod.rs80 /// range where the start is greater than the end.
147 /// range is invalid if the start is greater than the end.
244 the start must be <= the end" in fmt()
260 reached end of pattern prematurely" in fmt()
271 write!(f, "expected flag but got end of regex") in fmt()
291 the start must be <= the end" in fmt()
326 /// The end byte offset.
327 pub end: Position,
332 write!(f, "Span({:?}, {:?})", self.start, self.end) in fmt()
338 (&self.start, &self.end) in fmt()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dpmksa_cache_auth.c690 char *pos, *end; in pmksa_cache_auth_list_mesh() local
695 end = buf + len; in pmksa_cache_auth_list_mesh()
707 ret = os_snprintf(pos, end - pos, MACSTR " ", in pmksa_cache_auth_list_mesh()
709 if (os_snprintf_error(end - pos, ret)) in pmksa_cache_auth_list_mesh()
713 pos += wpa_snprintf_hex(pos, end - pos, entry->pmkid, in pmksa_cache_auth_list_mesh()
716 ret = os_snprintf(pos, end - pos, " "); in pmksa_cache_auth_list_mesh()
717 if (os_snprintf_error(end - pos, ret)) in pmksa_cache_auth_list_mesh()
721 pos += wpa_snprintf_hex(pos, end - pos, entry->pmk, in pmksa_cache_auth_list_mesh()
724 ret = os_snprintf(pos, end - pos, " %d\n", in pmksa_cache_auth_list_mesh()
726 if (os_snprintf_error(end in pmksa_cache_auth_list_mesh()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dpmksa_cache_auth.c684 char *pos, *end; in pmksa_cache_auth_list_mesh() local
689 end = buf + len; in pmksa_cache_auth_list_mesh()
701 ret = os_snprintf(pos, end - pos, MACSTR " ", in pmksa_cache_auth_list_mesh()
703 if (os_snprintf_error(end - pos, ret)) in pmksa_cache_auth_list_mesh()
707 pos += wpa_snprintf_hex(pos, end - pos, entry->pmkid, in pmksa_cache_auth_list_mesh()
710 ret = os_snprintf(pos, end - pos, " "); in pmksa_cache_auth_list_mesh()
711 if (os_snprintf_error(end - pos, ret)) in pmksa_cache_auth_list_mesh()
715 pos += wpa_snprintf_hex(pos, end - pos, entry->pmk, in pmksa_cache_auth_list_mesh()
718 ret = os_snprintf(pos, end - pos, " %d\n", in pmksa_cache_auth_list_mesh()
720 if (os_snprintf_error(end in pmksa_cache_auth_list_mesh()
[all...]
/third_party/jerryscript/tests/jerry/es2015/
H A Dregression-test-issue-2181.js20 var end = { valueOf : function ( ) { } };
22 arrayBuffer.slice(start, end);
/third_party/glslang/glslang/MachineIndependent/
H A DlinkValidate.cpp105 auto end = std::remove_if(unitLinkerObjects.begin(), unitLinkerObjects.end(), in mergeUniformObjects() local
108 unitLinkerObjects.resize(end - unitLinkerObjects.begin()); in mergeUniformObjects()
128 auto end = std::remove_if(linkerObjects.begin(), linkerObjects.end(), in checkStageIO() local
130 linkerObjects.resize(end - linkerObjects.begin()); in checkStageIO()
133 auto unitEnd = std::remove_if(unitLinkerObjects.begin(), unitLinkerObjects.end(), in checkStageIO()
155 callGraph.insert(callGraph.end(), unit.callGraph.begin(), unit.callGraph.end()); in mergeCallGraphs()
181 requestedExtensions.insert(unit.requestedExtensions.begin(), unit.requestedExtensions.end()); in mergeModes()
[all...]
/third_party/ffmpeg/libavformat/
H A Dvapoursynth.c356 goto end; in read_packet_vs()
364 goto end; in read_packet_vs()
371 goto end; in read_packet_vs()
380 goto end; in read_packet_vs()
388 goto end; in read_packet_vs()
422 goto end; in read_packet_vs()
439 goto end; in read_packet_vs()
453 end: in read_packet_vs()
/third_party/FreeBSD/stand/usb/
H A Dusb_busdma_loader.c42 UINTPTR end = (UINTPTR)addr + size; in usb_dma_cache_invalid() local
44 end = ALIGN(end, USB_CACHE_ALIGN_SIZE); in usb_dma_cache_invalid()
45 DCacheInvRange(start, end); in usb_dma_cache_invalid()
52 UINTPTR end = (UINTPTR)addr + size; in usb_dma_cache_flush() local
54 end = ALIGN(end, USB_CACHE_ALIGN_SIZE); in usb_dma_cache_flush()
55 DCacheFlushRange(start, end); in usb_dma_cache_flush()
/third_party/libunwind/libunwind/doc/
H A Dunw_get_proc_info.tex9 \end{Name}
30 \item[\Type{unw\_word\_t} \Var{end\_ip}] The address of the first
31 instruction \emph{beyond} the end of the procedure. If this address
33 the \Var{end\_ip} member is cleared to 0. \\
75 \end{description}
79 extent of a procedure with the \Var{start\_ip} and \Var{end\_ip}
104 \end{Description}
123 \end{document}
/third_party/mbedtls/library/
H A Dx509_create.c144 const char *end = s + len; in parse_attribute_value_string() local
148 for (c = s; c < end; c++) { in parse_attribute_value_string()
153 if (c + 1 < end && (n = hexpair_to_int(c)) != -1) { in parse_attribute_value_string()
159 } else if (c < end && strchr(" ,=+<>#;\"\\", *c)) { in parse_attribute_value_string()
286 const char *end = s + strlen(s); in mbedtls_x509_string_to_names() local
298 while (c <= end) { in mbedtls_x509_string_to_names()
317 if (!in_attr_type && ((*c == ',' && *(c-1) != '\\') || c == end)) { in mbedtls_x509_string_to_names()
359 while (c < end && *(c + 1) == ' ') { in mbedtls_x509_string_to_names()
/third_party/json/include/nlohmann/detail/input/
H A Dinput_adapters.hpp14 #include <iterator> // begin, end, iterator_traits, random_access_iterator_tag, distance, next
117 // end up as the same value, e.g. 0xFFFFFFFF.
145 : current(std::move(first)), end(std::move(last)) in iterator_input_adapter()
150 if (JSON_HEDLEY_LIKELY(current != end)) in get_character()
162 IteratorType end; member in detail::iterator_input_adapter
169 return current == end; in empty()
389 // Enables ADL on begin(container) and end(container)
396 using std::end;
403 void_t<decltype(begin(std::declval<ContainerType>()), end(std::declval<ContainerType>()))>>
405 using adapter_type = decltype(input_adapter(begin(std::declval<ContainerType>()), end(st
[all...]
/third_party/mesa3d/src/amd/compiler/
H A Daco_lower_phis.cpp97 if (std::all_of(ops.begin() + 1, ops.end(), [&](Operand same) { return same == ops[0]; })) in get_ssa()
131 block->instructions.insert(std::prev(block->instructions.end()), std::move(instr)); in insert_before_logical_end()
198 std::fill(state->any_pred_defined.begin(), state->any_pred_defined.end(), pred_defined::undef); in init_any_pred_defined()
210 unsigned end = block->index; in init_any_pred_defined() local
221 /* for loop header phis, end at the loop exit */ in init_any_pred_defined()
223 while (program->blocks[end].loop_nest_depth >= state->loop_nest_depth) in init_any_pred_defined()
224 end++; in init_any_pred_defined()
241 for (unsigned j = start; j < end; j++) { in init_any_pred_defined()
278 std::fill(state->visited.begin(), state->visited.end(), false); in lower_divergent_bool_phi()
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/
H A Dradeonsi-run-tests.py40 print(prefix, end="")
41 print("\033[0;31m{}\033[0m".format(txt), end="\n" if end_line else " ")
46 print(prefix, end="")
47 print("\033[1;33m{}\033[0m".format(txt), end="\n" if end_line else " ")
52 print(prefix, end="")
53 print("\033[1;32m{}\033[0m".format(txt), end="\n" if end_line else " ")
305 end = datetime.now()
311 "Completed in {} seconds".format(int((end - start).total_seconds())),
/third_party/node/lib/internal/assert/
H A Dassertion_error.js83 let end = '';
147 end = `\n ${a}${end}`;
179 // There were at least five identical lines at the end. Mark a couple of
182 end = `\n${colors.blue}...${colors.white}${end}`;
186 end = `\n ${other}${end}`;
248 // add a comma at the end of the actual line. Otherwise the output could
252 // 1 // No comma at the end!
[all...]
/third_party/node/test/cctest/
H A Dtest_util.cc33 EXPECT_NE(list.end(), it); in TEST()
36 EXPECT_FALSE(it != list.end()); // Iterator only implements != operator. in TEST()
44 EXPECT_NE(list.end(), it); in TEST()
47 EXPECT_NE(list.end(), it); in TEST()
50 EXPECT_FALSE(it != list.end()); // Iterator only implements != operator. in TEST()
59 EXPECT_NE(list.end(), it); in TEST()
62 EXPECT_FALSE(it != list.end()); // Iterator only implements != operator. in TEST()
68 EXPECT_FALSE(list.begin() != list.end()); in TEST()
/third_party/node/deps/npm/node_modules/eastasianwidth/
H A Deastasianwidth.js285 eaw.slice = function(text, start, end) {
288 end = end ? end : 1;
292 if (end < 0) {
293 end = textLen + end;
302 if (eawLen + charLen <= end) {
/third_party/icu/icu4c/source/tools/gendict/
H A Dgendict.cpp179 char *end; in setTransform() local
180 unsigned long base = uprv_strtoul(t + 7, &end, 16); in setTransform()
181 if (end == (t + 7) || *end != 0 || base > 0x10FF80) { in setTransform()
367 char *end; in main()
368 unsigned long value = uprv_strtoul(s, &end, 0); in main()
369 if (end == s || *end != 0 || (int32_t)uprv_strlen(s) != valueLength || value > 0xffffffff) { in main()
/third_party/node/deps/v8/src/base/platform/
H A Dplatform.h265 uintptr_t end) in SharedLibraryAddress()
266 : library_path(library_path), start(start), end(end), aslr_slide(0) {} in SharedLibraryAddress()
268 uintptr_t end, intptr_t aslr_slide) in SharedLibraryAddress()
271 end(end), in SharedLibraryAddress()
276 uintptr_t end; member
306 uintptr_t end = 0; member
/third_party/node/deps/v8/src/ast/
H A Dast-source-ranges.h15 // {end} is 0-based and exclusive.
18 SourceRange(int start, int end) : start(start), end(end) {} in SourceRange()
25 int end = kNoSourcePosition) { in ContinuationOf()
26 return that.IsEmpty() ? Empty() : SourceRange(that.end, end); in ContinuationOf()
40 int32_t start, end; member
44 // macro is not undefined at the end of this file.
395 if (it == map_.end()) retur
[all...]
/third_party/node/deps/v8/src/heap/
H A Dnew-spaces.h86 // Returns one past the end address of the current page of the space.
156 iterator end() { return iterator(nullptr); } in end() function in v8::internal::SemiSpace
159 const_iterator end() const { return const_iterator(nullptr); } in end() function in v8::internal::SemiSpace
178 void AddRangeToActiveSystemPages(Address start, Address end);
228 void Initialize(Address start, Address end);
232 // The end of iteration.
462 iterator end() { return to_space_.end(); } in end() function in v8::internal::final
465 const_iterator end() const { return to_space_.end(); } in end() function in v8::internal::final
[all...]
H A Dspaces.h89 // section is denoted by the top field in the space. The end of the section
304 V8_EXPORT_PRIVATE void CreateBlackArea(Address start, Address end);
305 V8_EXPORT_PRIVATE void CreateBlackAreaBackground(Address start, Address end);
306 void DestroyBlackArea(Address start, Address end);
307 void DestroyBlackAreaBackground(Address start, Address end);
379 PageRange(Page* begin, Page* end) : begin_(begin), end_(end) {} in PageRange() argument
384 iterator end() { return iterator(end_); } in end() function in v8::internal::PageRange
504 // area bounded by [start, end), this function computes the limit to use to
507 Address ComputeLimit(Address start, Address end, size_
[all...]

Completed in 22 milliseconds

1...<<81828384858687888990>>...436