Searched refs:place (Results 1 - 25 of 193) sorted by relevance

12345678

/openbsd-current/libexec/tradcpp/
H A Deval.h32 bool eval(struct place *p, char *expr);
H A Dmacro.h33 struct place;
38 void macro_define_plain(struct place *, const char *macro,
39 struct place *, const char *expansion);
40 void macro_define_params(struct place *, const char *macro,
41 struct place *, const char *params,
42 struct place *, const char *expansion);
43 void macro_define_magic(struct place *, const char *macro);
47 char *macroexpand(struct place *, const char *buf, size_t len,
50 void macro_sendline(struct place *, const char *buf, size_t len);
51 void macro_sendeof(struct place *);
[all...]
H A Dfiles.h30 struct place;
38 void file_readquote(struct place *, const char *name);
39 void file_readbracket(struct place *, const char *name);
40 void file_readabsolute(struct place *, const char *name);
H A Dplace.h41 struct place { struct
51 void place_setnowhere(struct place *p);
52 void place_setbuiltin(struct place *p, unsigned num);
53 void place_setcommandline(struct place *p, unsigned word, unsigned column);
54 void place_setfilestart(struct place *p, const struct placefile *pf);
56 void place_addcolumns(struct place *, unsigned cols);
57 void place_addlines(struct place *, unsigned lines);
59 const char *place_getname(const struct place *);
60 const char *place_getparsedir(const struct place *incplace);
61 bool place_eq(const struct place *, cons
[all...]
H A Ddirective.h32 #include "place.h"
36 * the place in the current line
40 struct place current;
41 struct place nextline;
48 void directive_goteof(struct place *p);
H A Doutput.h30 void output(const struct place *p, const char *buf, size_t len);
H A Dplace.c39 #include "place.h"
42 struct place includedfrom;
63 placefile_create(const struct place *from, const char *name,
99 place_getparsedir(const struct place *place) argument
101 if (place->file == NULL) {
104 return place->file->dir;
109 placefile_find(const struct place *incfrom, const char *name)
126 place_changefile(struct place *p, const char *name)
144 place_addfile(const struct place *plac argument
[all...]
H A Dutils.h33 struct place;
64 /* in place.c */
66 PF(2, 3) void complain(const struct place *, const char *fmt, ...);
70 void debuglog_open(const struct place *p, /*const*/ char *file);
72 PF(2, 3) void debuglog(const struct place *p, const char *fmt, ...);
73 PF(3, 4) void debuglog2(const struct place *p, const struct place *p2,
H A Dfiles.c40 #include "place.h"
180 struct place ptmp;
319 mkfilename(struct place *place, const char *dir, const char *file) argument
326 dir = place_getparsedir(place);
362 file_search(struct place *place, struct incdirarray *path, const char *name) argument
370 assert(place != NULL);
375 pf = place_addfile(place, name, true);
384 file = mkfilename(place, i
401 file_readquote(struct place *place, const char *name) argument
407 file_readbracket(struct place *place, const char *name) argument
413 file_readabsolute(struct place *place, const char *name) argument
[all...]
H A DMakefile4 place.c array.c utils.c
H A Dmain.c43 #include "place.h"
91 struct place where;
92 struct place where2;
125 commandline_macro_add(const struct place *p, const char *macro,
126 const struct place *p2, const char *expansion)
141 commandline_def(const struct place *p, char *str)
143 struct place p2;
168 commandline_undef(const struct place *p, char *str)
202 struct place p;
212 struct place
[all...]
/openbsd-current/usr.bin/pr/
H A Degetopt.c66 static char *place = EMSG; /* option letter processing */ local
73 *place = savec;
77 if (!*place) {
82 ((*(place = nargv[eoptind]) != '-') && (*place != '+'))) {
83 place = EMSG;
87 delim = (int)*place;
88 if (place[1] && *++place == '-' && !place[
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Darm13.C5 inline void *operator new(size_t, void *place) { return place; } argument
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb2.C3 inline void *operator new(size_t, void *place) throw() { return place; } argument
/openbsd-current/bin/pax/
H A Dgetoldopt.c27 char *place; local
49 place = strchr(optstring, c);
51 if (place == NULL || c == ':') {
56 place++;
57 if (*place == ':') {
/openbsd-current/gnu/llvm/lldb/source/Host/common/
H A DGetOptInc.cpp47 static const char *place = EMSG; /* option letter processing */ variable
119 current_argv = const_cast<char *>(place);
257 if (optreset || !*place) { /* update scanning pointer */
260 place = EMSG;
275 if (*(place = nargv[optind]) != '-' ||
276 (place[1] == '\0' && strchr(options, '-') == NULL)) {
277 place = EMSG; /* found non-option */
311 if (place[1] != '\0' && *++place == '-' && place[
[all...]
/openbsd-current/lib/libc/stdlib/
H A Dgetopt_long.c91 static char *place = EMSG; /* option letter processing */ variable
171 current_argv = place;
323 if (optreset || !*place) { /* update scanning pointer */
326 place = EMSG;
343 if (*(place = nargv[optind]) != '-' ||
344 (place[1] == '\0' && strchr(options, '-') == NULL)) {
345 place = EMSG; /* found non-option */
381 if (place[1] != '\0' && *++place == '-' && place[
[all...]
/openbsd-current/sys/dev/pci/drm/i915/
H A Dintel_region_ttm.c210 struct ttm_place place = {}; local
216 place.flags |= TTM_PL_FLAG_CONTIGUOUS;
218 if (WARN_ON(overflows_type(offset >> PAGE_SHIFT, place.fpfn))) {
222 place.fpfn = offset >> PAGE_SHIFT;
223 if (WARN_ON(overflows_type(place.fpfn + (size >> PAGE_SHIFT), place.lpfn))) {
227 place.lpfn = place.fpfn + (size >> PAGE_SHIFT);
230 place.flags |= TTM_PL_FLAG_TOPDOWN;
232 place
[all...]
H A Di915_ttm_buddy_manager.c36 const struct ttm_place *place,
47 lpfn = place->lpfn;
55 ttm_resource_init(bo, place, &bman_res->base);
59 if (place->flags & TTM_PL_FLAG_TOPDOWN)
62 if (place->fpfn || lpfn != man->size)
75 if (place->fpfn + PFN_UP(bman_res->base.size) != place->lpfn &&
76 place->flags & TTM_PL_FLAG_CONTIGUOUS) {
101 err = drm_buddy_alloc_blocks(mm, (u64)place->fpfn << PAGE_SHIFT,
110 if (place
34 i915_ttm_buddy_man_alloc(struct ttm_resource_manager *man, struct ttm_buffer_object *bo, const struct ttm_place *place, struct ttm_resource **res) argument
169 i915_ttm_buddy_man_intersects(struct ttm_resource_manager *man, struct ttm_resource *res, const struct ttm_place *place, size_t size) argument
207 i915_ttm_buddy_man_compatible(struct ttm_resource_manager *man, struct ttm_resource *res, const struct ttm_place *place, size_t size) argument
[all...]
/openbsd-current/gnu/usr.bin/binutils/opcodes/
H A Dia64-opc.c312 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type)
314 if (main_table[place].opcode_type != type)
318 if (main_table[place].flags
324 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3)
339 o2 = elf64_ia64_operands + main_table[place].operands[2];
482 int place = ia64_dis_names[disent].insn_index;
486 if (opcode_verify (opcode, place, type)
537 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind)
542 res->type = main_table[place].opcode_type;
543 res->num_outputs = main_table[place]
305 opcode_verify(ia64_insn opcode, int place, enum ia64_insn_type type) argument
474 int place = ia64_dis_names[disent].insn_index; local
528 make_ia64_opcode(ia64_insn opcode, const char *name, int place, int depind) argument
563 int place = ia64_dis_names[disent].insn_index; local
610 ia64_find_matching_opcode(const char *name, short place) argument
688 short place; local
[all...]
H A Dm68k-dis.c352 The only place this is stored in the opcode table is
483 register int place = d[1];
498 val = fetch_arg (buffer, place, 2, info);
508 reg_names[fetch_arg (buffer, place, 3, info) + 8]);
561 val = fetch_arg (buffer, place, 12, info);
574 val = fetch_arg (buffer, place, 3, info);
582 val = fetch_arg (buffer, place, 3, info);
590 if (place == 'h')
593 val = fetch_arg (buffer, place, 1, info);
598 val = fetch_arg (buffer, place,
481 register int place = d[1]; local
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/opcodes/
H A Dia64-opc.c312 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type)
314 if (main_table[place].opcode_type != type)
318 if (main_table[place].flags
324 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3)
339 o2 = elf64_ia64_operands + main_table[place].operands[2];
482 int place = ia64_dis_names[disent].insn_index;
486 if (opcode_verify (opcode, place, type)
537 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind)
542 res->type = main_table[place].opcode_type;
543 res->num_outputs = main_table[place]
305 opcode_verify(ia64_insn opcode, int place, enum ia64_insn_type type) argument
474 int place = ia64_dis_names[disent].insn_index; local
528 make_ia64_opcode(ia64_insn opcode, const char *name, int place, int depind) argument
563 int place = ia64_dis_names[disent].insn_index; local
610 ia64_find_matching_opcode(const char *name, short place) argument
688 short place; local
[all...]
H A Dm68k-dis.c162 CODE is a "place to put an argument", or 'x' for a destination
579 int place = d[1];
594 val = fetch_arg (buffer, place, 2, info);
604 reg_names[fetch_arg (buffer, place, 3, info) + 8]);
657 val = fetch_arg (buffer, place, 12, info);
670 val = fetch_arg (buffer, place, 3, info);
678 val = fetch_arg (buffer, place, 3, info);
686 if (place == 'h')
689 val = fetch_arg (buffer, place, 1, info);
694 val = fetch_arg (buffer, place,
577 int place = d[1]; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash29.C59 inline void *operator new(size_t, void *place) throw() { return place; } argument
63 TypeIDInit<T>::metaclassConstructor( void* place )
65 new ( place ) MetaClass<T>;
/openbsd-current/sys/dev/pci/drm/ttm/
H A Dttm_range_manager.c60 const struct ttm_place *place,
70 lpfn = place->lpfn;
79 if (place->flags & TTM_PL_FLAG_TOPDOWN)
82 ttm_resource_init(bo, place, &node->base);
88 place->fpfn, lpfn, mode);
118 const struct ttm_place *place,
125 if (place->fpfn >= (node->start + num_pages) ||
126 (place->lpfn && place->lpfn <= node->start))
134 const struct ttm_place *place,
58 ttm_range_man_alloc(struct ttm_resource_manager *man, struct ttm_buffer_object *bo, const struct ttm_place *place, struct ttm_resource **res) argument
116 ttm_range_man_intersects(struct ttm_resource_manager *man, struct ttm_resource *res, const struct ttm_place *place, size_t size) argument
132 ttm_range_man_compatible(struct ttm_resource_manager *man, struct ttm_resource *res, const struct ttm_place *place, size_t size) argument
[all...]

Completed in 162 milliseconds

12345678