Searched refs:pos (Results 176 - 200 of 1683) sorted by relevance

1234567891011>>

/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcbiapts.c145 int32_t start,pos,end,to; local
239 pos=ubrk_next(word);
240 if(pos!=4)
242 log_verbose("next (word = %d\n", (int32_t)pos);
243 pos=ubrk_following(word, 4);
244 if(pos!=5)
246 log_verbose("next (word = %d\n", (int32_t)pos);
252 pos=ubrk_previous(word);
253 log_verbose("%d %d\n", end, pos);
255 pos
370 int32_t start,pos; local
553 int32_t pos; local
629 int32_t pos = 0; local
680 int32_t pos = 0; local
[all...]
H A Dcdtdptst.c54 int32_t pos; local
74 pos=0;
75 d = udat_parse(fmt, s, u_strlen(s), &pos, &status);
113 int32_t pos; local
131 pos=0;
132 d = udat_parse(f, s, u_strlen(s), &pos, &status);
161 int32_t pos; local
169 pos=0;
170 date = udat_parse(format, str, u_strlen(str), &pos, &status);
196 int32_t pos; local
229 int32_t lneed, pos; local
[all...]
/macosx-10.9.5/emacs-92/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.9.5/apache-786.1/httpd/modules/proxy/
H A Dajp_msg.c45 "ajp_msg_dump(): %s pos=%" APR_SIZE_T_FMT
47 err, msg->pos, msg->len, msg->max_size);
121 msg->pos = AJP_HEADER_LEN;
136 msg->pos = AJP_HEADER_LEN;
192 context, msg->pos, msg->len);
339 if ((msg->pos + 3) > msg->len) {
343 value = ((msg->buf[(msg->pos++)] & 0xFF) << 24);
344 value |= ((msg->buf[(msg->pos++)] & 0xFF) << 16);
345 value |= ((msg->buf[(msg->pos++)] & 0xFF) << 8);
346 value |= ((msg->buf[(msg->pos
[all...]
/macosx-10.9.5/zsh-60/zsh/Src/Zle/
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.9.5/OpenLDAP-491.1/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.9.5/OpenSSH-186/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.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLElementStack.cpp421 for (ElementRecord* pos = m_top.get(); pos; pos = pos->next()) {
422 if (pos->node() == element)
423 return pos;
430 for (ElementRecord* pos = m_top.get(); pos; pos = pos
[all...]
/macosx-10.9.5/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.9.5/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.9.5/bind9-45.100/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.9.5/libresolv-54/
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.9.5/xnu-2422.115.4/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.9.5/ruby-104/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.9.5/tidy-15.12/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.9.5/emacs-92/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...]
H A Ddescr-text.el117 (defun describe-text-properties (pos &optional output-buffer)
124 (if (>= pos (point-max))
127 (describe-text-properties-1 pos output-buffer)
128 (if (not (or (text-properties-at pos) (overlays-at pos)))
138 (insert "Text content at position " (format "%d" pos) ":\n\n")
140 (describe-text-properties-1 pos output-buffer))
143 (defun describe-text-properties-1 (pos output-buffer)
144 (let* ((properties (text-properties-at pos))
145 (overlays (overlays-at pos))
[all...]
/macosx-10.9.5/ruby-104/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.9.5/swig-10/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...]
/macosx-10.9.5/less-23/less/
H A Dsearch.c268 POSITION pos; local
292 pos = position(slinenum);
293 if (pos == NULL_POSITION)
306 if (is_hilited(pos, epos, 1, NULL))
309 (void) forw_line(pos);
328 POSITION pos; local
348 pos = position(slinenum);
349 if (pos == NULL_POSITION)
352 if (pos < old_end_attnpos &&
355 (void) forw_line(pos);
971 POSITION pos; local
1245 POSITION pos; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/samples/uciter8/
H A Duit_len8.c205 int32_t pos; /* requested UTF-16 index */ local
213 pos=delta;
219 pos=iter->index+delta;
223 pos=0;
230 pos=iter->length+delta;
241 pos=0;
252 if(pos<=0) {
255 } else if(iter->length>=0 && pos>=iter->length) {
263 if(iter->index<0 || pos<iter->index/2) {
266 } else if(iter->length>=0 && (iter->length-pos)<(po
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/mediastream/
H A DMediaStreamSource.cpp70 size_t pos = m_observers.find(observer); local
71 if (pos != notFound)
72 m_observers.remove(pos);
86 size_t pos = m_audioConsumers.find(consumer); local
87 if (pos != notFound) {
88 m_audioConsumers.remove(pos);
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dpromptdialog.rb80 def insert(pos,text)
81 tk_send_without_enc('insert', pos, _get_eval_enc_str(text))
85 def mark(pos)
86 tk_send_without_enc('scan', 'mark', pos)
89 def dragto(pos)
90 tk_send_without_enc('scan', 'dragto', pos)
H A Dscrolledtext.rb420 if (pos = txt.index(pat))
422 #pos = txt[0..(pos-1)].split('').length if pos > 0
423 pos = _ktext_length(txt[0..(pos-1)]) if pos > 0
425 #return [index(start + " + #{pos} chars"), pat.split('').length]
426 return [index(start + " + #{pos} chars"),
429 #return [index(start + " + #{pos} char
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/library/
H A Dtm.tcl115 set pos [lsearch -glob $newpaths ${p}/*]
117 if {$pos >= 0} {
119 "$p is ancestor of existing module path [lindex $newpaths $pos]."
155 set pos [lsearch -exact $paths $p]
156 if {$pos >= 0} {
157 set paths [lreplace $paths $pos $pos]

Completed in 251 milliseconds

1234567891011>>