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

1 2 3 4 5 6 7 8 91011>>

  /external/speex/libspeex/
filters_sse.h 39 __m128 num[3], den[3], mem[3]; local
46 mem[i] = _mm_loadu_ps(_mem+4*i);
50 mem[2] = _mm_setr_ps(_mem[8], _mem[9], 0, 0);
60 yy = _mm_add_ss(xx, mem[0]);
65 mem[0] = _mm_move_ss(mem[0], mem[1]);
66 mem[0] = _mm_shuffle_ps(mem[0], mem[0], 0x39)
92 __m128 num[2], den[2], mem[2]; local
146 __m128 den[3], mem[3]; local
195 __m128 den[2], mem[2]; local
244 __m128 num[3], mem[3]; local
292 __m128 num[2], mem[2]; local
    [all...]
  /external/dropbear/libtomcrypt/src/misc/
zeromem.c 25 unsigned char *mem = out; local
28 *mem++ = 0;
  /external/libvpx/vpx_mem/ti_c6x/
vpx_mem_ti_6cx.c 23 void *mem = (void *)mem_alloc(id, size, align); local
25 if (!mem)
32 mem, size, align));
40 else if (mem == (void *)0xFFFFFFFF)
43 mem = (void *)0;
50 mem, size, align));
55 return mem;
64 void vpx_mem_free(int id, void *mem, size_t size)
68 if (!mem)
83 mem_free(id, mem, size)
94 void *mem = vpx_mem_alloc(id, size, align); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
highpass_400hz_at_12k8.cpp 49 int16 mem[] filter memory [6]
134 void highpass_400Hz_at_12k8_init(int16 mem[])
136 pv_memset((void *)mem, 0, 6*sizeof(*mem));
146 int16 mem[] /* filter memory [6] */
154 y2_hi = mem[0];
155 y2_lo = mem[1];
156 y1_hi = mem[2];
157 y1_lo = mem[3];
158 x0 = mem[4]
    [all...]
highpass_50hz_at_12k8.cpp 49 int16 mem[] filter memory [6]
136 void highpass_50Hz_at_12k8_init(int16 mem[])
138 pv_memset((void *)mem, 0, 6*sizeof(*mem));
148 int16 mem[] /* filter memory [6] */
157 y2_hi = mem[0];
158 y2_lo = mem[1];
159 y1_hi = mem[2];
160 y1_lo = mem[3];
161 x0 = mem[4]
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
hp_wsp.c 49 void Init_Hp_wsp(Word16 mem[])
51 Set_zero(mem, 9);
56 void scale_mem_Hp_wsp(Word16 mem[], Word16 exp)
63 L_tmp = ((mem[i] << 16) + (mem[i + 1]<<1));
65 mem[i] = L_tmp >> 16;
66 mem[i + 1] = (L_tmp & 0xffff)>>1;
71 L_tmp = L_deposit_h(mem[i]); /* x[i] */
73 mem[i] = vo_round(L_tmp);
84 Word16 mem[] /* i/o : filter memory [9] */
    [all...]
hp400.c 51 void Init_HP400_12k8(Word16 mem[])
53 Set_zero(mem, 6);
60 Word16 mem[] /* filter memory [6] */
67 y2_hi = *mem++;
68 y2_lo = *mem++;
69 y1_hi = *mem++;
70 y1_lo = *mem++;
71 x0 = *mem++;
72 x1 = *mem;
96 *mem-- = x1;
    [all...]
hp50.c 52 void Init_HP50_12k8(Word16 mem[])
54 Set_zero(mem, 6);
61 Word16 mem[] /* filter memory [6] */
69 y2_hi = *mem++;
70 y2_lo = *mem++;
71 y1_hi = *mem++;
72 y1_lo = *mem++;
73 x0 = *mem++;
74 x1 = *mem;
96 *mem-- = x1;
    [all...]
gpclip.c 38 Word16 mem[] /* (o) : memory of gain of pitch clipping algorithm */
41 mem[0] = DIST_ISF_MAX;
42 mem[1] = GAIN_PIT_MIN;
47 Word16 mem[] /* (i/o) : memory of gain of pitch clipping algorithm */
51 if ((mem[0] < DIST_ISF_THRES) && (mem[1] > GAIN_PIT_THRES))
60 Word16 mem[] /* (i/o) : memory of gain of pitch clipping algorithm */
77 dist = extract_h(L_mac(vo_L_mult(26214, mem[0]), 6554, dist_min));
83 mem[0] = dist;
91 Word16 mem[] /* (i/o) : memory of gain of pitch clipping algorithm */
    [all...]
deemph.c 34 Word16 * mem /* (i/o) : memory (y[-1]) */
41 L_tmp = L_mac(L_tmp, *mem, mu);
51 *mem = x[L - 1];
61 Word16 * mem /* (i/o) : memory (y[-1]) */
67 L_tmp += ((*mem) * mu)<<1;
75 *mem = x[L - 1];
86 Word16 * mem /* (i/o) : memory (y[-1]) */
97 L_tmp += ((*mem) * fac)<<1;
111 *mem = y[L - 1];
  /dalvik/vm/
LinearAlloc.h 67 * caller should probably mark the "mem" argument read-only before calling.
69 void* dvmLinearRealloc(Object* classLoader, void* mem, size_t newSize);
72 void dvmLinearSetReadOnly(Object* classLoader, void* mem);
73 void dvmLinearSetReadWrite(Object* classLoader, void* mem);
80 INLINE void dvmLinearReadOnly(Object* classLoader, void* mem)
82 if (ENFORCE_READ_ONLY && mem != NULL)
83 dvmLinearSetReadOnly(classLoader, mem);
89 INLINE void dvmLinearReadWrite(Object* classLoader, void* mem)
91 if (ENFORCE_READ_ONLY && mem != NULL)
92 dvmLinearSetReadWrite(classLoader, mem);
    [all...]
  /external/chromium/third_party/icu/source/tools/toolutil/
toolutil.c 162 UToolMemory *mem; local
168 mem=(UToolMemory *)uprv_malloc(sizeof(UToolMemory)+initialCapacity*size);
169 if(mem==NULL) {
173 mem->array=mem->staticArray;
175 uprv_strcpy(mem->name, name);
176 mem->capacity=initialCapacity;
177 mem->maxCapacity=maxCapacity;
178 mem->size=size;
179 mem->idx=0
    [all...]
toolutil.h 103 utm_close(UToolMemory *mem);
110 utm_getStart(UToolMemory *mem);
116 utm_countItems(UToolMemory *mem);
122 utm_alloc(UToolMemory *mem);
128 utm_allocN(UToolMemory *mem, int32_t n);
  /external/icu4c/tools/toolutil/
toolutil.cpp 213 UToolMemory *mem; local
219 mem=(UToolMemory *)uprv_malloc(sizeof(UToolMemory)+initialCapacity*size);
220 if(mem==NULL) {
224 mem->array=mem->staticArray;
226 uprv_strcpy(mem->name, name);
227 mem->capacity=initialCapacity;
228 mem->maxCapacity=maxCapacity;
229 mem->size=size;
230 mem->idx=0
    [all...]
  /external/expat/amiga/
stdlib.c 33 uint32 *mem = AllocMem(size, MEMF_SHARED); local
34 if ( mem != 0 ) {
35 *mem = size;
36 ++mem;
39 return mem;
43 void * realloc (void * mem, size_t len2)
45 if ( mem == 0 ) {
50 free(mem);
59 uint32 mem_size = *(((uint32*)mem) - 1);
60 CopyMem(mem, new_mem, mem_size)
    [all...]
  /external/libvpx/vpx_ports/
mem_ops.h 66 const MAU_T *mem = (const MAU_T *)vmem; local
68 val = mem[0] << 8;
69 val |= mem[1];
78 const MAU_T *mem = (const MAU_T *)vmem; local
80 val = mem[0] << 16;
81 val |= mem[1] << 8;
82 val |= mem[2];
91 const MAU_T *mem = (const MAU_T *)vmem; local
93 val = mem[0] << 24;
94 val |= mem[1] << 16
105 const MAU_T *mem = (const MAU_T *)vmem; local
117 const MAU_T *mem = (const MAU_T *)vmem; local
130 const MAU_T *mem = (const MAU_T *)vmem; local
174 MAU_T *mem = (MAU_T *)vmem; local
184 MAU_T *mem = (MAU_T *)vmem; local
195 MAU_T *mem = (MAU_T *)vmem; local
207 MAU_T *mem = (MAU_T *)vmem; local
217 MAU_T *mem = (MAU_T *)vmem; local
228 MAU_T *mem = (MAU_T *)vmem; local
    [all...]
  /external/stlport/stlport/
mem.h 27 # include_next <mem.h>
29 # include _STLP_NATIVE_C_HEADER(mem.h)
38 # include_next <mem.h>
40 # include _STLP_NATIVE_C_HEADER(mem.h)
  /ndk/sources/cxx-stl/stlport/stlport/
mem.h 27 # include_next <mem.h>
29 # include _STLP_NATIVE_C_HEADER(mem.h)
38 # include_next <mem.h>
40 # include _STLP_NATIVE_C_HEADER(mem.h)
  /system/extras/tests/pftest/
pftest.c 47 char *mem = malloc((N_PAGES+1) * 4096); local
53 mem = (char *) ((intptr_t) (mem + 4096) & ~0xfff);
76 *(intptr_t *) (mem + 4096 * pageIdx + entryOffset) =
77 (intptr_t) (mem + 4096 * nextPageIdx + nextEntryOffset);
80 *(intptr_t *) (mem + 4096 * pageIdx + entryOffset) =
81 (intptr_t) &mem[0];
89 p = (intptr_t *) &mem[0];
  /external/bluetooth/glib/glib/
gmem.c 61 standard_realloc (gpointer mem,
64 if (!mem)
67 return realloc (mem, n_bytes);
88 standard_realloc (gpointer mem,
91 return realloc (mem, n_bytes);
95 standard_free (gpointer mem)
97 free (mem);
129 gpointer mem; local
131 mem = glib_mem_vtable.malloc (n_bytes);
132 if (mem)
149 gpointer mem; local
207 gpointer mem; local
237 gpointer mem = glib_mem_vtable.malloc (l); local
463 gpointer mem = profiler_try_malloc (n_bytes); local
    [all...]
gslice.h 61 #define g_slice_dup(type, mem) \
62 (1 ? (type*) g_slice_copy (sizeof (type), (mem)) \
63 : ((void) ((type*) 0 == (mem)), (type*) 0))
64 #define g_slice_free(type, mem) do { \
65 if (1) g_slice_free1 (sizeof (type), (mem)); \
66 else (void) ((type*) 0 == (mem)); \
  /external/jpeg/
jcomapi.c 34 if (cinfo->mem == NULL)
41 (*cinfo->mem->free_pool) (cinfo, pool);
72 /* NB: mem pointer is NULL if memory mgr failed to initialize. */
73 if (cinfo->mem != NULL)
74 (*cinfo->mem->self_destruct) (cinfo);
75 cinfo->mem = NULL; /* be safe if jpeg_destroy is called twice */
91 (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JQUANT_TBL));
103 (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JHUFF_TBL));
  /frameworks/base/include/utils/
Pool.h 52 void* mem = allocImpl(); local
54 return new (mem) T();
56 return static_cast<T*>(mem);
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
syn_filt.h 75 Word16 mem[], /* (i/o): memory associated with this filtering. */
  /external/elfutils/libelf/
elf_readall.c 70 char *mem; local
77 mem = (char *) malloc (elf->maximum_size);
78 if (mem != NULL)
81 if ((size_t) pread (elf->fildes, mem, elf->maximum_size,
86 free (mem);
91 elf->map_address = mem;

Completed in 801 milliseconds

1 2 3 4 5 6 7 8 91011>>