Searched defs:middle (Results 1 - 25 of 65) sorted by relevance

123

/external/v8/test/mjsunit/regress/
H A Dregress-2261.js97 function middle(x) { function
104 return middle(x);
/external/elfutils/src/tests/
H A Ddwfl-bug-addr-overflow.c55 Dwfl_Module *middle = dwfl_report_module (dwfl, "middle", local
58 assert (middle);
68 assert (mod == middle);
/external/v8/test/mjsunit/harmony/
H A Dblock-let-semantics.js177 function middle() {
186 return middle();
/external/clang/test/CXX/basic/basic.link/
H A Dp7.cpp9 void middle() { function in namespace:X
/external/icu/icu4c/source/common/unicode/
H A Dlistformatter.h41 ListFormatData(const UnicodeString& two, const UnicodeString& start, const UnicodeString& middle, const UnicodeString& end) : argument
42 twoPattern(two), startPattern(start), middlePattern(middle), endPattern(end) {}
/external/v8/test/mjsunit/
H A Dcyrillic.js38 middle: "\u0447", // che
53 middle: sigma, // sigma
70 var middle = lc ? chars.middle : chars.MIDDLE;
73 var middle_other_case = lc ? chars.MIDDLE : chars.middle;
77 assertTrue(Range(first, last).test(middle), 2);
85 assertTrue(Range(first, last, "i").test(middle), 8);
115 assertTrue(Range(greek.first, cyrillic.LAST, flag).test(greek.middle), 20);
129 assertEquals(ignore_case, Range(greek.first, cyrillic.LAST, flag).test(cyrillic.middle), 29);
196 assertEquals(ignore_case || full, re.test(cyrillic.middle), 6
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp8-0x.cpp8 struct middle { struct in struct:PR10127::outer
23 operator decltype(outer::middle::inner()) ();
24 operator decltype(outer::middle())::inner2 ();
25 operator decltype(outer())::middle::inner3 ();
26 str(int (decltype(outer::middle::inner())::*n)(),
27 int (decltype(outer::middle())::inner::*o)(),
28 int (decltype(outer())::middle::inner::*p)());
31 decltype(outer::middle::inner()) a;
33 a.decltype(outer::middle())::mfunc(); // expected-error{{'PR10127::outer::middle
[all...]
/external/google-breakpad/src/processor/
H A Dstatic_map-inl.h65 int middle; local
68 middle = begin + (end - begin) / 2;
69 compare_result = compare_(key, GetKeyAtIndex(middle));
71 return IteratorAtIndex(middle);
73 end = middle;
75 begin = middle + 1;
86 int middle; local
89 middle = begin + (end - begin) / 2;
90 comp_result = compare_(key, GetKeyAtIndex(middle));
92 return IteratorAtIndex(middle);
107 int middle; local
[all...]
/external/icu/icu4c/source/samples/uciter8/
H A Duciter8.c45 int32_t i, pos1, pos2, middle, length; local
56 /* set into the middle */
57 middle=length/2;
59 pos1=iter1->move(iter1, middle, UITER_ZERO);
60 if(pos1!=middle) {
61 log_err("%s->move(from 0 to middle %d)=%d does not move to the middle\n", n1, middle, pos1);
65 pos2=iter2->move(iter2, middle, UITER_ZERO);
66 if(pos2!=middle) {
214 testIteratorState(UCharIterator *iter1, UCharIterator *iter2, const char *n, int32_t middle) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSortUtil.java204 // the middle element in the array is our partitioning element
261 // the middle element in the array is our partitioning element
327 int low, int middle, int high, Comparator comp) {
328 int leftEnd = middle - 1;
332 while (low <= leftEnd && middle <= high) {
333 if (comp.compare(src[low], src[middle]) <= 0) {
336 dest[pos++] = src[middle++];
344 while (middle <= high) {
345 dest[pos++] = src[middle++];
326 merge(Object[] src, Object[] dest, int low, int middle, int high, Comparator comp) argument
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt.c50 * - middle -- fetch, shade, cliptest, viewport
61 struct draw_pt_middle_end *middle = NULL; local
98 if (draw->pt.middle.llvm) {
99 middle = draw->pt.middle.llvm;
102 middle = draw->pt.middle.fetch_emit;
104 middle = draw->pt.middle.fetch_shade_emit;
106 middle
[all...]
H A Ddraw_pt_fetch_emit.c43 /* The simplest 'middle end' in the new vertex code.
45 * The responsibilities of a middle end are to:
90 static void fetch_emit_prepare( struct draw_pt_middle_end *middle, argument
95 struct fetch_emit_middle_end *feme = (struct fetch_emit_middle_end *)middle;
183 static void fetch_emit_run( struct draw_pt_middle_end *middle, argument
190 struct fetch_emit_middle_end *feme = (struct fetch_emit_middle_end *)middle;
243 static void fetch_emit_run_linear( struct draw_pt_middle_end *middle, argument
248 struct fetch_emit_middle_end *feme = (struct fetch_emit_middle_end *)middle;
300 static boolean fetch_emit_run_linear_elts( struct draw_pt_middle_end *middle, argument
307 struct fetch_emit_middle_end *feme = (struct fetch_emit_middle_end *)middle;
[all...]
H A Ddraw_pt_fetch_shade_emit.c69 fse_prepare(struct draw_pt_middle_end *middle, argument
74 struct fetch_shade_emit *fse = (struct fetch_shade_emit *)middle;
183 fse_run_linear(struct draw_pt_middle_end *middle, argument
188 struct fetch_shade_emit *fse = (struct fetch_shade_emit *)middle;
245 fse_run(struct draw_pt_middle_end *middle, argument
252 struct fetch_shade_emit *fse = (struct fetch_shade_emit *)middle;
303 fse_run_linear_elts(struct draw_pt_middle_end *middle, argument
310 struct fetch_shade_emit *fse = (struct fetch_shade_emit *)middle;
349 fse_finish(struct draw_pt_middle_end *middle) argument
355 fse_destroy(struct draw_pt_middle_end *middle) argument
[all...]
H A Ddraw_pt_vsplit.c43 struct draw_pt_middle_end *middle; member in struct:vsplit_frontend
77 vsplit->middle->run(vsplit->middle,
148 struct draw_pt_middle_end *middle,
174 vsplit->middle = middle;
175 middle->prepare(middle, vsplit->prim, opt, &vsplit->max_vertices);
186 vsplit->middle->finish(vsplit->middle);
146 vsplit_prepare(struct draw_pt_front_end *frontend, unsigned in_prim, struct draw_pt_middle_end *middle, unsigned opt) argument
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_font/
H A Dfpdf_font_charset.cpp68 int middle = (begin + end) / 2; local
69 FX_WORD middlecode = UnicodeAlts[middle].m_Unicode;
71 end = middle - 1;
73 begin = middle + 1;
75 return UnicodeAlts[middle].m_Alter;
/external/toybox/
H A Dmain.c32 int top, bottom, middle; local
48 middle = (top+bottom)/2;
49 if (middle<bottom || middle>top) return NULL;
50 result = strcmp(name,toy_list[middle].name);
51 if (!result) return toy_list+middle;
52 if (result<0) top=--middle;
53 else bottom = ++middle;
/external/bison/lib/
H A Dgetopt.c150 int middle = d->__last_nonopt;
181 while (top > middle && middle > bottom)
183 if (top - middle > middle - bottom)
186 int len = middle - bottom;
193 argv[bottom + i] = argv[top - (middle - bottom) + i];
194 argv[top - (middle - bottom) + i] = tem;
195 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
203 int len = top - middle;
147 int middle = d->__last_nonopt; local
[all...]
/external/bison/src/
H A Dlalr.c137 goto_number middle; local
146 middle = (low + high) / 2;
147 s = from_state[middle];
149 return middle;
151 low = middle + 1;
153 high = middle - 1;
/external/google-breakpad/src/common/
H A Dtest_assembler_unittest.cc1389 Section middle; local
1390 middle.Append(" she");
1391 section.Append(middle);
1403 Section middle; local
1405 middle.B32(m);
1406 section.Append(middle);
/external/icu/icu4c/source/common/
H A Dlistformatter.cpp38 const UnicodeString& middle,
42 middlePattern(middle),
185 UnicodeString two, start, middle, end; local
188 getStringByKey(rb, "middle", middle, errorCode);
194 ListFormatInternal* result = new ListFormatInternal(two, start, middle, end);
35 ListFormatInternal( const UnicodeString& two, const UnicodeString& start, const UnicodeString& middle, const UnicodeString& end) argument
/external/icu/icu4c/source/i18n/
H A Dcollationweights.cpp242 WeightRange lower[5], middle, upper[5]; /* [0] and [1] are not used - this simplifies indexing */ local
244 uprv_memset(&middle, 0, sizeof(middle));
253 * middle 1
273 middle.start=incWeightTrail(weight, middleLength);
276 // which would yield a middle range starting at 0.
277 middle.start=0xffffffff; // no middle range
291 middle.end=decWeightTrail(weight, middleLength);
293 /* set the middle rang
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dnfsprep.c153 int left, middle, right,rc; local
159 middle = (left+right)/2;
160 rc=strncmp(sortedArr[middle],target, targetLen);
163 left = middle+1;
165 right = middle -1;
167 return middle;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DListFormatter.java34 private final SimplePatternFormatter middle; field in class:ListFormatter
100 * @param middle
110 public ListFormatter(String two, String start, String middle, String end) { argument
114 SimplePatternFormatter.compile(middle),
120 private ListFormatter(SimplePatternFormatter two, SimplePatternFormatter start, SimplePatternFormatter middle, SimplePatternFormatter end, ULocale locale) { argument
123 this.middle = middle;
218 builder.append(middle, it.next(), index == idx);
335 SimplePatternFormatter.compile(r.getWithFallback("listPattern/" + style + "/middle").getString()),
/external/marisa-trie/lib/marisa/
H A Dbitvector.cc402 UInt32 middle = (begin + end) / 2; local
403 if (i < (middle * 512) - ranks_[middle].abs()) {
404 end = middle;
406 begin = middle;
486 UInt32 middle = (begin + end) / 2; local
487 if (i < ranks_[middle].abs()) {
488 end = middle;
490 begin = middle;
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dbitvector.cc403 UInt32 middle = (begin + end) / 2; local
404 if (i < (middle * 512) - ranks_[middle].abs()) {
405 end = middle;
407 begin = middle;
488 UInt32 middle = (begin + end) / 2; local
489 if (i < ranks_[middle].abs()) {
490 end = middle;
492 begin = middle;

Completed in 900 milliseconds

123