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

1 2

  /external/libppp/src/
mppe.c 243 struct mppe_state *mip = (struct mppe_state *)v; local
268 if (!flushed && mip->stateless) {
275 if (mip->stateless) {
277 while (prefix != mip->cohnum) {
279 MPPEKeyChange(mip);
281 * mip->cohnum contains what we received last time in stateless
284 mip->cohnum++;
285 mip->cohnum &= ~MPPE_HEADER_BITMASK;
295 (mip->cohnum >> MPPE_HEADER_FLAGSHIFT);
301 MPPEKeyChange(mip);
681 struct mppe_state *mip; local
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScript.java 219 native int rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer);
220 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) {
222 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
224 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
225 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
227 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
230 native int rsnAllocationCreateBitmapBackedAllocation(int con, int type, int mip, Bitmap bmp, int usage);
231 synchronized int nAllocationCreateBitmapBackedAllocation(int type, int mip, Bitmap bmp, int usage) {
233 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
237 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
RenderScript.java 286 native int rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer);
287 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) {
289 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
291 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
292 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
294 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
297 native int rsnAllocationCreateBitmapBackedAllocation(int con, int type, int mip, Bitmap bmp, int usage);
298 synchronized int nAllocationCreateBitmapBackedAllocation(int type, int mip, Bitmap bmp, int usage) {
300 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
304 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage)
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java 449 for (int mip = 0; mip < mipMapCount; mip++) {
450 byte[] data = new byte[sizes[mip]];
496 for (int mip = 0; mip < mipMapCount; mip++) {
546 for (int mip = 0; mip < mipMapCount; mip++)
    [all...]
  /external/libvpx/libvpx/vp8/common/
alloccommon.c 37 vpx_free(oci->mip);
44 oci->mip = NULL;
86 oci->mip = vpx_calloc((oci->mb_cols + 1) * (oci->mb_rows + 1), sizeof(MODE_INFO));
88 if (!oci->mip)
91 oci->mi = oci->mip + oci->mode_info_stride + 1;
onyxc_int.h 124 MODE_INFO *mip; /* Base of allocated array */ member in struct:VP8Common
127 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */
  /external/openssh/
match.c 193 int mhost, mip; local
196 if ((mip = addr_match_list(ipaddr, patterns)) == -2)
198 else if (mip == -1) /* negative ip address match */
205 if (mhost == 0 && mip == 0)
  /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...]
  /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));
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
SceneManager.java 99 Allocation.MipmapControl mip = Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE; local
101 Allocation defaultImage = Allocation.createTyped(rs, bitmapType, mip, usage);
169 MipmapControl mip = MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE; local
172 return Allocation.createCubemapFromBitmap(rs, b, mip, usage);
174 return Allocation.createFromBitmap(rs, b, mip, usage);
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /frameworks/rs/
rsType.h 59 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
  /external/chromium/chrome/browser/ui/
window_sizer_unittest.cc 166 TestMonitorInfoProvider* mip = new TestMonitorInfoProvider; local
167 mip->AddMonitor(monitor1_bounds, monitor1_work_area);
169 mip->AddMonitor(monitor2_bounds, monitor2_bounds);
175 WindowSizer sizer(sp, mip);
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
mr_dissim.c 58 /* Note: The first row & first column in mip are outside the frame, which
86 MODE_INFO *tmp = cm->mip + cm->mode_info_stride;
  /external/sonivox/arm-fm-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...]
  /external/sonivox/arm-hybrid-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...]
  /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...]
  /external/skia/legacy/src/core/
SkBitmap.cpp 1200 const MipLevel& mip = fMipMap->levels()[level - 1]; local
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 1392 const MipLevel& mip = fMipMap->levels()[level - 1]; local
    [all...]

Completed in 641 milliseconds

1 2