Searched refs:end (Results 126 - 150 of 2987) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DValueSymbolTable.h95 /// @brief Get an iterator to the end of the symbol table.
96 inline iterator end() { return vmap.end(); } function in class:llvm::ValueSymbolTable
98 /// @brief Get a const_iterator to the end of the symbol table.
99 inline const_iterator end() const { return vmap.end(); } function in class:llvm::ValueSymbolTable
/freebsd-10.0-release/contrib/wpa/src/wps/
H A Dupnp_xml.h20 const char **out_tagname, const char **end);
/freebsd-10.0-release/lib/libc/locale/
H A Dwcstod.c56 char *buf, *end; local
70 * We could attempt to find the end of the numeric portion of the
89 val = strtod_l(buf, &end, locale);
99 *endptr = (wchar_t *)nptr + (end - buf);
100 if (buf != end)
H A Dwcstold.c50 char *buf, *end; local
73 val = strtold_l(buf, &end, locale);
77 *endptr = (wchar_t *)nptr + (end - buf);
78 if (buf != end)
/freebsd-10.0-release/lib/libutil/
H A Dtrimdomain.c59 char *end, *s; local
77 end = s + hostsize + 1;
78 if ((s = memchr(s, '.', (size_t)(end - s))) != NULL) {
85 (len = strlen(s + dlen + 1)) < (size_t)(end - s)) {
/freebsd-10.0-release/sys/ia64/isa/
H A Disa.c86 u_long start, u_long end, u_long count, u_int flags)
92 int isdefault = (start == 0UL && end == ~0UL);
122 resource_list_add(rl, type, *rid, start, end, count);
127 start, end, count, flags);
85 isa_alloc_resource(device_t bus, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags) argument
/freebsd-10.0-release/sys/libkern/
H A Dmemcchr.c61 const unsigned char *p, *end; local
82 end = (const unsigned char *)begin + n;
88 for (; (const unsigned char *)lp < end; lp++) {
108 * If the end of the buffer is not word aligned, the previous
109 * loops may obtain an address that's beyond the end of the
112 if (p < end)
/freebsd-10.0-release/sys/sys/
H A Dhash.h89 hash32_stre(const void *buf, int end, const char **ep, uint32_t hash) argument
93 while (*p && (*p != end))
108 hash32_strne(const void *buf, size_t len, int end, const char **ep, argument
113 while (*p && (*p != end) && len--)
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DASTDumper.cpp108 char *end = NULL; local
110 end = strchr(str, '\n');
112 while (end)
114 *end = '\0';
118 *end = '\n';
120 str = end + 1;
121 end = strchr(str, '\n');
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DUnwindTable.cpp80 iterator end = m_unwinds.end (); local
81 iterator insert_pos = end;
86 if ((pos == m_unwinds.end ()) || (pos != m_unwinds.begin() && pos->second->GetFunctionStartAddress() != addr))
140 const_iterator end = m_unwinds.end(); local
141 for (const_iterator pos = begin; pos != end; ++pos)
/freebsd-10.0-release/contrib/texinfo/makeinfo/
H A Dlang.h139 cm_dotless (int arg, int start, int end);
141 extern void cm_accent_umlaut (int arg, int start, int end),
142 cm_accent_acute (int arg, int start, int end),
143 cm_accent_cedilla (int arg, int start, int end),
144 cm_accent_hat (int arg, int start, int end),
145 cm_accent_grave (int arg, int start, int end),
146 cm_accent_tilde (int arg, int start, int end);
/freebsd-10.0-release/contrib/gcclibs/libcpp/
H A Dmakeucnid.c76 unsigned long start, end; local
83 end = start;
86 end = strtoul (l + 1, &endptr, 16);
87 if (end < start)
88 fail ("parsing ucnid.tab, end before start");
95 if (end > 0xFFFF)
96 fail ("parsing ucnid.tab, end too large");
97 while (start <= end)
198 unsigned long start, end; local
216 end
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DSparseSet.h170 const_iterator end() const { return Dense.end(); } function in class:llvm::SparseSet
172 iterator end() { return Dense.end(); } function in class:llvm::SparseSet
197 /// @returns An iterator to the element identified by key, or end().
214 return end();
220 /// @returns An iterator to the element identified by key, or end().
233 return find(Key) != end();
249 if (I != end())
253 return std::make_pair(end()
[all...]
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp35 LiveInterval::iterator RegEnd = VirtReg.end();
39 SegPos.insert(RegPos->start, RegPos->end, &VirtReg);
45 // We have reached the end of Segments, so it is no longer necessary to search
47 // It is faster to insert the end first.
49 SegPos.insert(RegEnd->start, RegEnd->end, &VirtReg);
51 SegPos.insert(RegPos->start, RegPos->end, &VirtReg);
62 LiveInterval::iterator RegEnd = VirtReg.end();
105 std::find(InterferingVRegs.begin(), InterferingVRegs.end(), VirtReg);
106 return I != InterferingVRegs.end();
140 LiveInterval::iterator VirtRegEnd = VirtReg->end();
[all...]
/freebsd-10.0-release/contrib/wpa/src/tls/
H A Dasn1.c16 const u8 *pos, *end; local
21 end = buf + len;
30 if (pos >= end) {
57 if (pos >= end) {
69 if (end < pos || hdr->length > (unsigned int) (end - pos)) {
81 const u8 *pos, *end; local
88 end = buf + len;
90 while (pos < end) {
94 if (pos >= end)
[all...]
H A Dtlsv1_cred.c59 * the chain - add the new certificate to the end.
105 const u8 *pos, *end; local
121 end = search_tag(pem_cert_end, pos, buf + len - pos);
122 if (end == NULL) {
124 "certificate end tag (%s)", pem_cert_end);
128 der = base64_decode(pos, end - pos, &der_len);
144 end += os_strlen(pem_cert_end);
145 pos = search_tag(pem_cert_begin, end, buf + len - end);
226 const u8 *pos, *end; local
267 const u8 *pos, *end; local
356 const u8 *pos, *end; local
433 const u8 *pos, *end; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTUnresolvedSet.h39 iterator end() { return iterator(Decls.end()); } function in class:clang::ASTUnresolvedSet
42 const_iterator end() const { return const_iterator(Decls.end()); } function in class:clang::ASTUnresolvedSet
52 for (DeclsTy::iterator I = Decls.begin(), E = Decls.end(); I != E; ++I) {
/freebsd-10.0-release/crypto/openssl/apps/
H A Dpkeyparam.c85 goto end;
152 goto end;
164 goto end;
183 goto end;
194 end:
H A Dsess_id.c161 goto end;
166 if (x == NULL) { goto end; }
175 goto end;
207 goto end;
225 goto end;
251 goto end;
255 goto end;
266 goto end;
270 goto end;
274 end
[all...]
H A Dx509.c222 goto end;
238 if (ctx == NULL) goto end;
496 goto end;
511 goto end;
517 goto end;
525 goto end;
543 goto end;
562 goto end;
575 goto end;
581 goto end;
[all...]
H A Ddhparam.c173 goto end;
264 goto end;
282 goto end;
316 goto end;
324 goto end;
336 goto end;
347 goto end;
356 goto end;
363 goto end;
380 goto end;
[all...]
/freebsd-10.0-release/sys/sparc64/pci/
H A Dapb.c147 apb_checkrange(uint8_t map, u_long scale, u_long start, u_long end) argument
152 ei = end / scale;
236 u_long start, u_long end, u_long count, u_int flags)
247 if (start == 0 && end == ~0) {
260 if (!apb_checkrange(sc->sc_iomap, APB_IO_SCALE, start, end)) {
263 device_get_nameunit(child), start, end);
269 device_get_nameunit(child), start, end);
273 end)) {
276 device_get_nameunit(child), start, end);
282 device_get_nameunit(child), start, end);
235 apb_alloc_resource(device_t dev, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags) argument
295 apb_adjust_resource(device_t dev, device_t child, int type, struct resource *r, u_long start, u_long end) argument
[all...]
/freebsd-10.0-release/usr.bin/hexdump/
H A Dodsyntax.c67 char **argv, *end; local
137 skip = strtoll(optarg, &end, 0);
138 if (*end == 'b')
140 else if (*end == 'k')
142 else if (*end == 'm')
144 if (errno != 0 || skip < 0 || strlen(end) > 1)
192 char *p, *num, *end; local
245 skip = strtoll(num, &end, base ? base : 8);
247 /* if end isn't the same as p, we got a non-octal digit */
248 if (end !
314 char *end, *hdfmt; local
370 char *end, *hdfmt; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DBroadcaster.cpp65 collection::iterator pos, end = m_listeners.end(); local
66 for (pos = m_listeners.begin(); pos != end; ++pos)
83 event_names_map::const_iterator end = m_event_names.end(); local
89 if (pos != end)
121 collection::iterator pos, end = m_listeners.end(); local
123 collection::iterator existing_pos = end;
126 for (pos = m_listeners.begin(); pos != end;
187 collection::iterator pos, end = m_listeners.end(); local
260 collection::iterator pos, end = m_listeners.end(); local
[all...]
H A DPluginManager.cpp70 return plugin_map.find (plugin_file_spec) != plugin_map.end();
78 assert (plugin_map.find (plugin_file_spec) == plugin_map.end());
208 PluginTerminateMap::const_iterator pos, end = plugin_map.end(); local
209 for (pos = plugin_map.begin(); pos != end; ++pos)
288 ABIInstances::iterator pos, end = instances.end(); local
289 for (pos = instances.begin(); pos != end; ++ pos)
319 ABIInstances::iterator pos, end = instances.end(); local
394 DisassemblerInstances::iterator pos, end = instances.end(); local
425 DisassemblerInstances::iterator pos, end = instances.end(); local
506 DynamicLoaderInstances::iterator pos, end = instances.end(); local
537 DynamicLoaderInstances::iterator pos, end = instances.end(); local
611 EmulateInstructionInstances::iterator pos, end = instances.end(); local
642 EmulateInstructionInstances::iterator pos, end = instances.end(); local
711 OperatingSystemInstances::iterator pos, end = instances.end(); local
742 OperatingSystemInstances::iterator pos, end = instances.end(); local
816 LanguageRuntimeInstances::iterator pos, end = instances.end(); local
847 LanguageRuntimeInstances::iterator pos, end = instances.end(); local
925 ObjectFileInstances::iterator pos, end = instances.end(); local
977 ObjectFileInstances::iterator pos, end = instances.end(); local
996 ObjectFileInstances::iterator pos, end = instances.end(); local
1072 ObjectContainerInstances::iterator pos, end = instances.end(); local
1103 ObjectContainerInstances::iterator pos, end = instances.end(); local
1187 LogInstances::iterator pos, end = instances.end(); local
1229 LogInstances::iterator pos, end = instances.end(); local
1326 PlatformInstances::iterator pos, end = instances.end(); local
1357 PlatformInstances::iterator pos, end = instances.end(); local
1376 PlatformInstances::iterator pos, end = instances.end(); local
1470 ProcessInstances::iterator pos, end = instances.end(); local
1502 ProcessInstances::iterator pos, end = instances.end(); local
1575 SymbolFileInstances::iterator pos, end = instances.end(); local
1606 SymbolFileInstances::iterator pos, end = instances.end(); local
1680 SymbolVendorInstances::iterator pos, end = instances.end(); local
1712 SymbolVendorInstances::iterator pos, end = instances.end(); local
1785 UnwindAssemblyInstances::iterator pos, end = instances.end(); local
1817 UnwindAssemblyInstances::iterator pos, end = instances.end(); local
1835 DynamicLoaderInstances::iterator pos, end = instances.end(); local
1848 PlatformInstances::iterator pos, end = instances.end(); local
1861 ProcessInstances::iterator pos, end = instances.end(); local
[all...]

Completed in 639 milliseconds

1234567891011>>