/external/openssh/openbsd-compat/ |
D | getopt.c | 64 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) 103 if (*place) /* no white space */ [all …]
|
D | bsd-snprintf.c | 519 int place = 0; in fmtint() local 544 convert[place++] = in fmtint() 548 } while(uvalue && (place < 20)); in fmtint() 549 if (place == 20) place--; in fmtint() 550 convert[place] = 0; in fmtint() 552 zpadlen = max - place; in fmtint() 553 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0); in fmtint() 565 zpadlen, spadlen, min, max, place); in fmtint() 587 while (place > 0) { in fmtint() 588 --place; in fmtint() [all …]
|
/external/libvorbis/examples/ |
D | frameview.pl | 189 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(-x=>-5,-y=>-5,-relwidth=>.3,-width=>-7,-rely=>1.,-relx=>.8,-anchor=>'se'); [all …]
|
/external/clang/test/CXX/temp/temp.param/ |
D | p15-cxx0x.cpp | 59 enum place { _ }; enum 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/valgrind/main/drd/ |
D | Testing.txt | 39 ./vg-in-place --tool=drd --check-stack-var=yes drd/tests/tsan_unittest 2>&1|less 47 ./vg-in-place --tool=drd --read-var-info=yes kate 48 ./vg-in-place --tool=drd --read-var-info=yes --check-stack-var=yes kate 49 ./vg-in-place --tool=drd --read-var-info=yes --trace-children=yes knode 50 ./vg-in-place --tool=drd --read-var-info=yes --check-stack-var=yes --trace-children=yes knode 51 ./vg-in-place --tool=drd --read-var-info=yes --check-stack-var=yes /usr/bin/designer 54 …./vg-in-place --tool=drd --trace-fork-join=yes --show-confl-seg=no --gen-suppressions=all /Applica… 55 …./vg-in-place --tool=drd --trace-fork-join=yes --show-confl-seg=no --gen-suppressions=all /Applica… 60 ./vg-in-place --tool=drd --read-var-info=yes --trace-children=yes gnome-terminal 78 …make -j2 -s MEMCHECK="$HOME/software/valgrind/vg-in-place --tool=drd --check-stack-var=yes --read-… [all …]
|
/external/oprofile/module/ |
D | op_dcache.h | 64 char * place = op_pool_pos; in alloc_in_pool() local 68 strcpy(place, str); in alloc_in_pool() 70 return place - op_pool_start; in alloc_in_pool()
|
/external/openssl/crypto/bio/ |
D | b_print.c | 488 int place = 0; in fmtint() local 512 convert[place++] = in fmtint() 516 } while (uvalue && (place < (int)sizeof(convert))); in fmtint() 517 if (place == sizeof(convert)) in fmtint() 518 place--; in fmtint() 519 convert[place] = 0; in fmtint() 521 zpadlen = max - place; in fmtint() 522 spadlen = min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix); in fmtint() 558 while (place > 0) in fmtint() 559 doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place]); in fmtint()
|
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/examples/ |
D | import.apt | 4 as imports in your main .g files, you need to place the imported grammar 8 For a default layout, place your import grammars in the directory: <<<src/main/antlr3/imports>>>
|
/external/antlr/antlr-3.4/runtime/C/doxygen/ |
D | atsections.dox | 92 /// Here you could for instance place a <code>\#include</code> 94 /// may use multiple parsers and lexers in your solution, you should probably not place 119 /// You should use this section when you wish to place #defines and other definitions 132 /// Code you place here then will be subject to any macros defined by your own includes, by the 133 /// generated include and by the standard ANTLR3 includes. This is a good place to <code>\#undef</c… 137 /// This is also a good place to <code>#define</code> any macros you may wish to use in the generat…
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
D | ClassDataItem.java | 171 offset = encodedField.place(offset, previousEncodedField); in placeItem() 177 offset = encodedField.place(offset, previousEncodedField); in placeItem() 183 offset = encodedMethod.place(offset, previousEncodedMethod); in placeItem() 189 offset = encodedMethod.place(offset, previousEncodedMethod); in placeItem() 468 private int place(int offset, EncodedField previousEncodedField) { in place() method in ClassDataItem.EncodedField 589 private int place(int offset, EncodedMethod previousEncodedMethod) { in place() method in ClassDataItem.EncodedMethod
|
/external/llvm/test/CodeGen/ARM/ |
D | lsr-icmp-imm.ll | 1 ; RUN: llc -mtriple=thumbv7-apple-ios -disable-code-place < %s | FileCheck %s 2 ; RUN: llc -mtriple=armv7-apple-ios -disable-code-place < %s | FileCheck %s
|
D | commute-movcc.ll | 1 ; RUN: llc -mtriple=thumbv7-apple-ios -disable-code-place < %s | FileCheck %s 2 ; RUN: llc -mtriple=armv7-apple-ios -disable-code-place < %s | FileCheck %s
|
/external/chromium/chrome/browser/ui/cocoa/applescript/examples/ |
D | tab_manipulation.applescript | 26 cut selection -- Cut a piece of text and place it on the system clipboard. 28 copy selection -- Copy a piece of text and place it on the system clipboard.
|
/external/markdown/docs/extensions/ |
D | footnotes.txt | 46 the document. Simply place the following text at that location within your 58 To configure the place marker for footnote definitions (just be sure not to
|
/external/webkit/Source/WebCore/css/ |
D | WCSSValueKeywords.in | 1 # place holder for all WCSS specific CSS value keywords
|
/external/apache-harmony/regex/ |
D | README.TXT | 30 modInverse(), and modPow()can be speeded up with implementing safe in-place computations. 35 The enhancement may consist of implementing safe in-place multiplication
|
/external/bison/src/ |
D | tables.c | 773 base_number place; in pack_table() local 777 place = pack_vector (i); in pack_table() 780 place = base[s]; in pack_table() 782 pos[i] = place; in pack_table() 783 base[order[i]] = place; in pack_table()
|
/external/valgrind/main/exp-sgcheck/ |
D | pc_common.c | 351 Char *place, *legit, *how_invalid; in pc_pp_Error() local 387 if (cmp < 0) place = "before"; in pc_pp_Error() 388 else if (cmp == 0) place = "inside"; in pc_pp_Error() 389 else place = "after"; in pc_pp_Error() 404 a, miss_size, place ); in pc_pp_Error() 420 a, miss_size, place ); in pc_pp_Error()
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/protocols/ |
D | mozilla | 28 place:
|
/external/sqlite/dist/ |
D | NOTICE | 3 The author disclaims copyright to this source code. In place of
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/mime-types/ |
D | mozilla | 109 text/x-moz-place 110 text/x-moz-place-container
|
/external/openssh/ |
D | aclocal.m4 | 85 AC_MSG_ERROR([Cannot find a type to use in place of socklen_t]) 90 [type to use in place of socklen_t if not defined])],
|
/external/clang/test/SemaObjC/ |
D | self-assign.m | 11 // expected-note{{place parentheses around the assignment to silence this warning}}
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | ElemNumber.java | 1939 int place = 0; in long2roman() local 1945 while (val >= m_romanConvertTable[place].m_postValue) in long2roman() 1947 roman += m_romanConvertTable[place].m_postLetter; in long2roman() 1948 val -= m_romanConvertTable[place].m_postValue; in long2roman() 1953 if (val >= m_romanConvertTable[place].m_preValue) in long2roman() 1955 roman += m_romanConvertTable[place].m_preLetter; in long2roman() 1956 val -= m_romanConvertTable[place].m_preValue; in long2roman() 1960 place++; in long2roman()
|
/external/netperf/ |
D | netlib.c | 351 static char *place = EMSG; /* option letter processing */ in getopt() local 354 if (!*place) { in getopt() 356 if (optind >= argc || *(place = argv[optind]) != '-' || !*++place) { in getopt() 359 if (*place == '-') { in getopt() 362 place = EMSG ; /* Added by shiva for Netperf */ in getopt() 368 if ((optopt = (int)*place++) == (int)':' in getopt() 370 if (!*place) { in getopt() 379 if (!*place) in getopt() 383 if (*place) { in getopt() 384 optarg = place; /* no white space */ in getopt() [all …]
|