Searched refs:place (Results 1 - 25 of 83) sorted by relevance

1234

/external/openssh/openbsd-compat/
H A Dgetopt.c64 static char *place = EMSG; /* option letter processing */ local
70 if (BSDoptreset || !*place) { /* update scanning pointer */
72 if (BSDoptind >= nargc || *(place = nargv[BSDoptind]) != '-') {
73 place = EMSG;
76 if (place[1] && *++place == '-') { /* found "--" */
78 place = EMSG;
82 if ((BSDoptopt = (int)*place++) == (int)':' ||
90 if (!*place)
99 if (!*place)
[all...]
H A Dbsd-snprintf.c65 * put the ifdef for HAVE_VA_COPY in one place rather than in lots of
519 int place = 0; local
544 convert[place++] =
548 } while(uvalue && (place < 20));
549 if (place == 20) place--;
550 convert[place] = 0;
552 zpadlen = max - place;
553 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0);
564 printf("zpad: %d, spad: %d, min: %d, max: %d, place
[all...]
/external/chromium_org/third_party/mesa/src/src/getopt/
H A Dgetopt_long.c84 static char *place = EMSG; /* option letter processing */ variable
166 current_argv = place;
311 if (optreset || !*place) { /* update scanning pointer */
314 place = EMSG;
331 if (*(place = nargv[optind]) != '-' ||
332 (place[1] == '\0' && strchr(options, '-') == NULL)) {
333 place = EMSG; /* found non-option */
369 if (place[1] != '\0' && *++place == '-' && place[
[all...]
/external/mesa3d/src/getopt/
H A Dgetopt_long.c84 static char *place = EMSG; /* option letter processing */ variable
166 current_argv = place;
311 if (optreset || !*place) { /* update scanning pointer */
314 place = EMSG;
331 if (*(place = nargv[optind]) != '-' ||
332 (place[1] == '\0' && strchr(options, '-') == NULL)) {
333 place = EMSG; /* found non-option */
369 if (place[1] != '\0' && *++place == '-' && place[
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dnsview_additions.h26 isPositioned:(NSWindowOrderingMode)place
/external/clang/test/Sema/
H A Dparentheses.cpp8 // expected-note {{place parentheses around the '+' expression to silence this warning}} \
9 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
16 // expected-note {{place parentheses around the '-' expression to silence this warning}} \
17 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
24 // expected-note {{place parentheses around the '*' expression to silence this warning}} \
25 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
43 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \
44 // expected-note {{place parentheses around the '?:' expression to evaluate it first}}
51 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \
52 // expected-note {{place parenthese
[all...]
/external/oprofile/module/
H A Dop_dcache.h64 char * place = op_pool_pos; local
68 strcpy(place, str);
70 return place - op_pool_start;
/external/clang/test/CXX/temp/temp.param/
H A Dp15-cxx0x.cpp59 enum place { _ }; enum in namespace:ParameterPackExpansions
60 template<place...> struct places {};
63 template<place...X1, place...X2>
75 template<place> struct inner { typedef T type; };
79 template<place...X> struct takedrop_impl<places<X...>> {
81 template<place > class ...Drop>
/external/libvorbis/examples/
H A Dframeview.pl189 place(-x=>10,-y=>36,-relwidth=>1.0,-relheight=>1.0,
193 place(-x=>-1,-y=>-1,-relx=>1.0,-rely=>1.0,-anchor=>'se');
196 place(-x=>5,-y=>5,-anchor=>'nw');
200 place(-x=>10,-y=>36,-relwidth=>1.0,-relheight=>1.0,
204 place(-x=>5,-y=>5,-anchor=>'nw');
209 place(-x=>-5,-relx=>1.,-y=>$panely,-anchor=>'ne');
216 place(-x=>5,-y=>-5,-rely=>1.,-relwidth=>.2,-width=>-5,-anchor=>'sw');
220 place(-x=>-5,-y=>-5,-relwidth=>.2,-rely=>1.,-width=>-5,-relx=>1.,-anchor=>'se');
224 place(-x=>5,-y=>-5,-relwidth=>.3,-width=>-7,-rely=>1.,-relx=>.2,-anchor=>'sw');
228 place(
[all...]
/external/chromium_org/ui/webui/resources/js/cr/ui/table/
H A Dtable_header.js134 var place = 0;
136 place += cm.getWidth(i);
137 splitters[i].style.webkitMarginStart = place + 'px';
/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A Ddump.java56 dexFile.place();
/external/chromium_org/third_party/openssl/openssl/crypto/bio/
H A Db_print.c488 int place = 0; local
512 convert[place++] =
516 } while (uvalue && (place < (int)sizeof(convert)));
517 if (place == sizeof(convert))
518 place--;
519 convert[place] = 0;
521 zpadlen = max - place;
522 spadlen = min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix);
558 while (place > 0)
559 doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place]);
[all...]
/external/openssl/crypto/bio/
H A Db_print.c488 int place = 0; local
512 convert[place++] =
516 } while (uvalue && (place < (int)sizeof(convert)));
517 if (place == sizeof(convert))
518 place--;
519 convert[place] = 0;
521 zpadlen = max - place;
522 spadlen = min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix);
558 while (place > 0)
559 doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place]);
[all...]
/external/srec/srec/cfront/
H A Dhimul32.h51 mulhw r3, factor1, factor2 # place the high order 32 bits of the product in the return register r3
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DClassDataItem.java233 offset = encodedField.place(offset, previousEncodedField);
241 offset = encodedField.place(offset, previousEncodedField);
249 offset = encodedMethod.place(offset, previousEncodedMethod);
257 offset = encodedMethod.place(offset, previousEncodedMethod);
669 private int place(int offset, EncodedField previousEncodedField) { method in class:ClassDataItem.EncodedField
803 private int place(int offset, EncodedMethod previousEncodedMethod) { method in class:ClassDataItem.EncodedMethod
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DOffsettedItem.java223 public final int place(Section addedTo, int offset) { method in class:OffsettedItem
H A DUniformListItem.java183 offset = i.place(addedTo, offset) + size;
/external/chromium_org/chrome/browser/resources/translate_internals/
H A Dtranslate_internals.css123 .event-logs-place {
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/extension_mime_handler/
H A Dnacl.scons28 # Copy the extension into place (as a subdir in the staging dir).
/external/bison/src/
H A Dtables.c783 base_number place; local
787 place = pack_vector (i);
790 place = base[s];
792 pos[i] = place;
793 base[order[i]] = place;
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
H A Dmips-mont.S45 sub $29,2*4 # place for two extra words
/external/openssl/crypto/bn/asm/
H A Dmips-mont.S45 sub $29,2*4 # place for two extra words
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemNumber.java1939 int place = 0;
1945 while (val >= m_romanConvertTable[place].m_postValue)
1947 roman += m_romanConvertTable[place].m_postLetter;
1948 val -= m_romanConvertTable[place].m_postValue;
1953 if (val >= m_romanConvertTable[place].m_preValue)
1955 roman += m_romanConvertTable[place].m_preLetter;
1956 val -= m_romanConvertTable[place].m_preValue;
1960 place++;
/external/chromium_org/tools/traceline/traceline/
H A Dstubs.asm5 ; This file is just a convenient place for experimenting with x86 encodings.
/external/smali/smali/src/main/java/org/jf/smali/
H A Dmain.java219 dexFile.place();
268 dexFile.place();

Completed in 3887 milliseconds

1234