HomeSort by relevance Sort by last modified time
    Searched refs:dm (Results 1 - 25 of 204) sorted by null

1 2 3 4 5 6 7 8 9

  /external/skia/tests/
DiscardableMemoryTest.cpp 15 SkAutoTDelete<SkDiscardableMemory> dm(SkDiscardableMemory::Create(len));
16 REPORTER_ASSERT(reporter, dm.get() != nullptr);
17 if (nullptr == dm.get()) {
20 void* ptr = dm->data();
23 dm->unlock();
24 bool success = dm->lock();
29 ptr = dm->data();
31 dm->unlock();
  /external/webrtc/talk/media/devices/
dummydevicemanager_unittest.cc 36 DummyDeviceManager dm; local
37 EXPECT_TRUE(dm.Init());
38 dm.Terminate();
43 DummyDeviceManager dm; local
44 int capabilities = dm.GetCapabilities();
51 DummyDeviceManager dm; local
52 EXPECT_TRUE(dm.Init());
54 EXPECT_TRUE(dm.GetAudioInputDevices(&audio_ins));
55 EXPECT_TRUE(dm.GetAudioOutputDevices(&audio_outs));
56 EXPECT_TRUE(dm.GetVideoCaptureDevices(&video_ins))
61 DummyDeviceManager dm; local
76 DummyDeviceManager dm; local
86 DummyDeviceManager dm; local
    [all...]
devicemanager_unittest.cc 116 scoped_ptr<DeviceManagerInterface> dm(DeviceManagerFactory::Create());
117 EXPECT_TRUE(dm->Init());
118 dm->Terminate();
124 scoped_ptr<DeviceManagerInterface> dm(DeviceManagerFactory::Create());
127 EXPECT_TRUE(dm->Init());
128 EXPECT_TRUE(dm->GetVideoCaptureDevices(&devices));
129 dm->Terminate();
135 EXPECT_TRUE(dm->Init());
136 dm->Terminate();
143 EXPECT_TRUE(dm->Init())
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
TypedValueTest.java 38 DisplayMetrics dm = new DisplayMetrics(); local
39 dm.density = 1.1f;
40 dm.heightPixels = 100;
41 dm.scaledDensity = 2.1f;
42 dm.xdpi = 200f;
43 dm.ydpi = 300f;
45 & TypedValue.COMPLEX_UNIT_MASK, TypedValue.complexToFloat(10), dm);
47 assertEquals(EXPECTED, TypedValue.complexToDimension(10, dm));
48 assertEquals((int)EXPECTED, TypedValue.complexToDimensionPixelOffset(10, dm));
80 DisplayMetrics dm = new DisplayMetrics() local
129 DisplayMetrics dm = new DisplayMetrics(); local
195 DisplayMetrics dm = new DisplayMetrics(); local
    [all...]
  /external/skia/src/lazy/
SkDiscardableMemoryPool.cpp 63 void free(PoolDiscardableMemory* dm);
65 bool lock(PoolDiscardableMemory* dm);
67 void unlock(PoolDiscardableMemory* dm);
160 PoolDiscardableMemory* dm = cur; local
161 SkASSERT(dm->fPointer != nullptr);
162 sk_free(dm->fPointer);
163 dm->fPointer = nullptr;
164 SkASSERT(fUsed >= dm->fBytes);
165 fUsed -= dm->fBytes;
169 fList.remove(dm);
181 PoolDiscardableMemory* dm = new PoolDiscardableMemory(this, addr, bytes); local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
ccr.d 10 [ ]+4:[ ]+bff5[ ]+setf[ ]+cvznxi[be][dm]
11 [ ]+6:[ ]+fff5[ ]+clearf[ ]+cvznxi[be][dm]
14 [ ]+c:[ ]+b995[ ]+setf[ ]+cnx[dm]
15 [ ]+e:[ ]+f995[ ]+clearf[ ]+cnx[dm]
32 [ ]+30:[ ]+b085[ ]+setf[ ]+[dm]
33 [ ]+32:[ ]+f085[ ]+clearf[ ]+[dm]
50 [ ]+54:[ ]+f0f5[ ]+clearf[ ]+xi[be][dm]
51 [ ]+56:[ ]+b0f5[ ]+setf[ ]+xi[be][dm]
52 [ ]+58:[ ]+f0f5[ ]+clearf[ ]+xi[be][dm]
53 [ ]+5a:[ ]+b0f5[ ]+setf[ ]+xi[be][dm]
    [all...]
  /system/bt/bta/
Android.mk 8 ./dm/bta_dm_ci.c \
9 ./dm/bta_dm_act.c \
10 ./dm/bta_dm_pm.c \
11 ./dm/bta_dm_main.c \
12 ./dm/bta_dm_cfg.c \
13 ./dm/bta_dm_api.c \
14 ./dm/bta_dm_sco.c \
87 $(LOCAL_PATH)/dm \
  /external/opencv3/modules/video/src/
tvl1flow.cpp 172 } dm; member in class:__anon21229::OpticalFlowDual_TVL1
389 dm.I0s.resize(nscales);
390 dm.I1s.resize(nscales);
391 dm.u1s.resize(nscales);
392 dm.u2s.resize(nscales);
393 dm.u3s.resize(nscales);
395 I0.convertTo(dm.I0s[0], dm.I0s[0].depth(), I0.depth() == CV_8U ? 1.0 : 255.0);
396 I1.convertTo(dm.I1s[0], dm.I1s[0].depth(), I1.depth() == CV_8U ? 1.0 : 255.0)
    [all...]
  /external/skia/src/core/
SkMipMap.h 50 SkMipMap(size_t size, SkDiscardableMemory* dm) : INHERITED(size, dm) {}
  /system/vold/
Devmapper.h 21 #include <linux/dm-ioctl.h>
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
TrampolineActivity.java 58 final DownloadManager dm = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE); local
59 dm.setAccessAllDownloads(true);
65 final Cursor cursor = dm.query(new Query().setFilterById(id));
133 final DownloadManager dm = (DownloadManager) context.getSystemService( local
135 dm.setAccessAllDownloads(true);
155 dm.forceDownload(id);
164 dm.remove(id);
195 final DownloadManager dm = (DownloadManager) context.getSystemService( local
197 dm.setAccessAllDownloads(true);
227 dm.remove(id)
    [all...]
  /external/opencv3/modules/features2d/misc/java/src/cpp/
features2d_converters.cpp 44 DMatch dm((int)v[0], (int)v[1], (int)v[2], v[3]);
45 v_dm.push_back(dm);
57 DMatch dm = v_dm[i]; local
58 mat.at< Vec<float, 4> >(i, 0) = Vec<float, 4>((float)dm.queryIdx, (float)dm.trainIdx, (float)dm.imgIdx, dm.distance);
  /external/skia/example/
SkiaSDLExample.cpp 150 SDL_DisplayMode dm; local
151 if (SDL_GetDesktopDisplayMode(0, &dm) != 0) {
157 SDL_WINDOWPOS_CENTERED, dm.w, dm.h, windowFlags);
180 glViewport(0, 0, dm.w, dm.h);
200 desc.fWidth = dm.w;
201 desc.fHeight = dm.h;
254 canvas->translate(dm.w / 2.0, dm.h / 2.0)
    [all...]
  /external/srtp/crypto/kernel/
crypto_kernel.c 180 kernel_debug_module_t *dm = crypto_kernel.debug_module_list; local
222 while (dm != NULL) {
223 printf(" %s ", dm->mod->name);
224 if (dm->mod->on)
228 dm = dm->next;
236 kernel_debug_module_t *dm = crypto_kernel.debug_module_list; local
240 while (dm != NULL) {
241 printf(" %s ", dm->mod->name);
242 if (dm->mod->on
    [all...]
  /bionic/libc/kernel/uapi/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /development/ndk/platforms/android-21/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /external/kernel-headers/original/uapi/linux/
dm-log-userspace.h 10 #include <linux/dm-ioctl.h> /* For DM_UUID_LEN */
15 * in dm-dirty-log.h. Its purpose is simply to pass the parameters and
48 * DM_ULOG_CTR corresponds to (found in dm-dirty-log.h):
73 * DM_ULOG_DTR corresponds to (found in dm-dirty-log.h):
92 * DM_ULOG_PRESUSPEND corresponds to (found in dm-dirty-log.h):
111 * DM_ULOG_POSTSUSPEND corresponds to (found in dm-dirty-log.h):
130 * DM_ULOG_RESUME corresponds to (found in dm-dirty-log.h):
149 * DM_ULOG_GET_REGION_SIZE corresponds to (found in dm-dirty-log.h):
167 * DM_ULOG_IS_CLEAN corresponds to (found in dm-dirty-log.h):
185 * DM_ULOG_IN_SYNC corresponds to (found in dm-dirty-log.h)
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
Watermark.java 56 Watermark(Display display, DisplayMetrics dm, SurfaceSession session, String[] tokens) {
87 TypedValue.COMPLEX_UNIT_DIP, 20, dm);
98 TypedValue.COMPLEX_UNIT_PX, mTextWidth*2, dm);
100 TypedValue.COMPLEX_UNIT_PX, mTextHeight*3, dm);
102 TypedValue.COMPLEX_UNIT_PX, 0xb0000000, dm);
104 TypedValue.COMPLEX_UNIT_PX, 0x60ffffff, dm);
106 TypedValue.COMPLEX_UNIT_PX, 7, dm);
108 TypedValue.COMPLEX_UNIT_PX, 0, dm);
110 TypedValue.COMPLEX_UNIT_PX, 0, dm);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
dm-log-userspace.h 10 #include <linux/dm-ioctl.h> /* For DM_UUID_LEN */
15 * in dm-dirty-log.h. Its purpose is simply to pass the parameters and
48 * DM_ULOG_CTR corresponds to (found in dm-dirty-log.h):
68 * DM_ULOG_DTR corresponds to (found in dm-dirty-log.h):
87 * DM_ULOG_PRESUSPEND corresponds to (found in dm-dirty-log.h):
106 * DM_ULOG_POSTSUSPEND corresponds to (found in dm-dirty-log.h):
125 * DM_ULOG_RESUME corresponds to (found in dm-dirty-log.h):
144 * DM_ULOG_GET_REGION_SIZE corresponds to (found in dm-dirty-log.h):
162 * DM_ULOG_IS_CLEAN corresponds to (found in dm-dirty-log.h):
180 * DM_ULOG_IN_SYNC corresponds to (found in dm-dirty-log.h)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
dm-log-userspace.h 10 #include <linux/dm-ioctl.h> /* For DM_UUID_LEN */
15 * in dm-dirty-log.h. Its purpose is simply to pass the parameters and
48 * DM_ULOG_CTR corresponds to (found in dm-dirty-log.h):
73 * DM_ULOG_DTR corresponds to (found in dm-dirty-log.h):
92 * DM_ULOG_PRESUSPEND corresponds to (found in dm-dirty-log.h):
111 * DM_ULOG_POSTSUSPEND corresponds to (found in dm-dirty-log.h):
130 * DM_ULOG_RESUME corresponds to (found in dm-dirty-log.h):
149 * DM_ULOG_GET_REGION_SIZE corresponds to (found in dm-dirty-log.h):
167 * DM_ULOG_IS_CLEAN corresponds to (found in dm-dirty-log.h):
185 * DM_ULOG_IN_SYNC corresponds to (found in dm-dirty-log.h)
    [all...]
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/linux/
dm-log-userspace.h 21 #include <linux/dm-ioctl.h>

Completed in 1314 milliseconds

1 2 3 4 5 6 7 8 9