/third_party/mesa3d/src/getopt/ |
H A D | getopt_long.c | 84 static char *place = EMSG; /* option letter processing */ variable 166 current_argv = place; in parse_long_options() 311 if (optreset || !*place) { /* update scanning pointer */ in getopt_internal() 314 place = EMSG; in getopt_internal() 331 if (*(place = nargv[optind]) != '-' || in getopt_internal() 332 (place[1] == '\0' && strchr(options, '-') == NULL)) { in getopt_internal() 333 place = EMSG; /* found non-option */ in getopt_internal() 369 if (place[1] != '\0' && *++place == '-' && place[ in getopt_internal() [all...] |
/third_party/libwebsockets/win32port/win32helpers/ |
H A D | getopt.c | 93 static char *place = EMSG; /* option letter processing */
local 100 if (optreset || !*place) { /* update scanning pointer */
102 if (optind >= nargc || *(place = nargv[optind]) != '-') {
103 place = EMSG;
106 if (place[1] && *++place == '-' /* found "--" */
107 && place[1] == '\0') {
109 place = EMSG;
113 if ((optopt = (int)*place++) == (int)':' ||
121 if (!*place)
[all...] |
H A D | getopt_long.c | 86 static char *place = EMSG; /* option letter processing */
local 92 if (optreset || !*place) { /* update scanning pointer */
94 if (optind >= nargc || *(place = nargv[optind]) != '-') {
95 place = EMSG;
98 if (place[1] && *++place == '-') { /* found "--" */
100 place = EMSG;
104 if ((optopt = (int)*place++) == (int)':' ||
112 if (!*place)
121 if (!*place)
[all...] |
/third_party/node/deps/cares/src/tools/ |
H A D | ares_getopt.c | 57 state->place = EMSG; in ares_getopt_init() 71 if (!*state->place) { in ares_getopt() 75 state->place = state->argv[state->optind]; in ares_getopt() 76 if (*(state->place) != '-') { in ares_getopt() 79 state->place++; in ares_getopt() 82 if (*(state->place) == '-') { in ares_getopt() 88 if (!*(state->place)) { in ares_getopt() 95 state->optopt = *(state->place); in ares_getopt() 96 state->place++; in ares_getopt() 100 if (!(*state->place)) { in ares_getopt() [all...] |
H A D | ares_getopt.h | 41 const char *place; member
|
/third_party/skia/experimental/sktext/editor/ |
H A D | Editor.cpp | 51 fCursor->place(endOfText.fBoundaries); in Editor() 63 fCursor->place(position.fBoundaries); in update() 103 fCursor->place(position.fBoundaries); in moveCursor() 163 fCursor->place(position.fBoundaries); in deleteElement() 165 // The cursor stays the the same place in deleteElement() 172 fCursor->place(position.fBoundaries); in deleteElement() 196 fCursor->place(position.fBoundaries); in insertCodepoint() 256 fCursor->place(position.fBoundaries); in onMouse()
|
H A D | Cursor.h | 26 void place(SkPoint xy, SkSize size) { in place() function in skia::editor::Cursor 34 void place(SkRect rect) { in place() function in skia::editor::Cursor
|
/third_party/ltp/scripts/coccinelle/ |
H A D | run-spatch.sh | 24 --in-place \ 30 --in-place \ 56 --in-place \ 77 -f Apply the semantic patch in-place to fix the code
|
/third_party/backends/lib/ |
H A D | snprintf.c | 53 or other code remain in place and are present in executable modules 852 int place = 0; in fmtnum() local 870 convert[place++] = in fmtnum() 875 convert[place] = 0; in fmtnum() 876 padlen = len - place; in fmtnum() 879 /* fprintf( stderr, "str '%s', place %d, sign %c, padlen %d\n", in fmtnum() 880 convert,place,signvalue,padlen); / **/ in fmtnum() 897 while( place > 0 ) dopr_outch( buffer, left, convert[--place] ); in fmtnum() 912 int place in fmtquad() local [all...] |
/third_party/skia/gm/ |
H A D | hardstop_gradients_many.cpp | 63 float place = SkScalar(pos) / SkScalar(row); variable 64 positions.push_back(place); 65 positions.push_back(place);
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bio_print.c | 441 int place = 0; in fmtint() local 467 convert[place++] = (caps ? "0123456789ABCDEF" : "0123456789abcdef") in fmtint() 470 } while (uvalue && (place < (int)sizeof(convert))); in fmtint() 471 if (place == sizeof(convert)) in fmtint() 472 place--; in fmtint() 473 convert[place] = 0; in fmtint() 475 zpadlen = max - place; in fmtint() 477 min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix); in fmtint() 517 while (place > 0) { in fmtint() 518 if (!doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place])) in fmtint() [all...] |
/third_party/openssl/crypto/bio/ |
H A D | bio_print.c | 441 int place = 0; in fmtint() local 467 convert[place++] = (caps ? "0123456789ABCDEF" : "0123456789abcdef") in fmtint() 470 } while (uvalue && (place < (int)sizeof(convert))); in fmtint() 471 if (place == sizeof(convert)) in fmtint() 472 place--; in fmtint() 473 convert[place] = 0; in fmtint() 475 zpadlen = max - place; in fmtint() 477 min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix); in fmtint() 517 while (place > 0) { in fmtint() 518 if (!doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place])) in fmtint() [all...] |
/third_party/rust/crates/libc/src/ |
H A D | macros.rs | 172 // Note that users of this macro need to place 'const' in a weird position 333 ($place:expr) => { 334 &$place 340 ($place:expr) => { 341 ::core::ptr::addr_of!($place)
|
/third_party/python/Tools/demo/ |
H A D | queens.py | 31 self.place(x, y) 41 def place(self, x, y): member in Queens
|
/third_party/curl/scripts/ |
H A D | cd2cd | 30 Example: cd2cd [--in-place] <file.md> > <file.md> 32 --in-place: if used, it replaces the original file with the cleaned up 45 if($ARGV[0] eq "--in-place") {
|
/third_party/skia/third_party/externals/brotli/python/ |
H A D | Makefile | 57 -@$(YAPF) --in-place --recursive --verify .
|
/third_party/lame/ |
H A D | lame.bat | 7 rem - put this Batch-Command in a place mentioned
|
/third_party/vixl/examples/aarch64/ |
H A D | literal.cc | 53 __ place(&manually_placed_literal); in LiteralExample() 63 // Usually, compilers will move the code to another place in memory before in LiteralExample()
|
/third_party/lame/misc/ |
H A D | lame4dos.bat | 7 rem - put this Batch-Command in a place mentioned
|
/third_party/vixl/tools/ |
H A D | make_instruction_doc_aarch64.pl | 36 my @extras = qw/bind debug dci dc32 dc64 place/;
|
/third_party/rust/crates/serde/serde/src/de/ |
H A D | impls.rs | 609 fn deserialize_in_place<D>(deserializer: D, place: &mut Self) -> Result<(), D::Error> in deserialize_in_place() 613 deserializer.deserialize_string(StringInPlaceVisitor(place)) in deserialize_in_place() 843 // tag to have deserialize_in_place build the content in place unconditionally. 939 fn deserialize_in_place<D>(deserializer: D, place: &mut Self) -> Result<(), D::Error> in deserialize_in_place() 973 deserializer.deserialize_seq(SeqInPlaceVisitor(place)) in deserialize_in_place() 1085 fn deserialize_in_place<D>(deserializer: D, place: &mut Self) -> Result<(), D::Error> in deserialize_in_place() 1129 deserializer.deserialize_seq(VecInPlaceVisitor(place)) in deserialize_in_place() 1241 fn deserialize_in_place<D>(deserializer: D, place: &mut Self) -> Result<(), D::Error> in deserialize_in_place() 1245 deserializer.deserialize_tuple($len, ArrayInPlaceVisitor(place)) in deserialize_in_place() 1330 fn deserialize_in_place<D>(deserializer: D, place [all...] |
/third_party/rust/crates/serde/serde_derive/src/ |
H A D | de.rs | 610 _serde::Deserialize::deserialize_in_place(__e, &mut self.place.0) in deserialize_tuple_in_place() 621 place: __place, in deserialize_tuple_in_place() 646 place: &#place_life mut #this_type #ty_generics, in deserialize_tuple_in_place() 796 self.place.#member = #default; in deserialize_seq_in_place() 799 let value_if_none = expr_is_missing_seq(Some(quote!(self.place.#member = )), index_in_seq, field, cattrs, expecting); in deserialize_seq_in_place() 804 _serde::__private::de::InPlaceSeed(&mut self.place.#member))? in deserialize_seq_in_place() 816 self.place.#member = __wrap.value; in deserialize_seq_in_place() 1142 place: &#place_life mut #this_type #ty_generics, in deserialize_struct_in_place() 1174 place: __place, in deserialize_struct_in_place() 2712 _serde::de::MapAccess::next_value_seed(&mut __map, _serde::__private::de::InPlaceSeed(&mut self.place in deserialize_map_in_place() [all...] |
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm/crypto/bn/ |
H A D | mips-mont.S | 45 dsubu $29,2*8 # place for two extra words
|
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm_avx2/crypto/bn/ |
H A D | mips-mont.S | 45 dsubu $29,2*8 # place for two extra words
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/nasm/ |
H A D | jsimdcfg.inc.h | 103 ; the DCT is to be performed in-place in that buffer.
|