Searched refs:type (Results 1 - 25 of 35) sorted by relevance

12

/broadcom-cfe-1.4.2/cfe/include/
H A Dlib_types.h102 #define unsigned signed /* Kludge to get unsigned size-shaped type. */
112 #define offsetof(type,memb) ((size_t)&((type *)0)->memb)
H A Dcfe_autoboot.h69 int cfe_add_autoboot(int type,int flags,char *dev,char *loader,char *filesys,char *file);
H A Dcfe_mem.h79 int cfe_arena_enum(int idx,int *type,uint64_t *start,uint64_t *size,int allrecs);
H A Dlib_arena.h74 int type,char *descr);
H A Dptable.h66 uint32_t type; member in struct:partition_s
H A Delf.h90 #define ET_NONE 0 /* No file type */
120 Elf32_Word p_type; /* Identifies program segment type */
216 #define ELF_ST_INFO(bind,type) (((bind) << 4) | ((type) & 0xF))
225 /* symbol type */
226 #define STT_NOTYPE 0 /* Symbol type is unspecified */
/broadcom-cfe-1.4.2/cfe/lib/
H A Dlib_memfuncs.c57 * mem_peek(d,addr,type)
59 * Read memory of the specified type at the specified address.
65 * type - type of read to do (MEM_BYTE, etc.)
72 int mem_peek(void *d, hsaddr_t addr, int type) argument
84 switch (type) {
114 * Write memory of type at address addr with value val.
122 int mem_poke(hsaddr_t addr, uint64_t val, int type) argument
134 switch (type) {
H A Dlib_arena.c221 * Coalesce the arena, merging regions that have the same type
223 * have the same type.
261 * arena_markrange(arena,address,length,type,descr)
273 * type - type code for region
281 int arena_markrange(arena_t *arena,uint64_t address,uint64_t length,int type,char *descr) argument
323 node->an_type = type;
329 * Now, coalesce adjacent pieces with the same type back together again
/broadcom-cfe-1.4.2/cfe/ui/
H A Dui_envcmds.c125 int type; local
133 type = env_envtype(varname);
136 if ((type >= 0) && (type != ENV_FLG_BUILTIN)) env_save();
/broadcom-cfe-1.4.2/cfe/arch/mips/cpu/bcmcore/src/
H A Dbcmcore_arena.c64 #define ARENA_RANGE(bottom,top,type) arena_markrange(&cfe_arena,(uint64_t)(bottom), \
65 (uint64_t)(top)-(uint64_t)bottom+1,(type),NULL)
/broadcom-cfe-1.4.2/cfe/main/
H A Dcfe_mem.c64 #define ARENA_RANGE(bottom,top,type) arena_markrange(&cfe_arena,(uint64_t)(bottom), \
65 (uint64_t)(top)-(uint64_t)bottom+1,(type),NULL)
132 * cfe_arena_enum(idx,type,start,size)
141 * type,start,size: pointers to variables to receive the
151 int cfe_arena_enum(int idx,int *type,uint64_t *start,uint64_t *size,int allrecs) argument
164 *type = node->an_type;
216 * Because all of the arena nodes of the same type are
H A Dcfe_iocb_dispatch.c386 int type; local
391 &type,
398 iocb->plist.iocb_meminfo.mi_type = type;
401 if (type == MEMTYPE_DRAM_AVAILABLE) {
677 int type; local
679 type = env_envtype((char *)iocb->plist.iocb_envbuf.name_ptr);
685 if ((type >= 0) && (type != ENV_FLG_BUILTIN)) env_save();
H A Dcfe_autoboot.c408 * cfe_add_autoboot(type,flags,dev,loader,filesys,file)
415 * type - CFE_AUTOBOOT_xxx (disk,network,raw)
425 int cfe_add_autoboot(int type,int flags,char *dev,char *loader,char *filesys,char *file) argument
433 method->ab_type = type;
/broadcom-cfe-1.4.2/cfe/applets/
H A Dtest.c172 uint64_t start,length,type; local
199 if ((res = cfe_enummem(idx,1,&start,&length,&type) != 0)) break;
200 xprintf("Memory at %016llX length %016llX type %ld\n",
201 start,length,type);
/broadcom-cfe-1.4.2/cfe/arch/mips/chipset/sibyte/src/
H A Dsb1250_arena.c69 #define ARENA_RANGE(bottom,top,type) arena_markrange(&cfe_arena,(uint64_t)(bottom), \
70 (uint64_t)(top)-(uint64_t)bottom+1,(type),NULL)
/broadcom-cfe-1.4.2/cfe/x86emu/x86emu/
H A Ddecode.h42 /*---------------------- Macros and type definitions ----------------------*/
58 void x86emu_intr_raise (u8 type);
/broadcom-cfe-1.4.2/cfe/pci/
H A Dpci_subr.c463 /* XXX don't size unknown memory type? */
509 printf("type: ");
511 const char *type, *prefetch; local
515 type = "32-bit";
518 type = "32-bit-1M";
521 type = "64-bit";
524 type = "unknown (XXX)";
531 printf("%s %sprefetchable memory\n", type, prefetch);
H A Dldtinit.c92 int type; local
101 type = LDT_COMMAND_TYPE(cr);
102 if (secondary && type == LDT_COMMAND_TYPE_HOST)
104 if (!secondary && type == LDT_COMMAND_TYPE_SLAVE)
/broadcom-cfe-1.4.2/cfe/net/
H A Dnet_icmp.c71 #define ICMPMSG(type,code) (((type)<<8)|(code))
H A Dnet_tftp.c160 uint16_t type,error,block; local
218 ebuf_get_u16_be(buf,type);
220 switch (type) {
/broadcom-cfe-1.4.2/cfe/zlib/
H A Dzutil.h66 /* The three kinds of block type */
137 # define fdopen(fd,type) _fdopen(fd,type)
/broadcom-cfe-1.4.2/cfe/arch/ppc/common/include/
H A Dppcmacros.h77 .type name,@function; \
/broadcom-cfe-1.4.2/cfe/usb/
H A Dusbchap9.h290 uint8_t bDescriptorType; /* Hub configuration type */
373 #define REQCODE(req,dir,type,rec) (((req) << 8) | (dir) | (type) | (rec))
H A Dohci.h430 #define beginningof(ptr,type,field) ((type *) (((int) (ptr)) - ((int) ((type *) 0)->field)))
/broadcom-cfe-1.4.2/cfe/api/
H A Dcfe_api.h175 uint64_t *type);

Completed in 116 milliseconds

12