Searched refs:MAP (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-11-stable/contrib/sendmail/src/
H A Dmap.h15 extern char *arith_map_lookup __P((MAP *, char *, char **, int *));
17 extern char *arpa_map_lookup __P((MAP *, char *, char **, int *));
19 extern char *bestmx_map_lookup __P((MAP *, char *, char **, int *));
21 extern char *bogus_map_lookup __P((MAP *, char *, char **, int *));
24 extern bool bt_map_open __P((MAP *, int));
26 extern char *db_map_lookup __P((MAP *, char *, char **, int *));
27 extern void db_map_store __P((MAP *, char *, char *));
28 extern void db_map_close __P((MAP *));
31 extern bool dequote_init __P((MAP *, char *));
32 extern char *dequote_map __P((MAP *, cha
[all...]
H A Dmap.c49 static bool db_map_open __P((MAP *, int, char *, DBTYPE, const void *));
52 static bool db_map_open __P((MAP *, int, char *, DBTYPE, DB_INFO *));
55 static bool db_map_open __P((MAP *, int, char *, DBTYPE, void **));
93 ** MAP.C -- implementations for various map classes.
97 ** bool map_parse(MAP *map, char *args)
102 ** char *map_lookup(MAP *map, char *key, char **args, int *pstat)
112 ** void map_store(MAP *map, char *key, char *value)
115 ** bool map_open(MAP *map, int mode)
124 ** void map_close(MAP *map)
157 MAP *ma
[all...]
H A Dalias.c21 static MAP *AliasFileMap = NULL; /* the actual aliases.files map */
214 static MAP *map = NULL;
265 register MAP *map;
390 MAP *map;
500 register MAP *map;
640 register MAP *map;
H A Dsendmail.h1368 #define MAP struct _map macro
1376 MAP
1400 MAP *map_stack[MAXMAPSTACK]; /* list for stacked maps */
1458 bool (*map_parse)__P((MAP *, char *));
1460 char *(*map_lookup)__P((MAP *, char *, char **, int *));
1462 void (*map_store)__P((MAP *, char *, char *));
1464 bool (*map_open)__P((MAP *, int));
1466 void (*map_close)__P((MAP *));
1479 extern bool impl_map_open __P((MAP *, int));
1481 extern MAP *makemapentr
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h27 MAP(C0, 64) \
28 MAP(C1, 65) \
29 MAP(C2, 66) \
30 MAP(C3, 67) \
31 MAP(C4, 68) \
32 MAP(C5, 69) \
33 MAP(C6, 70) \
34 MAP(C7, 71) \
35 MAP(C8, 72) \
36 MAP(C
121 #define MAP macro
123 #undef MAP macro
[all...]
H A DX86RecognizableInstr.cpp709 #define MAP(from, to) case X86Local::MRM_##from: macro
711 #undef MAP macro
723 #define MAP(from, to) \ macro
821 #undef MAP macro
/freebsd-11-stable/contrib/gcclibs/libcpp/include/
H A Dline-map.h134 which led to the map MAP, if any, to stderr. Nothing is output if
140 #define SOURCE_LINE(MAP, LINE) \
141 ((((LINE) - (MAP)->start_location) >> (MAP)->column_bits) + (MAP)->to_line)
143 #define SOURCE_COLUMN(MAP, LINE) \
144 (((LINE) - (MAP)->start_location) & ((1 << (MAP)->column_bits) - 1))
148 #define LAST_SOURCE_LINE(MAP) \
149 SOURCE_LINE (MAP, LAST_SOURCE_LINE_LOCATIO
[all...]
/freebsd-11-stable/usr.bin/tset/
H A Dmap.c63 } MAP; typedef in typeref:struct:map
65 static MAP *cur, *maplist;
75 MAP *mapp;
79 mapp = malloc(sizeof(MAP));
188 MAP *mapp;
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf32-mep.c98 #define MAP(n) case BFD_RELOC_MEP_##n: type = R_MEP_##n; break macro
100 #define MAP(n) case BFD_RELOC_MEP_/**/n: type = R_MEP_/**/n; break
112 MAP(NONE);
132 /* MEPRELOC:MAP */
134 MAP(8);
135 MAP(16);
136 MAP(32);
137 MAP(PCREL8A2);
138 MAP(PCREL12A2);
139 MAP(PCREL17A
96 #define MAP macro
169 #undef MAP macro
[all...]
/freebsd-11-stable/tools/tools/locale/tools/
H A Dconvert_map.pl118 open(MAP, "$file") || die "open";
120 while (<MAP>) {
/freebsd-11-stable/usr.sbin/ypserv/
H A Dypinit.sh236 for MAP in ${YPMAPLIST}
238 echo "Transferring ${MAP}..."
239 if ! ${YPXFR} -p ${YP_DIR} -h ${MASTER} -c -d ${DOMAIN} ${MAP}; then
240 echo "Can't transfer map ${MAP}." 1>&2
/freebsd-11-stable/contrib/groff/src/utils/afmtodit/
H A Dafmtodit.pl6226 open(MAP, $map) || open(MAP, $sys_map) ||
6228 while (<MAP>) {
6262 close(MAP);
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-ppc.c1588 #define MAP(str, reloc) { str, sizeof (str) - 1, 1, 1, reloc }
1593 MAP ("l", BFD_RELOC_LO16),
1594 MAP ("h", BFD_RELOC_HI16),
1595 MAP ("ha", BFD_RELOC_HI16_S),
1596 MAP ("brtaken", BFD_RELOC_PPC_B16_BRTAKEN),
1597 MAP ("brntaken", BFD_RELOC_PPC_B16_BRNTAKEN),
1598 MAP ("got", BFD_RELOC_16_GOTOFF),
1599 MAP ("got@l", BFD_RELOC_LO16_GOTOFF),
1600 MAP ("got@h", BFD_RELOC_HI16_GOTOFF),
1601 MAP ("go
1580 #define MAP macro
[all...]
H A Dtc-mep.c1476 #define MAP(n) case MEP_OPERAND_##n: return BFD_RELOC_MEP_##n;
1478 #define MAP(n) case MEP_OPERAND_/**/n: return BFD_RELOC_MEP_/**/n;
1498 MAP (PCREL8A2); /* beqz */
1499 MAP (PCREL12A2); /* bsr16 */
1500 MAP (PCREL17A2); /* beqi */
1501 MAP (PCREL24A2); /* bsr24 */
1502 MAP (PCABS24A2); /* jmp */
1503 MAP (UIMM24); /* mov */
1504 MAP (ADDR24A4); /* sw/lw */
1472 #define MAP macro
1474 #define MAP macro
/freebsd-11-stable/contrib/gcc/
H A Dsbitmap.h168 #define sbitmap_free(MAP) free(MAP)
H A Dbitmap.h101 /* True if MAP is an empty bitmap. */
102 #define bitmap_empty_p(MAP) (!(MAP)->first)
/freebsd-11-stable/usr.sbin/pmccontrol/
H A Dpmccontrol.c180 #define MAP(M,C,P) (*((M) + (C)*npmc + (P))) macro
195 b = MAP(map, i, j);
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtset.c306 } MAP; typedef in typeref:struct:map
308 static MAP *cur, *maplist;
403 MAP *mapp;
409 mapp = typeMalloc(MAP, 1);
524 MAP *mapp;
/freebsd-11-stable/usr.sbin/ypldap/
H A Dparse.y105 %token PASSWD NAME FIXED LIST GROUPNAME GROUPPASSWD GROUPGID MAP
307 | PROVIDE MAP STRING {
392 { "map", MAP },
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp419 auto MAP = Worklist.pop_back_val(); local
422 if (!VisitedPhis.insert(MAP).second)
425 for (const auto *MA : def_chain(MAP.first)) {
436 instructionClobbersQuery(MD, MAP.second, Query.Inst, AA);
454 assert(!instructionClobbersQuery(MD, MAP.second, Query.Inst, AA)
469 upward_defs_begin({const_cast<MemoryAccess *>(MA), MAP.second}),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c1120 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N) macro
1128 switch (REP(MAP(from), MAP(to))) {
/freebsd-11-stable/contrib/binutils/ld/
H A Dldgram.y138 %token DEFINED TARGET_K SEARCH_DIR MAP ENTRY
343 | MAP '(' filename ')'
H A Dldlex.l267 <BOTH,SCRIPT>"MAP" { RTOKEN(MAP);}
/freebsd-11-stable/contrib/nvi/regex/
H A Dregcomp.c1012 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N) macro
1024 switch (REP(MAP(from), MAP(to))) {
/freebsd-11-stable/lib/libc/regex/
H A Dregcomp.c1184 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N) macro
1192 switch (REP(MAP(from), MAP(to))) {

Completed in 400 milliseconds

12