/external/libcap-ng/libcap-ng-0.7/utils/ |
D | netcap.c | 255 char rem_addr[128], local_addr[128], more[512]; in read_tcp() local 270 more[0] = 0; in read_tcp() 275 &uid, &timeout, &inode, more); in read_tcp() 289 char rem_addr[128], local_addr[128], more[512]; in read_udp() local 304 more[0] = 0; in read_udp() 309 &uid, &timeout, &inode, more); in read_udp() 323 char rem_addr[128], local_addr[128], more[512]; in read_raw() local 338 more[0] = 0; in read_raw() 343 &uid, &timeout, &inode, more); in read_raw() 355 char buf[256], more[256]; in get_interface() local [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/testdata/ |
D | testdata_en.txt | 207 more than 1 month 208 more than 1 month and 2 weeks 209 more than 1 month, 2 weeks, and 3 days 210 more than 1 month ago 211 more than 1 month and 2 weeks ago 212 more than 1 month, 2 weeks, and 3 days ago 213 more than 1 month from now 214 more than 1 month and 2 weeks from now 215 more than 1 month, 2 weeks, and 3 days from now 234 more than 1 hour [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/testdata/ |
D | testdata_en.txt | 207 more than 1 month 208 more than 1 month and 2 weeks 209 more than 1 month, 2 weeks, and 3 days 210 more than 1 month ago 211 more than 1 month and 2 weeks ago 212 more than 1 month, 2 weeks, and 3 days ago 213 more than 1 month from now 214 more than 1 month and 2 weeks from now 215 more than 1 month, 2 weeks, and 3 days from now 234 more than 1 hour [all …]
|
/external/swiftshader/third_party/LLVM/test/Transforms/ObjCARC/ |
D | cfg-hazards.ll | 131 br label %more 133 more: 164 br i1 undef, label %true, label %more 167 br label %more 169 more: 196 br i1 undef, label %true, label %more 200 br label %more 202 more: 230 br i1 undef, label %true, label %more 234 br label %more [all …]
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/ |
D | DataBean.java | 21 private DataMore more; field in DataBean 40 return more; in getMore() 43 public void setMore(DataMore more) { in setMore() argument 44 this.more = more; in setMore()
|
/external/toybox/toys/lsb/ |
D | mount.c | 80 static long flag_opts(char *new, long flags, char **more) 123 if (more && i == ARRAY_LEN(opts)) { 124 i = *more ? strlen(*more) : 0; 125 *more = xrealloc(*more, i + strlen(new) + 2); 126 if (i) (*more)[i++] = ','; 127 strcpy(i+*more, new); 380 char *more = 0; in mount_main() local 382 flags = flag_opts(opts, flags, &more); in mount_main() 383 mount_filesystem(dev, dir, TT.type, flags, more); in mount_main() 384 if (CFG_TOYBOX_FREE) free(more); in mount_main()
|
/external/bzip2/ |
D | bzmore | 10 *less) more=less ;; 11 *) more=more ;; 37 bzip2 -cdfq | eval $more 55 bzip2 -cdfq "$FILE" | eval $more
|
/external/llvm/test/Transforms/ObjCARC/ |
D | cfg-hazards.ll | 132 br label %more 134 more: 165 br i1 undef, label %true, label %more 168 br label %more 170 more: 197 br i1 undef, label %true, label %more 201 br label %more 203 more: 231 br i1 undef, label %true, label %more 235 br label %more [all …]
|
/external/kernel-headers/original/uapi/asm-mips/asm/ |
D | bitfield.h | 16 #define __BITFIELD_FIELD(field, more) \ argument 18 more 22 #define __BITFIELD_FIELD(field, more) \ argument 23 more \
|
/external/wpa_supplicant_8/src/common/ |
D | gas.c | 49 u8 more, u16 comeback_delay, size_t size) in gas_build_resp() argument 62 wpabuf_put_u8(buf, frag_id | (more ? 0x80 : 0)); in gas_build_resp() 79 gas_build_comeback_resp(u8 dialog_token, u16 status_code, u8 frag_id, u8 more, in gas_build_comeback_resp() argument 83 status_code, frag_id, more, comeback_delay, in gas_build_comeback_resp() 169 u8 frag_id, u8 more, in gas_anqp_build_comeback_resp() argument 175 frag_id, more, comeback_delay, 4 + size); in gas_anqp_build_comeback_resp() 189 u8 frag_id, u8 more, in gas_anqp_build_comeback_resp_buf() argument 196 more, comeback_delay, in gas_anqp_build_comeback_resp_buf()
|
D | gas.h | 18 gas_build_comeback_resp(u8 dialog_token, u16 status_code, u8 frag_id, u8 more, 28 u8 frag_id, u8 more, 32 u8 frag_id, u8 more,
|
/external/python/cpython3/Lib/ |
D | code.py | 220 more = 0 223 if more: 233 more = self.push(line) 237 more = 0 259 more = self.runsource(source, self.filename) 260 if not more: 262 return more
|
/external/python/cpython2/Lib/ |
D | code.py | 226 more = 0 229 if more: 243 more = self.push(line) 247 more = 0 265 more = self.runsource(source, self.filename) 266 if not more: 268 return more
|
/external/v8/src/ |
D | source-position-table.cc | 57 bool more; in EncodeInt() local 59 more = encoded > ValueBits::kMax; in EncodeInt() 61 MoreBit::encode(more) | ValueBits::encode(encoded & ValueBits::kMask); in EncodeInt() 64 } while (more); in EncodeInt() 83 bool more; in DecodeInt() local 89 more = MoreBit::decode(current); in DecodeInt() 91 } while (more); in DecodeInt()
|
/external/curl/lib/ |
D | formdata.c | 102 post->more = parent_post->more; in AddHttpPost() 105 parent_post->more = post; in AddHttpPost() 147 form_info->more = parent_form_info->more; in AddFormInfo() 150 parent_form_info->more = form_info; in AddFormInfo() 581 for(ptr = first_form; ptr != NULL; ptr = ptr->more) { in FormAdd() 608 form = form->more) { in FormAdd() 704 for(ptr = form; ptr != NULL; ptr = ptr->more) { in FormAdd() 729 FormInfo *ptr = first_form->more; in FormAdd() 812 curl_formfree(form->more); in curl_formfree() 883 if(post->more) { in Curl_getformdata() [all …]
|
/external/libmicrohttpd/src/examples/ |
D | spdy_response_with_callback.c | 45 bool *more) in response_callback() argument 50 *more = feof(fd) == 0; in response_callback() 52 if(!(*more)) in response_callback() 87 bool more) in standard_request_handler() argument 95 (void)more; in standard_request_handler()
|
/external/doclava/src/com/google/doclava/ |
D | AttrTagInfo.java | 67 String more = m.group(2); in parse() local 70 String ref = more.trim(); in parse() 83 m = NAME_TEXT.matcher(more); in parse() 85 Errors.error(Errors.BAD_ATTR_TAG, position, "Bad @attr name tag: " + more); in parse() 92 mDescrComment = new Comment(more, base, position); in parse()
|
/external/python/cpython2/Demo/classes/ |
D | Dates.py | 97 more = n // 365 98 dby = _days_before_year(more) 100 more = more - 1 101 dby = dby - _days_in_year(more) 102 year, n = year + more, int(n - dby)
|
/external/libxml2/result/schemas/ |
D | decimal-3_1_0.err | 1 …lidity error : Element 'val': [facet 'totalDigits'] The value '0.123' has more digits than are all… 3 …lidity error : Element 'val': [facet 'totalDigits'] The value '0.023' has more digits than are all… 5 …validity error : Element 'val': [facet 'totalDigits'] The value '123' has more digits than are all… 7 …alidity error : Element 'val': [facet 'totalDigits'] The value '12.3' has more digits than are all…
|
/external/perfetto/docs/ |
D | life-of-a-tracing-session.md | 6 1. One or more producers connect to the tracing service and sets up their IPC 8 2. Each producer advertises one or more data sources through the 10 Nothing more happens on the Producer until this point. Nothing traces by 29 10. The producer creates one or more data source instance, as instructed in 31 11. Each data source instance creates one or more 34 12. Each `TraceWriter` writes one or more 46 17. If one or more long `TracePacket` were fragmented over several chunks, it is 80 sequence is interrupted and no more packets for that sequence are read.
|
/external/tpm2/ |
D | Handle.c | 88 TPMI_YES_NO more = NO; in PermanentCapGetHandles() local 110 more = YES; in PermanentCapGetHandles() 114 return more; in PermanentCapGetHandles()
|
D | PP.c | 131 TPMI_YES_NO more = NO; in PhysicalPresenceCapGetCCList() local 153 more = YES; in PhysicalPresenceCapGetCCList() 158 return more; in PhysicalPresenceCapGetCCList()
|
/external/libmicrohttpd/src/testspdy/ |
D | test_request_response_with_callback.c | 60 bool *more) in response_callback() argument 75 *more = feof(fd) == 0; in response_callback() 79 if(!(*more)) in response_callback() 115 bool more) in standard_request_handler() argument 125 (void)more; in standard_request_handler()
|
/external/python/cpython2/Objects/ |
D | dictnotes.txt | 25 A few keys are accessed much more frequently than others. 85 Increasing this ratio makes dictionaries more dense resulting 86 in more collisions. Decreasing it improves sparseness at the 87 expense of spreading entries over more cache lines and at the 91 to make the test more complex (for example, varying the load 121 While making a dictionary more sparse reduces collisions, it impairs 146 introduction of any regularity into collision searches results in more 154 where some keys are accessed much more frequently than others. The 155 more popular entries *and* their collision chains tend to remain in cache. 173 access pattern (as opposed to a more common pattern with a Zipf's law [all …]
|
/external/ply/ply/example/calceof/ |
D | calc.py | 39 more = raw_input('... ') 40 if more: 41 t.lexer.input(more + '\n')
|