/external/syslinux/com32/sysdump/ |
D | vesa.c | 11 struct vesa_mode_info *mip, mi; in dump_vesa_tables() local 20 mip = &vip->mi; in dump_vesa_tables() 43 memset(mip, 0, sizeof *mip); in dump_vesa_tables() 47 rm.edi.w[0] = OFFS(mip); in dump_vesa_tables() 48 rm.es = SEG(mip); in dump_vesa_tables() 55 memcpy(&mi, mip, sizeof mi); in dump_vesa_tables()
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_resource.c | 115 struct etna_resource_level *mip = &rsc->levels[level]; in setup_miptree() local 117 mip->width = width; in setup_miptree() 118 mip->height = height; in setup_miptree() 119 mip->padded_width = align(width * msaa_xscale, paddingX); in setup_miptree() 120 mip->padded_height = align(height * msaa_yscale, paddingY); in setup_miptree() 121 mip->stride = util_format_get_stride(prsc->format, mip->padded_width); in setup_miptree() 122 mip->offset = size; in setup_miptree() 123 mip->layer_stride = mip->stride * util_format_get_nblocksy(prsc->format, mip->padded_height); in setup_miptree() 124 mip->size = prsc->array_size * mip->layer_stride; in setup_miptree() 127 size += align(mip->size, ETNA_PE_ALIGNMENT) * depth; in setup_miptree()
|
/external/blktrace/ |
D | blktrace.c | 580 static void init_mmap_info(struct mmap_info *mip) in init_mmap_info() argument 582 mip->buf_size = buf_size; in init_mmap_info() 583 mip->buf_nr = buf_nr; in init_mmap_info() 584 mip->pagesize = pagesize; in init_mmap_info() 732 static int setup_mmap(int fd, unsigned int maxlen, struct mmap_info *mip) in setup_mmap() argument 734 if (mip->fs_off + maxlen > mip->fs_buf_len) { in setup_mmap() 735 unsigned long nr = max(16, mip->buf_nr); in setup_mmap() 737 if (mip->fs_buf) { in setup_mmap() 738 munlock(mip->fs_buf, mip->fs_buf_len); in setup_mmap() 739 munmap(mip->fs_buf, mip->fs_buf_len); in setup_mmap() [all …]
|
/external/libvpx/libvpx/vp8/common/ |
D | alloccommon.c | 41 vpx_free(oci->mip); in vp8_de_alloc_frame_buffers() 48 oci->mip = NULL; in vp8_de_alloc_frame_buffers() 89 oci->mip = in vp8_alloc_frame_buffers() 92 if (!oci->mip) goto allocation_fail; in vp8_alloc_frame_buffers() 94 oci->mi = oci->mip + oci->mode_info_stride + 1; in vp8_alloc_frame_buffers()
|
D | onyxc_int.h | 120 MODE_INFO *mip; /* Base of allocated array */ member
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_loopfilter.c | 887 MODE_INFO **mip = mi; in vp9_setup_mask() local 917 assert(mip[0] != NULL); in vp9_setup_mask() 919 switch (mip[0]->sb_type) { in vp9_setup_mask() 920 case BLOCK_64X64: build_masks(lfi_n, mip[0], 0, 0, lfm); break; in vp9_setup_mask() 922 build_masks(lfi_n, mip[0], 0, 0, lfm); in vp9_setup_mask() 923 mip2 = mip + mode_info_stride * 4; in vp9_setup_mask() 928 build_masks(lfi_n, mip[0], 0, 0, lfm); in vp9_setup_mask() 929 mip2 = mip + 4; in vp9_setup_mask() 934 for (idx_32 = 0; idx_32 < 4; mip += offset_32[idx_32], ++idx_32) { in vp9_setup_mask() 941 switch (mip[0]->sb_type) { in vp9_setup_mask() [all …]
|
D | vp9_postproc.c | 287 cm->postproc_state.prev_mip = cm->mip; in swap_mi_and_prev_mi() 288 cm->mip = temp; in swap_mi_and_prev_mi() 291 cm->mi = cm->mip + cm->mi_stride + 1; in swap_mi_and_prev_mi() 318 ppstate->prev_mip = vpx_calloc(cm->mi_alloc_size, sizeof(*cm->mip)); in vp9_post_proc_frame()
|
D | vp9_onyxc_int.h | 195 MODE_INFO *mip; /* Base of allocated array */ member
|
/external/openssh/ |
D | match.c | 200 int mhost, mip; in match_host_and_ip() local 202 if ((mip = addr_match_list(ipaddr, patterns)) == -2) in match_host_and_ip() 204 else if (host == NULL || ipaddr == NULL || mip == -1) in match_host_and_ip() 211 if (mhost == 0 && mip == 0) in match_host_and_ip()
|
/external/mesa3d/src/gallium/drivers/svga/include/ |
D | svga3d_surfacedefs.h | 1050 uint32 mip) in svga3dsurface_get_image_offset() argument 1069 if (i < mip) { in svga3dsurface_get_image_offset() 1088 uint32 mip; in svga3dsurface_get_serialized_size() local 1090 for (mip = 0; mip < num_mip_levels; mip++) { in svga3dsurface_get_serialized_size() 1092 svga3dsurface_get_mip_size(base_level_size, mip); in svga3dsurface_get_serialized_size()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decoder.c | 52 cm->mi = cm->mip + cm->mi_stride + 1; in vp9_dec_setup_mi() 59 cm->mip = vpx_calloc(mi_size, sizeof(*cm->mip)); in vp9_dec_alloc_mi() 60 if (!cm->mip) return 1; in vp9_dec_alloc_mi() 68 vpx_free(cm->mip); in vp9_dec_free_mi() 69 cm->mip = NULL; in vp9_dec_free_mi()
|
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv84_video.c | 272 struct nv50_miptree mip; in nv84_create_decoder() local 479 surf.base.texture = &mip.base.base; in nv84_create_decoder() 480 mip.level[0].tile_mode = 0; in nv84_create_decoder() 481 mip.level[0].pitch = surf.width * 4; in nv84_create_decoder() 482 mip.base.domain = NOUVEAU_BO_VRAM; in nv84_create_decoder() 483 mip.base.bo = dec->mbring; in nv84_create_decoder() 484 mip.base.address = dec->mbring->offset; in nv84_create_decoder() 489 mip.level[0].pitch = surf.width * 4; in nv84_create_decoder() 490 mip.base.bo = dec->vpring; in nv84_create_decoder() 491 mip.base.address = dec->vpring->offset; in nv84_create_decoder()
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_state_inlines.h | 262 static inline uint32_t r300_translate_tex_filters(int min, int mag, int mip, in r300_translate_tex_filters() argument 293 switch (mip) { in r300_translate_tex_filters() 304 fprintf(stderr, "r300: Unknown texture filter %d\n", mip); in r300_translate_tex_filters()
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | llvm.amdgcn.image.ll | 36 …%tex = call <4 x float> @llvm.amdgcn.image.load.mip.v4i32(<4 x i32> %c, <8 x i32> %rsrc, i32 15, i… 79 …call void @llvm.amdgcn.image.store.mip.v4i32(<4 x float> %data, <4 x i32> %coords, <8 x i32> %rsrc… 102 declare void @llvm.amdgcn.image.store.mip.v4i32(<4 x float>, <4 x i32>, <8 x i32>, i32, i1, i1, i1,… 107 declare <4 x float> @llvm.amdgcn.image.load.mip.v4i32(<4 x i32>, <8 x i32>, i32, i1, i1, i1, i1) #1
|
D | llvm.SI.image.ll | 21 …%r = call <4 x float> @llvm.SI.image.load.mip.v4i32(<4 x i32> undef, <8 x i32> undef, i32 15, i32 … 44 declare <4 x float> @llvm.SI.image.load.mip.v4i32(<4 x i32>, <8 x i32>, i32, i32, i32, i32, i32, i3…
|
/external/deqp/doc/testspecs/VK/ |
D | sparse_resources.txt | 13 5. Test partially resident image with mipmaps, put some mipmap levels in mip tail region 98 5. Test partially resident image with mipmaps, put some mipmap levels in mip tail region 101 …ceives a separate device memory binding. The mipmaps levels that end up in mip tail region receive… 133 both images. The mipmap levels that land in the mip tail region have separate memory regions for bo… 138 WRITE image should be overwritten by this operation, the mip tail region should be left intact. Nex… 141 …compute shader. On the other hand for each mipmap level that landed in the mip tail region, the da…
|
/external/mesa3d/src/intel/vulkan/ |
D | genX_cmd_buffer.c | 1971 anv_batch_emit(batch, GENX(MI_PREDICATE), mip) { in genX() 1972 mip.LoadOperation = LOAD_LOAD; in genX() 1973 mip.CombineOperation = COMBINE_SET; in genX() 1974 mip.CompareOperation = COMPARE_SRCS_EQUAL; in genX() 1981 anv_batch_emit(batch, GENX(MI_PREDICATE), mip) { in genX() 1982 mip.LoadOperation = LOAD_LOAD; in genX() 1983 mip.CombineOperation = COMBINE_OR; in genX() 1984 mip.CompareOperation = COMPARE_SRCS_EQUAL; in genX() 1991 anv_batch_emit(batch, GENX(MI_PREDICATE), mip) { in genX() 1992 mip.LoadOperation = LOAD_LOAD; in genX() [all …]
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_voicemgt.c | 675 pSynth->channels[i].mip = 0; in VMInitMIPTable() 686 …MSetMIPEntry (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 priority, EAS_U8 mip) in VMSetMIPEntry() argument 697 pSynth->channels[channel].mip = mip; in VMSetMIPEntry() 732 if ((pSynth->channels[i].mip != 0) && (pSynth->channels[i].mip <= maxPolyphony)) in VMMIPUpdateChannelMuting() 838 if (pChannel->mip == currentMIP && currentPool != -1) in VMUpdateMIPTable() 845 pSynth->poolAlloc[currentPool] = (EAS_U8) (pChannel->mip - currentMIP); in VMUpdateMIPTable() 846 currentMIP = pChannel->mip; in VMUpdateMIPTable()
|
D | eas_synth.h | 230 EAS_U8 mip; /* SPMIDI MIP setting */ member
|
D | eas_vm_protos.h | 131 …SetMIPEntry (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 priority, EAS_U8 mip);
|
/external/libvpx/libvpx/vp8/encoder/ |
D | mr_dissim.c | 79 MODE_INFO *tmp = cm->mip + cm->mode_info_stride; in vp8_cal_dissimilarity()
|
/external/eigen/cmake/ |
D | FindGSL.cmake | 23 # www.mip.informatik.uni-kiel.de
|
/external/mesa3d/src/gallium/docs/source/cso/ |
D | sampler.rst | 64 The texture mip filter modes are:
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encoder.c | 671 cm->mi = cm->mip + cm->mi_stride + 1; in vp9_enc_setup_mi() 672 memset(cm->mip, 0, cm->mi_stride * (cm->mi_rows + 1) * sizeof(*cm->mip)); in vp9_enc_setup_mi() 688 cm->mip = vpx_calloc(mi_size, sizeof(*cm->mip)); in vp9_enc_alloc_mi() 689 if (!cm->mip) return 1; in vp9_enc_alloc_mi() 704 vpx_free(cm->mip); in vp9_enc_free_mi() 705 cm->mip = NULL; in vp9_enc_free_mi() 718 cm->prev_mip = cm->mip; in vp9_swap_mi_and_prev_mi() 719 cm->mip = temp; in vp9_swap_mi_and_prev_mi() 722 cm->mi = cm->mip + cm->mi_stride + 1; in vp9_swap_mi_and_prev_mi()
|
/external/mesa3d/src/gallium/docs/source/ |
D | screen.rst | 686 **width0** the width of the base mip level of the texture or size of the buffer. 688 **height0** the height of the base mip level of the texture 691 **depth0** the depth of the base mip level of the texture 697 **last_level** the last mip map level present.
|