Searched refs:pos (Results 151 - 175 of 1576) sorted by relevance

1234567891011>>

/macosx-10.10.1/ntfs-84/kext/
H A Dntfs_bitmap.c77 unsigned pos, len; local
107 /* Set @pos to the position of the byte containing @start_bit. */
108 pos = (start_bit >> 3) & PAGE_MASK;
113 u8 *byte = kaddr + pos;
124 /* Update @pos to the new position. */
125 pos++;
131 len = PAGE_SIZE - pos;
135 memset(kaddr + pos, value ? 0xff : 0, len);
139 len += pos;
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/gp_hash_table_map_/
H A Dinsert_store_hash_fn_imps.hpp65 const size_type pos = ranged_probe_fn_base::operator()(r_key, pos_hash_pair.second, i); local
67 entry* const p_e = m_entries + pos;
76 std::make_pair(pos, pos_hash_pair.second) :
82 ins_pos = pos;
90 return std::make_pair(pos, pos_hash_pair.second);
H A Dresize_fn_imps.hpp135 for (size_type pos = 0; pos < old_size; ++pos)
136 if (m_entries[pos].m_stat == valid_entry_status)
137 resize_imp_reassign(m_entries + pos, a_entries_resized,
/macosx-10.10.1/Libc-1044.1.2/regex/TRE/lib/
H A Dtre-match-parallel.c80 int pos; member in struct:__anon2819
118 int pos = -1; local
209 reach_pos[i].pos = -1;
323 pos = str_byte - orig_str;
324 if (len < 0 || pos < len)
337 pos = (str_byte - 1) - orig_str;
345 pos = 0;
366 pos += str_byte - orig_str;
371 while (pos <= len && !chars[next_c])
375 pos
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DLDAPUrl.cpp167 std::string::size_type pos = m_urlString.find(':'); local
168 std::string::size_type startpos = pos;
169 if (pos == std::string::npos) {
173 std::string scheme = m_urlString.substr(0, pos);
189 if ( m_urlString[pos+1] != '/' || m_urlString[pos+2] != '/' ) {
192 startpos = pos + 3;
199 pos = m_urlString.find('/', startpos);
212 if ( hostend == std::string::npos || portstart > pos ) {
213 hostend = pos;
298 std::string::size_type pos = 0; local
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/cms/
H A Dcms_lib.c90 ASN1_OCTET_STRING **pos = CMS_get0_content(cms); local
91 if (!pos)
94 if (!*pos)
98 if (!*pos || ((*pos)->flags == ASN1_STRING_FLAG_CONT))
101 return BIO_new_mem_buf((*pos)->data, (*pos)->length);
159 ASN1_OCTET_STRING **pos = CMS_get0_content(cms); local
160 if (!pos)
163 if (*pos
305 ASN1_OCTET_STRING **pos; local
316 ASN1_OCTET_STRING **pos; local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DPath.cpp259 signed pos = static_cast<signed>(path.size()) - 1; local
261 while (pos >= 0 && path[pos] == Sep[0])
262 --pos;
264 if (pos < 0)
270 while (i < pos && path[i] != Sep[0])
273 if (i == pos) // No slashes? Return "."
277 while (pos >= 0 && path[pos] != Sep[0])
278 --pos;
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/grammar_me/
H A Dme_tcl.tcl93 proc ::grammar::me::tcl::lc {pos} {
95 return [lrange [lindex $tc $pos] 2 3]
347 proc ::grammar::me::tcl::ier_nonterminal {msg pos} {
354 incr pos
355 if {$l == $pos} {
404 proc ::grammar::me::tcl::isv_nonterminal_leaf {nt pos} {
413 incr pos
414 set sv [list $nt $pos $loc]
419 proc ::grammar::me::tcl::isv_nonterminal_range {nt pos} {
425 # TerminalString $pos
[all...]
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dzle.h90 #define CCLEFTPOS(pos) alignmultiwordleft(&pos, 1)
91 #define CCRIGHTPOS(pos) alignmultiwordright(&pos, 1)
101 #define INCPOS(pos) incpos(&pos)
102 #define DECPOS(pos) decpos(&pos)
166 #define CCLEFTPOS(pos)
167 #define CCRIGHTPOS(pos)
336 int pos; /* original position */ member in struct:brinfo
[all...]
H A Dzle_move.c49 alignmultiwordleft(int *pos, int setpos) argument
51 int loccs = *pos;
68 *pos = loccs;
89 alignmultiwordright(int *pos, int setpos) argument
96 if (!alignmultiwordleft(pos, 0))
100 loccs = *pos + 1;
106 *pos = loccs;
113 *pos = loccs;
143 incpos(int *pos) argument
145 (*pos)
152 decpos(int *pos) argument
310 int pos; local
370 int pos; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dcbiapts.c145 int32_t start,pos,end,to; local
242 pos=ubrk_next(word);
243 if(pos!=4)
245 log_verbose("next (word = %d\n", (int32_t)pos);
246 pos=ubrk_following(word, 4);
247 if(pos!=5)
249 log_verbose("next (word = %d\n", (int32_t)pos);
255 pos=ubrk_previous(word);
256 log_verbose("%d %d\n", end, pos);
258 pos
373 int32_t start,pos; local
551 int32_t pos; local
627 int32_t pos = 0; local
678 int32_t pos = 0; local
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Dcc-defs.el606 (defmacro c-up-list-forward (&optional pos limit)
612 `(c-safe-scan-lists ,(or pos `(point)) 1 1 ,limit))
614 (defmacro c-up-list-backward (&optional pos limit)
620 `(c-safe-scan-lists ,(or pos `(point)) -1 1 ,limit))
622 (defmacro c-down-list-forward (&optional pos limit)
628 `(c-safe-scan-lists ,(or pos `(point)) 1 -1 ,limit))
630 (defmacro c-down-list-backward (&optional pos limit)
636 `(c-safe-scan-lists ,(or pos `(point)) -1 -1 ,limit))
638 (defmacro c-go-up-list-forward (&optional pos limit)
645 (let ((res `(c-safe (goto-char (scan-lists ,(or pos `(poin
[all...]
/macosx-10.10.1/apache-793/httpd/modules/proxy/
H A Dajp_msg.c63 "%s pos=%" APR_SIZE_T_FMT
65 err, msg->pos, msg->len, msg->max_size);
176 msg->pos = AJP_HEADER_LEN;
191 msg->pos = AJP_HEADER_LEN;
247 context, msg->pos, msg->len);
396 if ((msg->pos + 3) > msg->len) {
400 value = ((msg->buf[(msg->pos++)] & 0xFF) << 24);
401 value |= ((msg->buf[(msg->pos++)] & 0xFF) << 16);
402 value |= ((msg->buf[(msg->pos++)] & 0xFF) << 8);
403 value |= ((msg->buf[(msg->pos
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Dbase64.c195 char *pos; local
207 pos = strchr(Base64, ch);
208 if (pos == 0) /* A non-base64 character. */
216 target[tarindex] = (pos - Base64) << 2;
224 target[tarindex] |= (pos - Base64) >> 4;
225 target[tarindex+1] = ((pos - Base64) & 0x0f)
235 target[tarindex] |= (pos - Base64) >> 2;
236 target[tarindex+1] = ((pos - Base64) & 0x03)
246 target[tarindex] |= (pos - Base64);
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbase64.c201 char *pos; local
213 pos = strchr(Base64, ch);
214 if (pos == 0) /* A non-base64 character. */
222 target[tarindex] = (pos - Base64) << 2;
230 target[tarindex] |= (pos - Base64) >> 4;
231 target[tarindex+1] = ((pos - Base64) & 0x0f)
241 target[tarindex] |= (pos - Base64) >> 2;
242 target[tarindex+1] = ((pos - Base64) & 0x03)
252 target[tarindex] |= (pos - Base64);
/macosx-10.10.1/basic_cmds-55/uudecode/
H A Dbase64.c204 char *pos; local
216 pos = strchr(Base64, ch);
217 if (pos == 0) /* A non-base64 character. */
225 target[tarindex] = (pos - Base64) << 2;
233 target[tarindex] |= (pos - Base64) >> 4;
234 target[tarindex+1] = ((pos - Base64) & 0x0f)
244 target[tarindex] |= (pos - Base64) >> 2;
245 target[tarindex+1] = ((pos - Base64) & 0x03)
255 target[tarindex] |= (pos - Base64);
/macosx-10.10.1/basic_cmds-55/uuencode/
H A Dbase64.c204 char *pos; local
216 pos = strchr(Base64, ch);
217 if (pos == 0) /* A non-base64 character. */
225 target[tarindex] = (pos - Base64) << 2;
233 target[tarindex] |= (pos - Base64) >> 4;
234 target[tarindex+1] = ((pos - Base64) & 0x0f)
244 target[tarindex] |= (pos - Base64) >> 2;
245 target[tarindex+1] = ((pos - Base64) & 0x03)
255 target[tarindex] |= (pos - Base64);
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/unix/
H A Difiter_getifaddrs.c43 struct ifaddrs *pos; /*%< Ptr to current ifaddr */ member in struct:isc_interfaceiter
100 iter->pos = NULL;
133 ifa = iter->pos;
136 if (iter->pos == NULL)
201 if (iter->pos != NULL)
202 iter->pos = iter->pos->ifa_next;
203 if (iter->pos == NULL) {
233 iter->pos = iter->ifaddrs;
/macosx-10.10.1/libresolv-57/
H A Dbase64.c213 char *pos; local
225 pos = strchr(Base64, ch);
226 if (pos == 0) /* A non-base64 character. */
234 target[tarindex] = (pos - Base64) << 2;
242 target[tarindex] |= (pos - Base64) >> 4;
243 target[tarindex+1] = ((pos - Base64) & 0x0f)
253 target[tarindex] |= (pos - Base64) >> 2;
254 target[tarindex+1] = ((pos - Base64) & 0x03)
264 target[tarindex] |= (pos - Base64);
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/
H A Dmemdev.c114 static char * nonspace(char *pos, char *end);
115 static char * getspace(char *pos, char *end);
116 static char * cvtnum(char *pos, char *end, uint64_t *num);
507 char *nonspace(char *pos, char *end) { /* Find next non-space in string */ argument
509 if(pos >= end) return end; /* Don't go past end */
510 if(pos[0] == 0) return end; /* If at null, make end */
513 if(pos[0] != ' ') return pos; /* Leave if we found one */
514 pos++; /* Stop */
515 if(pos >
519 getspace(char *pos, char *end) argument
529 cvtnum(char *pos, char *end, uint64_t *num) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_app_pentomino.rb93 def setpiece(a,pos)
99 while $b[pos] != -1
100 pos += 1
106 if $b[pos+s] != -1
113 $b[pos+s] = i
116 setpiece(a.dup, pos)
119 $b[pos+s] = -1
222 def setpiece(a,pos)
228 while $b[pos] != -1
229 pos
[all...]
/macosx-10.10.1/tidy-15.15/tidy/console/
H A Dtidy.c272 static tmbstr get_option_names( const CmdOptDesc* pos )
275 uint len = strlen(pos->name1);
276 if (pos->name2)
277 len += 2+strlen(pos->name2);
278 if (pos->name3)
279 len += 2+strlen(pos->name3);
282 strcpy(name, pos->name1);
283 if (pos->name2)
286 strcat(name, pos->name2);
288 if (pos
345 const CmdOptDesc* pos = cmdopt_defs; local
377 const CmdOptDesc* pos = cmdopt_defs; local
431 TidyIterator pos; local
599 TidyIterator pos = tidyGetOptionList( tdoc ); local
634 TidyIterator pos = tidyGetOptionList( tdoc ); local
649 TidyIterator pos = tidyOptGetPickList( topt ); local
691 TidyIterator pos = tidyOptGetDocLinksList(tdoc, topt); local
738 TidyIterator pos; local
839 TidyIterator pos = tidyOptGetDeclTagList( tdoc ); variable
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dlonglines.el205 (pos (text-property-not-all pmin pmax 'hard nil))
207 (while pos
208 (put-text-property pos (1+ pos) 'display
210 (setq pos (text-property-not-all (1+ pos) pmax 'hard nil)))))
216 (let ((pos (text-property-not-all (point-min) (point-max) 'hard nil)))
217 (while pos
218 (remove-text-properties pos (1+ pos) '(displa
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/stringio/
H A Dstringio.c25 long pos; member in struct:StringIO
41 ptr->pos = 0;
97 strio_substr(struct StringIO *ptr, long pos, long len) argument
101 long rlen = RSTRING_LEN(str) - pos;
105 return rb_enc_str_new(RSTRING_PTR(str)+pos, len, enc);
213 ptr->pos = 0;
330 ptr->pos = 0;
443 if (ptr->pos < RSTRING_LEN(ptr->string)) return Qfalse;
530 * strio.pos -> integer
538 return LONG2NUM(StringIO(self)->pos);
548 strio_set_pos(VALUE self, VALUE pos) argument
706 strio_extend(struct StringIO *ptr, long pos, long len) argument
792 long pos = ptr->pos, cl = 1; local
1039 long skip[1 << CHAR_BIT], pos; local
[all...]
/macosx-10.10.1/swig-12/Source/DOH/
H A Dlist.c95 static int List_insert(DOH *lo, int pos, DOH *item) { argument
105 if (pos == DOH_END)
106 pos = l->nitems;
107 if (pos < 0)
108 pos = 0;
109 if (pos > l->nitems)
110 pos = l->nitems;
113 for (i = l->nitems; i > pos; i--) {
116 l->items[pos] = item;
128 static int List_remove(DOH *lo, int pos) { argument
[all...]

Completed in 972 milliseconds

1234567891011>>