Searched refs:pos (Results 126 - 150 of 1020) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DSectionLoadHistory.cpp74 StopIDToSectionLoadList::iterator pos = m_stop_id_to_section_load_list.lower_bound(stop_id); local
75 if (pos != m_stop_id_to_section_load_list.end() && pos->first == stop_id)
76 return pos->second.get();
77 else if (pos != m_stop_id_to_section_load_list.begin())
79 --pos;
80 return pos->second.get();
92 StopIDToSectionLoadList::iterator pos = m_stop_id_to_section_load_list.lower_bound(stop_id); local
93 if (pos != m_stop_id_to_section_load_list.end() && pos
173 StopIDToSectionLoadList::iterator pos, end = m_stop_id_to_section_load_list.end(); local
[all...]
H A DTargetList.cpp343 collection::iterator pos, end = m_target_list.end(); local
345 for (pos = m_target_list.begin(); pos != end; ++pos)
347 if (pos->get() == target_sp.get())
349 m_target_list.erase(pos);
368 collection::const_iterator pos, end = m_target_list.end(); local
369 for (pos = m_target_list.begin(); pos != end; ++pos)
395 collection::const_iterator pos, end = m_target_list.end(); local
416 collection::const_iterator pos, end = m_target_list.end(); local
436 collection::const_iterator pos, end = m_target_list.end(); local
486 collection::iterator pos, end = m_target_list.end(); local
554 collection::const_iterator pos, local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp43 collection::iterator pos, end = m_values.end(); local
47 for (pos = m_values.begin(); pos != end; ++pos)
49 OptionValue *option_value = pos->second.get();
51 strm.Indent(pos->first.GetCString());
89 collection::const_iterator pos, end = m_values.end(); local
90 for (pos = m_values.begin(); pos != end; ++pos)
348 collection::const_iterator pos = m_values.find (key); local
357 collection::const_iterator pos = m_values.find (key); local
373 collection::const_iterator pos = m_values.find (key); local
400 collection::const_iterator pos = m_values.find (key); local
413 collection::iterator pos = m_values.find (key); local
427 collection::const_iterator pos, end = m_values.end(); local
[all...]
/freebsd-10.1-release/contrib/wpa/src/eap_common/
H A Deap_gpsk_common.c115 u8 mk[32], *pos, *data; local
143 pos = data;
144 WPA_PUT_BE16(pos, psk_len);
145 pos += 2;
146 os_memcpy(pos, psk, psk_len);
147 pos += psk_len;
148 WPA_PUT_BE32(pos, EAP_GPSK_VENDOR_IETF); /* CSuite/Vendor = IETF */
149 pos += 4;
150 WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/Specifier */
151 pos
286 u8 *seed, *pos; local
[all...]
H A Deap_common.c70 const u8 *pos; local
78 pos = (const u8 *) (hdr + 1);
80 if (*pos == EAP_TYPE_EXPANDED) {
88 pos++;
89 exp_vendor = WPA_GET_BE24(pos);
90 pos += 3;
91 exp_type = WPA_GET_BE32(pos);
92 pos += 4;
100 return pos;
102 if (vendor != EAP_VENDOR_IETF || *pos !
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp85 collection::iterator pos = GetIDIterator(break_id); // Predicate local
86 if (pos != m_bp_site_list.end())
88 m_bp_site_list.erase(pos);
98 collection::iterator pos = m_bp_site_list.find(address); local
99 if (pos != m_bp_site_list.end())
101 m_bp_site_list.erase(pos);
145 collection::iterator pos = GetIDIterator(break_id); local
146 if (pos != m_bp_site_list.end())
147 stop_sp = pos->second;
157 collection::const_iterator pos local
179 collection::const_iterator pos = GetIDConstIterator(bp_site_id); local
193 collection::const_iterator pos; local
215 collection::const_iterator lower, upper, pos; local
[all...]
/freebsd-10.1-release/contrib/wpa/src/ap/
H A Dbeacon.c96 static u8 * hostapd_eid_country_add(u8 *pos, u8 *end, int chan_spacing, argument
100 if (end - pos < 3)
101 return pos;
104 *pos++ = start->chan;
106 *pos++ = (prev->chan - start->chan) / chan_spacing + 1;
108 *pos++ = start->max_tx_power;
110 return pos;
117 u8 *pos = eid; local
128 *pos++ = WLAN_EID_COUNTRY;
129 pos
196 u8 *pos, *epos; local
324 const u8 *pos, *end; local
563 u8 *pos, *tailpos; local
[all...]
/freebsd-10.1-release/contrib/less/
H A Dbrac.c35 POSITION pos; local
45 pos = position((forwdir) ? TOP : BOTTOM);
46 if (pos == NULL_POSITION || ch_seek(pos))
H A Dsearch.c221 POSITION pos; local
245 pos = position(slinenum);
246 if (pos == NULL_POSITION)
249 (void) forw_line(pos);
266 POSITION pos; local
286 pos = position(slinenum);
287 if (pos == NULL_POSITION)
290 if (pos < old_end_attnpos &&
293 (void) forw_line(pos);
357 is_hilited_range(pos, epo
643 POSITION pos; local
957 POSITION pos; local
[all...]
/freebsd-10.1-release/contrib/xz/src/liblzma/delta/
H A Ddelta_private.h26 uint8_t pos; member in struct:lzma_coder_s
/freebsd-10.1-release/sys/dev/ep/
H A Dif_ep_mca.c78 #define EP_MCA_IOPORT(pos) ((((uint32_t)pos & EP_MCA_IOPORT_MASK) \
83 #define EP_MCA_IRQ(pos) (pos & EP_MCA_IRQ_MASK)
87 #define EP_MCA_MEDIA(pos) (pos & EP_MCA_MEDIA_MASK)
95 uint8_t pos; local
102 pos = mca_pos_read(dev, EP_MCA_IOPORT_POS);
103 iobase = EP_MCA_IOPORT(pos);
105 pos
[all...]
/freebsd-10.1-release/sys/dev/hpt27xx/
H A Dlist.h118 #define list_for_each(pos, head) \
119 for (pos = (head)->next; pos != (head); pos = pos->next)
121 #define list_for_each_safe(pos, n, head) \
122 for (pos = (head)->next, n = pos->next; pos != (head); \
123 pos
[all...]
/freebsd-10.1-release/sys/dev/hptnr/
H A Dlist.h117 #define list_for_each(pos, head) \
118 for (pos = (head)->next; pos != (head); pos = pos->next)
120 #define list_for_each_safe(pos, n, head) \
121 for (pos = (head)->next, n = pos->next; pos != (head); \
122 pos
[all...]
/freebsd-10.1-release/sys/dev/hptrr/
H A Dlist.h120 #define list_for_each(pos, head) \
121 for (pos = (head)->next; pos != (head); pos = pos->next)
123 #define list_for_each_safe(pos, n, head) \
124 for (pos = (head)->next, n = pos->next; pos != (head); \
125 pos
[all...]
/freebsd-10.1-release/contrib/mdocml/
H A Dmdoc_argv.c281 struct mdoc_arg **v, int *pos, char *buf)
288 if ('\0' == buf[*pos])
292 else if ('-' != buf[*pos])
297 p = &buf[++(*pos)];
299 assert(*pos > 0);
301 for ( ; buf[*pos] ; (*pos)++)
302 if (' ' == buf[*pos] && '\\' != buf[*pos - 1])
312 if ('\0' != (sv = buf[*pos]))
280 mdoc_argv(struct mdoc *m, int line, enum mdoct tok, struct mdoc_arg **v, int *pos, char *buf) argument
416 mdoc_zargs(struct mdoc *m, int line, int *pos, char *buf, char **v) argument
423 mdoc_args(struct mdoc *m, int line, int *pos, char *buf, enum mdoct tok, char **v) argument
452 args(struct mdoc *m, int line, int *pos, char *buf, enum argsflag fl, char **v) argument
646 argv_multi(struct mdoc *m, int line, struct mdoc_argv *v, int *pos, char *buf) argument
672 argv_opt_single(struct mdoc *m, int line, struct mdoc_argv *v, int *pos, char *buf) argument
695 argv_single(struct mdoc *m, int line, struct mdoc_argv *v, int *pos, char *buf) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Utility/
H A DSharingPtr.cpp98 PtrToBacktraceMap::iterator pos, end = g_map.end(); local
99 for (pos = g_map.begin(); pos != end; ++pos)
101 if (ptr == NULL || pos->second.first == ptr)
104 printf ("\nsp(%p): %p\n", pos->first, pos->second.first);
105 pos->second.second.Dump();
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_delta/
H A Dxdelta.c108 apr_uint32_t pos; /* NO_POSITION -> block is not used */
119 block).pos. */
123 /* The vector of blocks. A pos value of NO_POSITION represents an unused
143 add_block(struct blocks *blocks, apr_uint32_t adlersum, apr_uint32_t pos)
148 for (; blocks->slots[h].pos != NO_POSITION; h = (h + 1) & blocks->max)
150 if (memcmp(blocks->data + blocks->slots[h].pos, blocks->data + pos,
155 blocks->slots[h].pos = pos;
168 for (; blocks->slots[h].pos !
107 apr_uint32_t pos; /* NO_POSITION -> block is not used */ member in struct:block
142 add_block(struct blocks *blocks, apr_uint32_t adlersum, apr_uint32_t pos) argument
232 apr_size_t pos = 0; local
263 apr_size_t pos = 0; local
[all...]
/freebsd-10.1-release/contrib/dtc/
H A Dsrcpos.h105 extern void srcpos_update(struct srcpos *pos, const char *text, int len);
106 extern struct srcpos *srcpos_copy(struct srcpos *pos);
107 extern char *srcpos_string(struct srcpos *pos);
108 extern void srcpos_dump(struct srcpos *pos);
110 extern void srcpos_verror(struct srcpos *pos, const char *prefix,
113 extern void srcpos_error(struct srcpos *pos, const char *prefix,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugArangeSet.cpp109 DescriptorIter pos = lower_bound(m_arange_descriptors.begin(), end, range, DescriptorLessThan); local
111 if (pos != end)
113 const dw_addr_t found_end_addr = pos->end_address();
114 if (range.address < pos->address)
116 if (range_end_addr < pos->address)
119 m_arange_descriptors.insert(pos, range);
121 else if (range_end_addr == pos->address)
124 // pointed to by 'pos'. We can combine range with the
127 pos->address = range.address;
128 pos
243 DescriptorConstIter pos; local
268 DescriptorConstIter pos = std::find_if( m_arange_descriptors.begin(), end, // Range local
[all...]
/freebsd-10.1-release/contrib/wpa/wpa_supplicant/
H A Dinterworking.c290 static const u8 * nai_realm_parse_eap(struct nai_realm_eap *e, const u8 *pos, argument
296 if (pos + 3 > end) {
301 elen = *pos++;
302 if (pos + elen > end || elen < 2) {
306 e_end = pos + elen;
307 e->method = *pos++;
308 auth_count = *pos++;
315 if (pos + 2 > end || pos + 2 + pos[
382 nai_realm_parse_realm(struct nai_realm *r, const u8 *pos, const u8 *end) argument
448 const u8 *pos, *end; local
486 char *tmp, *pos, *end; local
608 const u8 *pos, *end; local
672 char *end, *pos; local
893 const u8 *pos, *end; local
935 const u8 *pos, *end; local
1042 const char *pos; local
1469 const u8 *pos, *end; local
1830 const u8 *pos = data; local
1963 const u8 *pos; local
[all...]
/freebsd-10.1-release/lib/libvgl/
H A Dtext.c125 int pos; local
127 for (pos=0; pos<strlen(str); pos++) {
130 VGLBitmapPutChar(Object, x+(pos*VGLTextFont->Width), y,
131 str[pos], fgcol, bgcol, fill, dir);
134 VGLBitmapPutChar(Object, x, y-(pos*VGLTextFont->Width),
135 str[pos], fgcol, bgcol, fill, dir);
138 VGLBitmapPutChar(Object, x-(pos*VGLTextFont->Width), y,
139 str[pos], fgco
[all...]
/freebsd-10.1-release/contrib/wpa/src/utils/
H A Dpcsc_funcs.c261 unsigned char *pos, *end; local
268 pos = buf;
269 end = pos + buf_len;
270 if (*pos != USIM_FSP_TEMPL_TAG) {
275 pos++;
276 if (pos >= end)
278 if ((pos + pos[0]) < end)
279 end = pos + 1 + pos[
501 unsigned long len, pos; local
1094 char *pos; local
1330 unsigned char resp[3], buf[64], *pos, *end; local
[all...]
/freebsd-10.1-release/contrib/ncurses/form/
H A Dfrm_data.c145 int pos; local
154 pos = form->begincol + field->cols;
155 while (pos < field->dcols)
157 check_len = field->dcols - pos;
161 wmove(form->w, 0, pos);
163 pos += field->cols;
173 pos = form->toprow + field->rows;
174 while (pos < field->drows)
177 wmove(form->w, pos, 0);
178 pos
[all...]
/freebsd-10.1-release/contrib/wpa/src/eap_peer/
H A Deap_mschapv2.c245 const u8 *pos, *challenge; local
258 pos = (const u8 *) (req + 1);
259 challenge_len = *pos++;
281 challenge = pos;
282 pos += challenge_len;
285 pos, len);
346 const u8 *pos; local
351 pos = (const u8 *) (req + 1);
353 mschapv2_verify_auth_response(data->auth_response, pos, len)) {
360 pos
398 char *pos, *msg = ""; local
761 const u8 *pos; local
[all...]
H A Deap_wsc.c65 const char *pos, *end; local
70 pos = os_strstr(params, "new_ssid=");
71 if (pos == NULL)
73 pos += 9;
74 end = os_strchr(pos, ' ');
76 len = os_strlen(pos);
78 len = end - pos;
80 hexstr2bin(pos, cred->ssid, len / 2))
84 pos = os_strstr(params, "new_auth=");
85 if (pos
135 const char *pos; local
401 const u8 *start, *pos, *end; local
[all...]

Completed in 291 milliseconds

1234567891011>>