/src/sys/arch/atari/stand/keymaps/de/ |
Makefile | 4 MAP=de.map
|
/src/sys/arch/atari/stand/keymaps/fr/ |
Makefile | 4 MAP=fr.map
|
/src/sys/arch/atari/stand/keymaps/uk/ |
Makefile | 4 MAP=uk.map
|
/src/sys/arch/atari/stand/keymaps/us/ |
Makefile | 4 MAP=us.map
|
/src/sys/arch/epoc32/stand/e32boot/exe/ |
Makefile | 13 MAP=$(PROG:.exe=.map) 50 $(LD) -s -Map $(MAP) -o $@ $(PROG:.exe=.exp) \ 62 rm -f $(PROG) $(OBJS) $(IN) $(MAP)
|
/src/usr.bin/tset/ |
map.c | 1 /* $NetBSD: map.c,v 1.13 2011/09/06 18:34:12 joerg Exp $ */ 35 static char sccsid[] = "@(#)map.c 8.1 (Berkeley) 6/9/93"; 37 __RCSID("$NetBSD: map.c,v 1.13 2011/09/06 18:34:12 joerg Exp $"); 59 typedef struct map { struct 60 struct map *next; /* Linked list of maps. */ 65 } MAP; 67 static MAP *cur, *maplist; 77 MAP *mapp; 81 mapp = malloc((u_int)sizeof(MAP)); 185 * by the first applicable mapping in 'map'. If no mappings apply, retur [all...] |
/src/sys/arch/epoc32/stand/e32boot/ldd/ |
Makefile | 13 MAP=$(PROG:.ldd=.map) 71 $(LD) -s -Map $(MAP) -o $@ $(PROG:.ldd=.exp) \ 81 rm -f $(PROG) $(OBJS) $(IN) $(MAP)
|
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_engine_user.c | 150 } map[] = { local in function:set_scheduler_caps 151 #define MAP(x, y) { ilog2(I915_ENGINE_##x), ilog2(I915_SCHEDULER_CAP_##y) } 152 MAP(HAS_PREEMPTION, PREEMPTION), 153 MAP(HAS_SEMAPHORES, SEMAPHORES), 154 MAP(SUPPORTS_STATS, ENGINE_BUSY_STATS), 155 #undef MAP 172 for (i = 0; i < ARRAY_SIZE(map); i++) { 173 if (engine->flags & BIT(map[i].engine)) 174 enabled |= BIT(map[i].sched); 176 disabled |= BIT(map[i].sched) 210 } map[] = { local in function:legacy_ring_idx [all...] |
/src/usr.sbin/sysinst/arch/mac68k/ |
md.h | 41 * Apple Partition Map Types 60 * Define Apple Partition Map types typically seen on 68k Macs 78 int size; /* number of blocks in map for I/O */ 79 int in_use_cnt; /* number of block in current use in map */ 82 int root_cnt; /* number of root partitions in map */ 83 int swap_cnt; /* number of swap partitions in map */ 84 int usr_cnt; /* number of usr partitions in map */ 86 int mblk[MAXPARTITIONS];/* map block number of usable partition */ 88 } MAP; 91 * Define the default size for the Disk Partition Map if we have t 97 MAP map; variable in typeref:typename:MAP [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
i915_gem_context.c | 472 * Map the user's engine back to the actual engines; one virtual 474 * the same engine may be have multiple instances in the user's map. 2166 #define MAP(x, y) [ilog2(I915_CONTEXT_CLONE_##x)] = y 2167 MAP(ENGINES, clone_engines), 2168 MAP(FLAGS, clone_flags), 2169 MAP(SCHEDATTR, clone_schedattr), 2170 MAP(SSEU, clone_sseu), 2171 MAP(TIMELINE, clone_timeline), 2172 MAP(VM, clone_vm), 2173 #undef MAP [all...] |
/src/lib/libc/regex/ |
regcomp.c | 1584 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N) 1594 switch (REP(MAP(from), MAP(to))) {
|