HomeSort by relevance Sort by last modified time
    Searched refs:mp (Results 226 - 250 of 568) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/logd/
LogKlog.cpp 736 const char* mp = strnrchr(tag, taglen, ']'); local
737 if (mp && (++mp < etag)) {
738 ssize_t s = etag - mp;
739 if (((s + s) < taglen) && !fastcmp<memcmp>(mp, mp - 1 - s, s)) {
740 taglen = mp - tag;
  /external/iptables/libxtables/
xtoptions.c 78 struct option *merge, *mp; local
97 merge = malloc(sizeof(*mp) * (num_orig + num_old + num_new + 1));
102 memcpy(merge, orig_opts, sizeof(*mp) * num_orig);
103 mp = merge + num_orig;
109 for (i = 0; i < num_new; ++i, ++mp, ++entry) {
110 mp->name = entry->name;
111 mp->has_arg = entry->type != XTTYPE_NONE;
112 mp->flag = NULL;
113 mp->val = entry->id + *offset;
117 memcpy(mp, oldopts, sizeof(*mp) * num_old)
    [all...]
  /external/valgrind/memcheck/
mc_leakcheck.c 342 MC_Mempool *mp; local
368 while ( (mp = VG_(HT_Next)(MC_(mempool_list))) ) {
369 VG_(HT_ResetIter)(mp->chunks);
370 while ( (mc = VG_(HT_Next)(mp->chunks)) ) {
403 while ( (mp = VG_(HT_Next)(MC_(mempool_list))) ) {
404 VG_(HT_ResetIter)(mp->chunks);
405 while ( (mc = VG_(HT_Next)(mp->chunks)) ) {
1974 MC_Mempool* mp; local
2104 MC_Mempool* mp; local
    [all...]
  /prebuilts/go/darwin-x86/src/image/draw/
draw.go 71 // destination image's coordinate space) and shifts the points sp and mp by
73 func clip(dst Image, r *image.Rectangle, src image.Image, sp *image.Point, mask image.Image, mp *image.Point) {
78 *r = r.Intersect(mask.Bounds().Add(orig.Sub(*mp)))
87 if mp != nil {
88 mp.X += dx
89 mp.Y += dy
104 // DrawMask aligns r.Min in dst with sp in src and mp in mask and then replaces the rectangle r
106 func DrawMask(dst Image, r image.Rectangle, src image.Image, sp image.Point, mask image.Image, mp image.Point, op Op) {
107 clip(dst, &r, src, &sp, mask, &mp)
150 drawGlyphOver(dst0, r, src0, mask0, mp)
    [all...]
  /prebuilts/go/linux-x86/src/image/draw/
draw.go 71 // destination image's coordinate space) and shifts the points sp and mp by
73 func clip(dst Image, r *image.Rectangle, src image.Image, sp *image.Point, mask image.Image, mp *image.Point) {
78 *r = r.Intersect(mask.Bounds().Add(orig.Sub(*mp)))
87 if mp != nil {
88 mp.X += dx
89 mp.Y += dy
104 // DrawMask aligns r.Min in dst with sp in src and mp in mask and then replaces the rectangle r
106 func DrawMask(dst Image, r image.Rectangle, src image.Image, sp image.Point, mask image.Image, mp image.Point, op Op) {
107 clip(dst, &r, src, &sp, mask, &mp)
150 drawGlyphOver(dst0, r, src0, mask0, mp)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
trace.go 202 mp := acquirem()
204 stackID := traceStackID(mp, stkBuf, 2)
205 releasem(mp)
499 mp, pid, bufp := traceAcquireBuffer()
504 // turned off between the check and now. Check again. traceLockBuffer did mp.locks++,
505 // StopTrace does stopTheWorld, and stopTheWorld waits for mp.locks to go back to zero,
509 if !trace.enabled && !mp.startingtrace {
547 buf.varint(traceStackID(mp, buf.stk[:], skip))
560 func traceStackID(mp *m, buf []uintptr, skip int) uint64 {
562 gp := mp.cur
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
trace.go 202 mp := acquirem()
204 stackID := traceStackID(mp, stkBuf, 2)
205 releasem(mp)
499 mp, pid, bufp := traceAcquireBuffer()
504 // turned off between the check and now. Check again. traceLockBuffer did mp.locks++,
505 // StopTrace does stopTheWorld, and stopTheWorld waits for mp.locks to go back to zero,
509 if !trace.enabled && !mp.startingtrace {
547 buf.varint(traceStackID(mp, buf.stk[:], skip))
560 func traceStackID(mp *m, buf []uintptr, skip int) uint64 {
562 gp := mp.cur
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/
QCamera3PostProc.cpp     [all...]
  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 268 MirrorPair mp = {0}; local
271 mp.from = code;
272 res = (MirrorPair *) bsearch(&mp, mirror_pairs, BIDI_MIRROR_LEN,
  /external/opencv/cvaux/src/
cvhmm1d.cpp 696 double* mp = mix_prob;
741 for( n = 0; n < obs_x; n++, mp += n_states )
746 mp[l] *= state[l].weight[0];
754 for( n = 0; n < obs_x; n++, mp += n_states )
761 mp[l + ofs] += mp[l] * state[l].weight[m];
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/media/
NotificationPlayer.java 277 public void onCompletion(MediaPlayer mp) {
302 public boolean onError(MediaPlayer mp, int what, int extra) {
305 onCompletion(mp);
  /frameworks/support/leanback/src/main/java/androidx/leanback/media/
MediaPlayerGlue.java 443 public void onPrepared(MediaPlayer mp) {
460 public void onBufferingUpdate(MediaPlayer mp, int percent) {
464 getControlsRow().setBufferedProgress((int) (mp.getDuration() * (percent / 100f)));
  /packages/apps/Messaging/src/com/android/messaging/ui/
AudioAttachmentView.java 232 public void onCompletion(final MediaPlayer mp) {
246 public void onPrepared(final MediaPlayer mp) {
264 public boolean onError(final MediaPlayer mp, final int what, final int extra) {
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
PlayerActivity.java 287 public boolean onError(MediaPlayer mp, int what, int extra) {
306 public void onPrepared(MediaPlayer mp) {
308 mDuration = mp.getDuration();
318 public void onCompletion(MediaPlayer mp) {
  /device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_rdi.c 185 rdi_len = buf_planes->plane_info.mp[0].len;
187 buf_planes->plane_info.mp[0].stride, buf_planes->plane_info.mp[0].scanline,
188 buf_planes->plane_info.mp[0].len, buf_planes->plane_info.frame_len);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
lexer.py 74 mp = self.match_position
84 lines = re.findall(r"\n", self.text[mp:self.match_position])
85 cp = mp - 1
88 self.matched_charpos = mp - cp
92 #print "MATCH:", regexp, "\n", self.text[mp : mp + 15], \
  /external/syslinux/com32/modules/
cpuidtest.c 111 if (cpu.flags.mp)
112 printf("mp ");
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
mm_qcamera_rdi.c 186 rdi_len = buf_planes->plane_info.mp[0].len;
188 buf_planes->plane_info.mp[0].stride, buf_planes->plane_info.mp[0].scanline,
189 buf_planes->plane_info.mp[0].len, buf_planes->plane_info.frame_len);
  /prebuilts/go/darwin-x86/misc/ios/
detect.go 36 for _, mp := range mps {
44 out := output(parseMobileProvision(mp))
  /prebuilts/go/linux-x86/misc/ios/
detect.go 36 for _, mp := range mps {
44 out := output(parseMobileProvision(mp))
  /external/wpa_supplicant_8/src/tls/
libtommath.c 150 static int mp_init_multi(mp_int *mp, ...);
153 static void mp_clear_multi(mp_int *mp, ...);
1449 static int mp_init_multi(mp_int *mp, ...)
1453 mp_int* cur_arg = mp;
1456 va_start(args, mp); /* init args to next argument from caller */
2962 mp_digit buf, mp; local
    [all...]
  /frameworks/support/media-widget/src/main/java/androidx/media/widget/impl_with_mp1/
VideoView2ImplBaseWithMp1.java     [all...]
  /cts/tests/tests/media/src/android/media/cts/
ExtractDecodeEditEncodeMuxTest.java 545 final MediaPlayer mp = new MediaPlayer(); local
548 mp.setOnErrorListener(new MediaPlayer.OnErrorListener() {
558 mp.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
565 mp.setDataSource(mOutputFile);
566 mp.setDisplay(activity.getSurfaceHolder());
567 mp.prepare();
568 mp.start();
573 mp.release();
    [all...]
MediaRandomTest.java 186 public boolean onError(MediaPlayer mp, int what, int extra) {
187 if (mPlayer == mp &&
  /device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpeg_test.c 353 p_params->src_main_buf[i].offset.mp[0].len = (uint32_t)size;
354 p_params->src_main_buf[i].offset.mp[0].stride = p_input->width;
355 p_params->src_main_buf[i].offset.mp[0].scanline = p_input->height;
356 p_params->src_main_buf[i].offset.mp[1].len = (uint32_t)(size >> 1);
364 p_params->src_thumb_buf[i].offset.mp[0].len = (uint32_t)size;
365 p_params->src_thumb_buf[i].offset.mp[0].stride = p_input->width;
366 p_params->src_thumb_buf[i].offset.mp[0].scanline = p_input->height;
367 p_params->src_thumb_buf[i].offset.mp[1].len = (uint32_t)(size >> 1);

Completed in 807 milliseconds

1 2 3 4 5 6 7 8 91011>>