HomeSort by relevance Sort by last modified time
    Searched refs:memp (Results 1 - 13 of 13) sorted by null

  /external/syslinux/core/lwip/src/core/
memp.c 43 #include "lwip/memp.h"
66 struct memp { struct
67 struct memp *next;
100 /* MEMP_SIZE: save space for struct memp and for sanity check */
101 #define MEMP_SIZE (LWIP_MEM_ALIGN_SIZE(sizeof(struct memp)) + MEMP_SANITY_REGION_BEFORE_ALIGNED)
107 * We don't need to preserve the struct memp while not allocated, so we
117 static struct memp *memp_tab[MEMP_MAX];
179 * Check that memp-lists don't form a circle
185 struct memp *m, *n;
209 * Check if a memp element was victim of an overflo
339 struct memp *memp; local
394 struct memp *memp; local
436 struct memp *memp; local
    [all...]
stats.c 61 lwip_stats.memp[i].name = memp_names[i];
  /external/elfutils/libdw/
dwarf_end.c 83 struct libdw_memblock *memp = dwarf->mem_tail; local
85 while (memp->prev != NULL)
87 struct libdw_memblock *prevp = memp->prev;
88 free (memp);
89 memp = prevp;
  /external/clang/test/CodeGenCXX/
mangle-unnamed.cpp 33 int a(ptr A::*memp) { static int x; return ++x; }
  /external/syslinux/core/lwip/src/include/lwip/
stats.h 38 #include "lwip/memp.h"
142 struct stats_mem memp[MEMP_MAX]; member in struct:stats_
246 #define MEMP_STATS_AVAIL(x, i, y) lwip_stats.memp[i].x = y
247 #define MEMP_STATS_INC(x, i) STATS_INC(memp[i].x)
248 #define MEMP_STATS_DEC(x, i) STATS_DEC(memp[i].x)
249 #define MEMP_STATS_INC_USED(x, i) STATS_INC_USED(memp[i], 1)
250 #define MEMP_STATS_DISPLAY(i) stats_display_memp(&lwip_stats.memp[i], i)
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
segment.c 256 char *memp; local
262 memp = (char *)mmap(0, segp->seg_length, segp->seg_prot, flags | MAP_ANONYMOUS, 0, /* fd -- ignored */
265 if (memp == MAP_FAILED) {
274 memp, memp + segp->seg_length - 1);
276 segp->seg_start = memp;
363 char *memp; local
395 memp = (char *)mmap(0, segp->seg_length,
398 if (memp == MAP_FAILED) {
407 memp, memp + segp->seg_length - 1)
675 unsigned long *memp; local
    [all...]
memtoy.c 319 void touch_memory(bool rw, unsigned long *memp, size_t memlen)
326 memend = memp + memlen / sizeof(unsigned long);
328 rw ? "Writing" : "Reading", memp, memend);
330 for (pp = memp; pp < memend; pp += longs_in_page) {
  /external/pcre/dist2/src/
pcre2_substring.c 378 pcre2_memctl *memp; local
397 memp = PRIV(memctl_malloc)(size, (pcre2_memctl *)match_data);
398 if (memp == NULL) return PCRE2_ERROR_NOMEMORY;
400 *listptr = listp = (PCRE2_UCHAR **)((char *)memp + sizeof(pcre2_memctl));
  /external/clang/test/Analysis/
NewDelete-checker-test.cpp 196 const int *memp; member in struct:StWithConstPtr
220 St.memp = new int(2);
221 escapeVoidPtr(St.memp);
  /external/elfutils/src/
ar.c     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
cdk.h 134 unsigned long memp; member in struct:cdkhdr
151 * the memp field in the stlcdkhdr struct. As many as these structures
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
cdk.h 134 unsigned long memp; member in struct:cdkhdr
151 * the memp field in the stlcdkhdr struct. As many as these structures
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regexec.c 1087 static int mem_is_in_memp(int mem, int num, UChar* memp)
1093 GET_MEMNUM_INC(m, memp);
1102 , int nest, int mem_num, UChar* memp, UChar** s, const UChar* send)
1120 if (mem_is_in_memp(k->u.mem.num, mem_num, memp)) {
1144 if (mem_is_in_memp(k->u.mem.num, mem_num, memp)) {
    [all...]

Completed in 453 milliseconds