Searched refs:middle (Results 1 - 25 of 164) sorted by relevance

1234567

/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/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_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...]
H A Ddraw_pt_fetch_shade_pipeline.c54 static void fetch_pipeline_prepare( struct draw_pt_middle_end *middle, argument
59 struct fetch_pipeline_middle_end *fpme = (struct fetch_pipeline_middle_end *)middle;
200 static void fetch_pipeline_generic( struct draw_pt_middle_end *middle, argument
204 struct fetch_pipeline_middle_end *fpme = (struct fetch_pipeline_middle_end *)middle;
294 static void fetch_pipeline_run( struct draw_pt_middle_end *middle, argument
301 struct fetch_pipeline_middle_end *fpme = (struct fetch_pipeline_middle_end *)middle;
319 fetch_pipeline_generic( middle, &fetch_info, &prim_info );
323 static void fetch_pipeline_linear_run( struct draw_pt_middle_end *middle, argument
328 struct fetch_pipeline_middle_end *fpme = (struct fetch_pipeline_middle_end *)middle;
346 fetch_pipeline_generic( middle,
351 fetch_pipeline_linear_run_elts( struct draw_pt_middle_end *middle, unsigned start, unsigned count, const ushort *draw_elts, unsigned draw_count, unsigned prim_flags ) argument
[all...]
H A Ddraw_pt_fetch_shade_pipeline_llvm.c61 llvm_middle_end_prepare( struct draw_pt_middle_end *middle, argument
66 struct llvm_middle_end *fpme = (struct llvm_middle_end *)middle;
214 llvm_pipeline_generic( struct draw_pt_middle_end *middle, argument
218 struct llvm_middle_end *fpme = (struct llvm_middle_end *)middle;
306 static void llvm_middle_end_run( struct draw_pt_middle_end *middle, argument
313 struct llvm_middle_end *fpme = (struct llvm_middle_end *)middle;
331 llvm_pipeline_generic( middle, &fetch_info, &prim_info );
335 static void llvm_middle_end_linear_run( struct draw_pt_middle_end *middle, argument
340 struct llvm_middle_end *fpme = (struct llvm_middle_end *)middle;
358 llvm_pipeline_generic( middle,
364 llvm_middle_end_linear_run_elts( struct draw_pt_middle_end *middle, unsigned start, unsigned count, const ushort *draw_elts, unsigned draw_count, unsigned prim_flags ) argument
[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_vsplit_tmp.h111 return vsplit->middle->run_linear_elts(vsplit->middle,
235 vsplit->middle->run_linear(vsplit->middle, istart, icount, flags);
252 vsplit->middle->run(vsplit->middle, vsplit->fetch_elts, nr,
256 vsplit->middle->run_linear(vsplit->middle, istart, icount, flags);
275 vsplit->middle->run(vsplit->middle, vspli
[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...]
/external/libdivsufsort/lib/
H A Dsssort.c264 saidx_t *middle; local
268 middle = first + t / 2;
272 return ss_median3(Td, PA, first, middle, last - 1);
275 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1);
280 middle = ss_median3(Td, PA, middle - t, middle, middle + t);
282 return ss_median3(Td, PA, first, middle, last);
461 ss_rotate(saidx_t *first, saidx_t *middle, saidx_ argument
502 ss_inplacemerge(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t depth) argument
545 ss_mergeforward(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t *buf, saidx_t depth) argument
595 ss_mergebackward(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t *buf, saidx_t depth) argument
654 ss_swapmerge(const sauchar_t *T, const saidx_t *PA, saidx_t *first, saidx_t *middle, saidx_t *last, saidx_t *buf, saidx_t bufsize, saidx_t depth) argument
753 saidx_t *b, *middle, *curbuf; local
[all...]
/external/chromium-trace/catapult/third_party/polymer/components/core-icon/
H A Dcore-icon.css10 vertical-align: middle;
/external/opencv3/3rdparty/jinja2/
H A Dutils.py20 '^(?P<lead>(?:%s)*)(?P<middle>.*?)(?P<trail>(?:%s)*)$' % (
205 lead, middle, trail = match.groups()
206 if middle.startswith('www.') or (
207 '@' not in middle and
208 not middle.startswith('http://') and
209 not middle.startswith('https://') and
210 len(middle) > 0 and
211 middle[0] in _letters + _digits and (
212 middle.endswith('.org') or
213 middle
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DSortedLists.java73 int middle = (lower + upper + 1) >>> 1;
74 int c = comparator.compare(list.get(middle), key);
76 upper = middle - 1;
78 lower = middle;
98 int middle = (lower + upper) >>> 1;
99 int c = comparator.compare(list.get(middle), key);
101 lower = middle + 1;
103 upper = middle;
271 int middle = (lower + upper) >>> 1;
272 int c = comparator.compare(key, list.get(middle));
[all...]
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dfuzzy.py54 parameters: (left, middle, right)
56 0.0 to 1.0, when left <= x <= middle
57 1.0, when x == middle
58 1.0 to 0.0, when middle <= x <= right
65 Note: - When x is near 'middle', the grade would be pretty close to 1.
72 self.left, self.middle, self.right = self.para_values
73 self.width_right = self.right - self.middle
74 self.width_left = self.middle - self.left
78 if x == self.middle:
82 elif x > self.middle
[all...]
/external/llvm/test/MC/AsmParser/
H A Dmacro-args.s32 middle _$0, $1
34 .macro middle
/external/v8/test/mjsunit/regress/
H A Dregress-2261.js97 function middle(x) { function
104 return middle(x);
/external/elfutils/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/dng_sdk/source/
H A Ddng_1d_table.cpp70 uint32 middle = (lower + upper) >> 1; local
72 fTable [middle] = (real32) function.Evaluate (middle * (1.0 / (real64) kTableSize));
77 SubDivide (function, lower, middle, maxDelta);
79 SubDivide (function, middle, upper, maxDelta);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
H A DNFS4StringPrep.java103 int left, middle, right,rc;
109 middle = (left+right)/2;
110 rc= sortedArr[middle].compareTo(target);
113 left = middle+1;
115 right = middle -1;
117 return middle;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DNFS4StringPrep.java102 int left, middle, right,rc;
108 middle = (left+right)/2;
109 rc= sortedArr[middle].compareTo(target);
112 left = middle+1;
114 right = middle -1;
116 return middle;
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
H A Dexception_formatter.py97 def _AbbreviateMiddleOfString(target, middle, max_length):
100 if len(middle) > max_length:
101 raise ValueError('middle must not be greater than max_length')
105 half_length = (max_length - len(middle)) / 2.
106 return (target[:int(math.floor(half_length))] + middle +
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
H A Dexception_formatter.py86 def _AbbreviateMiddleOfString(target, middle, max_length):
89 if len(middle) > max_length:
90 raise ValueError('middle must not be greater than max_length')
94 half_length = (max_length - len(middle)) / 2.
95 return (target[:int(math.floor(half_length))] + middle +
/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/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;

Completed in 1193 milliseconds

1234567