Searched defs:se (Results 1 - 25 of 83) sorted by relevance

1234

/external/chromium_org/base/third_party/dmg_fp/
H A Dg_fmt.cc35 char *b0, *s0, *se; local
45 s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se);
52 if (decpt <= -4 || decpt > se - s + 5) {
/external/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/
H A Drotate.pass.cpp112 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
113 r = std::rotate(Iter(ie), Iter(ie), Iter(ie+se));
114 assert(base(r) == ie+se);
120 r = std::rotate(Iter(ie), Iter(ie+1), Iter(ie+se));
127 r = std::rotate(Iter(ie), Iter(ie+2), Iter(ie+se));
134 r = std::rotate(Iter(ie), Iter(ie+3), Iter(ie+se));
141 r = std::rotate(Iter(ie), Iter(ie+4), Iter(ie+se));
148 r = std::rotate(Iter(ie), Iter(ie+se), Iter(ie+se));
314 const unsigned se local
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DAbstractManifestWriter.java118 protected String getFormat(SampleEntry se) { argument
119 String type = se.getType();
121 OriginalFormatBox frma = se.getBoxes(OriginalFormatBox.class, true).get(0);
/external/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
H A Dunique.pass.cpp57 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
58 r = std::unique(Iter(ie), Iter(ie+se));
132 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
133 r = std::unique(Iter(ie), Iter(ie+se));
H A Dunique_copy.pass.cpp60 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
61 int je[se] = {-1};
62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je));
H A Dunique_copy_pred.pass.cpp79 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
80 int je[se] = {-1};
82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal());
87 assert(count_equal::count == se-1);
H A Dunique_pred.pass.cpp75 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
77 r = std::unique(Iter(ie), Iter(ie+se), count_equal());
82 assert(count_equal::count == se-1);
166 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
168 r = std::unique(Iter(ie), Iter(ie+se), count_equal());
173 assert(count_equal::count == se-1);
/external/libnfc-nxp/Linux_x86/
H A DphOsalNfc_Timer.c173 struct sigevent se; local
175 se.sigev_notify = SIGEV_THREAD;
176 se.sigev_notify_function = phOsalNfc_Timer_Expired;
177 se.sigev_notify_attributes = NULL;
186 se.sigev_value.sival_int = (int)timerid;
189 if(timer_create(CLOCK_REALTIME, &se, &(timers[timerid].handle)) == -1)
/external/bluetooth/bluedroid/hci/src/
H A Dlpm.c135 struct sigevent se; local
142 se.sigev_notify = SIGEV_THREAD;
143 se.sigev_value.sival_ptr = &bt_lpm_cb.timer_id;
144 se.sigev_notify_function = lpm_idle_timeout;
145 se.sigev_notify_attributes = NULL;
147 status = timer_create(CLOCK_MONOTONIC, &se, &bt_lpm_cb.timer_id);
H A Dbt_hci_bdroid.c281 struct sigevent se; local
284 se.sigev_notify = SIGEV_THREAD;
285 se.sigev_value.sival_ptr = &hc_cb.epilog_timer_id;
286 se.sigev_notify_function = epilog_wait_timeout;
287 se.sigev_notify_attributes = NULL;
289 status = timer_create(CLOCK_MONOTONIC, &se, &hc_cb.epilog_timer_id);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
H A Dvp9_variance_avx2.c135 const int se = se1 + se2; local
137 return *sse - (((int64_t)se * se) >> 12);
147 const int se = vp9_sub_pixel_variance32xh_avx2(src, src_stride, x_offset, local
150 return *sse - (((int64_t)se * se) >> 10);
170 const int se = se1 + se2; local
174 return *sse - (((int64_t)se * se) >> 12);
186 const int se local
[all...]
/external/clang/test/Parser/
H A Dcxx11-user-defined-literals.cpp60 S<U"e"_id> se; variable
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_variance_avx2.c194 int se = vp9_sub_pixel_variance32xh_avx2(src, src_stride, x_offset, local
203 se += se2;
206 return sse - (((int64_t)se * se) >> 12);
218 int se = vp9_sub_pixel_variance32xh_avx2(src, src_stride, x_offset, local
222 return sse - (((int64_t)se * se) >> 10);
236 int se = vp9_sub_pixel_avg_variance32xh_avx2(src, src_stride, x_offset, local
244 se += se2;
248 return sse - (((int64_t)se * s
261 int se = vp9_sub_pixel_avg_variance32xh_avx2(src, src_stride, x_offset, local
[all...]
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpander.h94 explicit SCEVExpander(ScalarEvolution &se, const char *name) argument
95 : SE(se), IVName(name), IVIncInsertLoop(nullptr), IVIncInsertPos(nullptr),
97 Builder(se.getContext(), TargetFolder(se.DL)) {
/external/llvm/lib/Analysis/
H A DScalarEvolutionNormalization.cpp77 ScalarEvolution &se, DominatorTree &dt):
78 Kind(kind), Loops(loops), SE(se), DT(dt) {}
76 PostIncTransform(TransformKind kind, PostIncLoopSet &loops, ScalarEvolution &se, DominatorTree &dt) argument
/external/chromium_org/third_party/skia/src/views/animated/
H A DSkWidgetViews.cpp27 const char* get_skin_enum_path(SkinEnum se) argument
29 SkASSERT((unsigned)se < kSkinEnumCount);
39 return gSkinPaths[se];
57 void init_skin_anim(SkinEnum se, SkAnimator* anim) argument
59 init_skin_anim(get_skin_enum_path(se), anim);
62 void init_skin_paint(SkinEnum se, SkPaint* paint) argument
69 init_skin_anim(se, &anim);
/external/chromium_org/v8/src/
H A Dlog.h298 void TimerEvent(StartEnd se, const char* name);
303 static void EmptyTimerEventsLogger(const char* name, int se) {} argument
304 static void DefaultTimerEventsLogger(const char* name, int se);
450 void LogTimerEvent(Logger::StartEnd se);
/external/elfutils/0.153/libebl/
H A Deblgstrtab.c383 ebl_gstrtaboffset (struct Ebl_GStrent *se) argument
385 return se->offset;
H A Deblstrtab.c367 ebl_strtaboffset (struct Ebl_Strent *se) argument
369 return se->offset;
374 ebl_string (struct Ebl_Strent *se) argument
376 assert (se->string != NULL);
378 return se->string;
H A Deblwstrtab.c377 ebl_wstrtaboffset (struct Ebl_WStrent *se) argument
379 return se->offset;
/external/f2fs-tools/fsck/
H A Ddump.c26 struct seg_entry *se; local
38 se = get_seg_entry(sbi, segno);
41 snprintf(buf, BUF_SZ, "%5d %8d\n", segno, se->valid_blocks);
46 DBG(4, "SIT[0x%3x] : 0x%x\n", segno, se->valid_blocks);
47 if (se->valid_blocks == 0x0) {
50 ASSERT(se->valid_blocks <= 512);
51 valid_blocks += se->valid_blocks;
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dhist.c243 struct sort_entry *se; local
246 list_for_each_entry(se, &hist_entry__sort_list, list) {
247 if (se->elide)
251 ret += se->se_snprintf(he, s + ret, size - ret,
252 hists__col_len(hists, se->se_width_idx));
264 struct sort_entry *se; local
277 list_for_each_entry(se, &hist_entry__sort_list, list)
278 if (!se->elide)
279 ret += 2 + hists__col_len(hists, se->se_width_idx);
/external/skia/src/views/animated/
H A DSkWidgetViews.cpp27 const char* get_skin_enum_path(SkinEnum se) argument
29 SkASSERT((unsigned)se < kSkinEnumCount);
39 return gSkinPaths[se];
57 void init_skin_anim(SkinEnum se, SkAnimator* anim) argument
59 init_skin_anim(get_skin_enum_path(se), anim);
62 void init_skin_paint(SkinEnum se, SkPaint* paint) argument
69 init_skin_anim(se, &anim);
/external/bluetooth/bluedroid/main/
H A Dbte_main.c391 struct sigevent se; local
396 se.sigev_notify = SIGEV_THREAD;
397 se.sigev_value.sival_ptr = &preload_retry_cb.timer_id;
398 se.sigev_notify_function = preload_wait_timeout;
399 se.sigev_notify_attributes = NULL;
401 status = timer_create(CLOCK_MONOTONIC, &se, &preload_retry_cb.timer_id);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
H A Dhists.c207 struct sort_entry *se; local
227 list_for_each_entry(se, &hist_entry__sort_list, list) {
228 if (se->elide)
231 if (se == &sort_sym)
254 list_for_each_entry(se, &hist_entry__sort_list, list) {
255 if (se->elide)
259 -1, se->se_header,
305 list_for_each_entry(se, &hist_entry__sort_list, list) {
306 if (se->elide)
309 se
[all...]

Completed in 650 milliseconds

1234