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

1 2

  /external/syslinux/com32/sysdump/
vesa.c 11 struct vesa_mode_info *mip, mi; local
20 mip = &vip->mi;
43 memset(mip, 0, sizeof *mip);
47 rm.edi.w[0] = OFFS(mip);
48 rm.es = SEG(mip);
55 memcpy(&mi, mip, sizeof mi);
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_resource.c 115 struct etna_resource_level *mip = &rsc->levels[level]; local
117 mip->width = width;
118 mip->height = height;
119 mip->padded_width = align(width * msaa_xscale, paddingX);
120 mip->padded_height = align(height * msaa_yscale, paddingY);
121 mip->stride = util_format_get_stride(prsc->format, mip->padded_width);
122 mip->offset = size;
123 mip->layer_stride = mip->stride * util_format_get_nblocksy(prsc->format, mip->padded_height)
    [all...]
  /external/libvpx/libvpx/vp8/common/
alloccommon.c 41 vpx_free(oci->mip);
48 oci->mip = NULL;
89 oci->mip =
92 if (!oci->mip) goto allocation_fail;
94 oci->mi = oci->mip + oci->mode_info_stride + 1;
onyxc_int.h 120 MODE_INFO *mip; /* Base of allocated array */ member in struct:VP8Common
123 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */
  /external/openssh/
match.c 200 int mhost, mip; local
202 if ((mip = addr_match_list(ipaddr, patterns)) == -2)
204 else if (host == NULL || ipaddr == NULL || mip == -1)
211 if (mhost == 0 && mip == 0)
  /frameworks/base/rs/java/android/renderscript/
RenderScript.java 441 native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, long pointer);
442 synchronized long nAllocationCreateTyped(long type, int mip, int usage, long pointer) {
444 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
446 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
447 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
449 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
452 native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, int usage);
453 synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usage) {
455 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
458 native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage)
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
RenderScript.java 387 native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, long pointer);
388 synchronized long nAllocationCreateTyped(long type, int mip, int usage, long pointer) {
390 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
392 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
393 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
395 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
398 native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, int usage);
399 synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usage) {
401 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
405 native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage)
    [all...]
  /external/blktrace/
blktrace.c 580 static void init_mmap_info(struct mmap_info *mip)
582 mip->buf_size = buf_size;
583 mip->buf_nr = buf_nr;
584 mip->pagesize = pagesize;
732 static int setup_mmap(int fd, unsigned int maxlen, struct mmap_info *mip)
734 if (mip->fs_off + maxlen > mip->fs_buf_len) {
735 unsigned long nr = max(16, mip->buf_nr);
737 if (mip->fs_buf) {
738 munlock(mip->fs_buf, mip->fs_buf_len)
1554 struct mmap_info *mip = &iop->mmap_info; local
1664 struct mmap_info *mip; local
2369 struct mmap_info *mip = &iop->mmap_info; local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga3d_surfacedefs.h 939 * Given a base level size and the mip level, compute the size of
940 * the mip level.
1050 uint32 mip)
1069 if (i < mip) {
1088 uint32 mip; local
1090 for (mip = 0; mip < num_mip_levels; mip++) {
1092 svga3dsurface_get_mip_size(base_level_size, mip);
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_loopfilter.c 887 MODE_INFO **mip = mi; local
    [all...]
vp9_postproc.c 285 // Current mip will be the prev_mip for the next frame.
287 cm->postproc_state.prev_mip = cm->mip;
288 cm->mip = temp;
291 cm->mi = cm->mip + cm->mi_stride + 1;
318 ppstate->prev_mip = vpx_calloc(cm->mi_alloc_size, sizeof(*cm->mip));
  /system/core/lmkd/
lmkd.c 481 static void zoneinfo_parse_line(char *line, struct sysmeminfo *mip) {
495 mip->nr_free_pages += strtol(ap, NULL, 0);
497 mip->nr_file_pages += strtol(ap, NULL, 0);
499 mip->nr_shmem += strtol(ap, NULL, 0);
501 mip->totalreserve_pages += strtol(ap, NULL, 0);
503 mip->totalreserve_pages += zoneinfo_parse_protection(ap);
506 static int zoneinfo_parse(struct sysmeminfo *mip) {
513 memset(mip, 0, sizeof(struct sysmeminfo));
531 zoneinfo_parse_line(line, mip);
  /external/libvpx/libvpx/vp9/decoder/
vp9_decoder.c 52 cm->mi = cm->mip + cm->mi_stride + 1;
59 cm->mip = vpx_calloc(mi_size, sizeof(*cm->mip));
60 if (!cm->mip) return 1;
68 vpx_free(cm->mip);
69 cm->mip = NULL;
  /frameworks/rs/script_api/
rs_allocation_data.spec 39 arg: uint32_t dstMip, "Mip level in the destination allocation. 0 if mip mapping is not used."
43 arg: uint32_t srcMip, "Mip level in the source allocation. 0 if mip mapping is not used."
69 arg: uint32_t dstMip, "Mip level in the destination allocation. 0 if mip mapping is not used."
76 arg: uint32_t srcMip, "Mip level in the source allocation. 0 if mip mapping is not used."
427 arg: float lod, "Mip level to sample from, for fractional values mip levels will be interpolated if RS_SAMPLER_LINEAR_MIP_LINEAR is used.
    [all...]
  /frameworks/native/opengl/libagl/
TextureObjectManager.h 58 const GGLSurface& mip(int lod) const;
TextureObjectManager.cpp 106 const GGLSurface& EGLTextureObject::mip(int lod) const function in class:android::EGLTextureObject
116 return const_cast<GGLSurface&>(mip(lod));
  /external/mesa3d/src/gallium/drivers/r300/
r300_state_inlines.h 262 static inline uint32_t r300_translate_tex_filters(int min, int mag, int mip,
293 switch (mip) {
304 fprintf(stderr, "r300: Unknown texture filter %d\n", mip);
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv84_video.c 272 struct nv50_miptree mip; local
479 surf.base.texture = &mip.base.base;
480 mip.level[0].tile_mode = 0;
481 mip.level[0].pitch = surf.width * 4;
482 mip.base.domain = NOUVEAU_BO_VRAM;
483 mip.base.bo = dec->mbring;
484 mip.base.address = dec->mbring->offset;
489 mip.level[0].pitch = surf.width * 4;
490 mip.base.bo = dec->vpring;
491 mip.base.address = dec->vpring->offset
    [all...]
  /external/mesa3d/src/intel/vulkan/
genX_cmd_buffer.c     [all...]
  /frameworks/rs/
rsType.h 66 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
  /external/libvpx/libvpx/vp8/encoder/
mr_dissim.c 54 /* Note: The first row & first column in mip are outside the frame, which
79 MODE_INFO *tmp = cm->mip + cm->mode_info_stride;
  /external/sonivox/arm-wt-22k/lib_src/
eas_synth.h 230 EAS_U8 mip; /* SPMIDI MIP setting */ member in struct:s_synth_channel_tag
eas_vm_protos.h 97 * Initialize the SP-MIDI MIP table
116 * Sets the priority and MIP level for a MIDI channel
122 * mip - maximum instantaneous polyphony
131 void VMSetMIPEntry (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 priority, EAS_U8 mip);
    [all...]
eas_voicemgt.c 659 * Initialize the SP-MIDI MIP table in preparation for receiving MIP message
675 pSynth->channels[i].mip = 0;
682 * Sets the priority and MIP level for a MIDI channel
686 void VMSetMIPEntry (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 priority, EAS_U8 mip)
690 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_INFO, "VMSetMIPEntry: channel=%d, priority=%d, MIP=%d\n", channel, priority, mip); */ }
693 /* save data for use by MIP message processing */
697 pSynth->channels[channel].mip = mip;
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 971 milliseconds

1 2