Home
last modified time | relevance | path

Searched refs:more (Results 1 – 25 of 3907) sorted by relevance

12345678910>>...157

/external/libcap-ng/libcap-ng-0.7/utils/
Dnetcap.c255 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/
Dtestdata_en.txt207 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/
Dtestdata_en.txt207 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/
Dcfg-hazards.ll131 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/
DDataBean.java21 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/
Dmount.c80 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/
Dbzmore10 *less) more=less ;;
11 *) more=more ;;
37 bzip2 -cdfq | eval $more
55 bzip2 -cdfq "$FILE" | eval $more
/external/llvm/test/Transforms/ObjCARC/
Dcfg-hazards.ll132 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/
Dbitfield.h16 #define __BITFIELD_FIELD(field, more) \ argument
18 more
22 #define __BITFIELD_FIELD(field, more) \ argument
23 more \
/external/wpa_supplicant_8/src/common/
Dgas.c49 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()
Dgas.h18 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/
Dcode.py220 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/
Dcode.py226 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/
Dsource-position-table.cc57 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/
Dformdata.c102 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/
Dspdy_response_with_callback.c45 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/
DAttrTagInfo.java67 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/
DDates.py97 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/
Ddecimal-3_1_0.err1 …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/
Dlife-of-a-tracing-session.md6 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/
DHandle.c88 TPMI_YES_NO more = NO; in PermanentCapGetHandles() local
110 more = YES; in PermanentCapGetHandles()
114 return more; in PermanentCapGetHandles()
DPP.c131 TPMI_YES_NO more = NO; in PhysicalPresenceCapGetCCList() local
153 more = YES; in PhysicalPresenceCapGetCCList()
158 return more; in PhysicalPresenceCapGetCCList()
/external/libmicrohttpd/src/testspdy/
Dtest_request_response_with_callback.c60 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/
Ddictnotes.txt25 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/
Dcalc.py39 more = raw_input('... ')
40 if more:
41 t.lexer.input(more + '\n')

12345678910>>...157