HomeSort by: relevance | last modified time | path
    Searched refs:dlist (Results 1 - 22 of 22) sorted by relevancy

  /src/external/gpl3/gcc/dist/libstdc++-v3/scripts/
create_testsuite_files 36 dlist=`echo [0-9][0-9]*`
37 dlist="$dlist std abi backward ext performance tr1 tr2 decimal experimental"
38 dlist="$dlist special_functions"
39 find $dlist "(" -type f -o -type l ")" -name "*.cc" -print > $tmp.01
40 find $dlist "(" -type f -o -type l ")" -name "*.c" -print > $tmp.02
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/scripts/
create_testsuite_files 36 dlist=`echo [0-9][0-9]*`
37 dlist="$dlist std abi backward ext performance tr1 tr2 decimal experimental"
38 dlist="$dlist special_functions"
39 find $dlist "(" -type f -o -type l ")" -name "*.cc" -print > $tmp.01
40 find $dlist "(" -type f -o -type l ")" -name "*.c" -print > $tmp.02
  /src/bin/pax/
tables.h 110 * only a single DLIST that has a truncation id of 0 (no inode bits were
126 struct dlist *list; /* map list based on inode truncation bits */
129 typedef struct dlist { struct
132 struct dlist *fow;
133 } DLIST;
  /src/external/bsd/byacc/dist/test/btyacc/
btyacc_demo.tab.h 31 Decl_List *dlist; member in union:YYSTYPE
btyacc_demo.tab.c 163 Decl_List *dlist; member in union:YYSTYPE
672 extern Decl * build_function(Decl *decl, Decl_List *dlist, Type *type);
673 extern Decl_List * append_dlist(Decl_List *dlist, Decl *decl);
1092 free((*val).dlist); }
1101 free((*val).dlist); }
2032 { yyval.decl = build_function(yystack.l_mark[-5].decl, yystack.l_mark[-2].dlist, yystack.l_mark[0].type); }
2038 { yyval.dlist = NULL; }
2044 { yyval.dlist = yystack.l_mark[0].dlist; }
2050 { yyval.dlist = append_dlist(yystack.l_mark[-3].dlist, yystack.l_mark[0].decl);
    [all...]
  /src/external/bsd/byacc/dist/test/
btyacc_demo.y 44 Decl_List *dlist;
67 %type <dlist> formal_arg_list(<scope>) nonempty_formal_arg_list(<scope>)
221 extern Decl * build_function(Decl *decl, Decl_List *dlist, Type *type);
222 extern Decl_List * append_dlist(Decl_List *dlist, Decl *decl);
  /src/external/bsd/libevent/dist/
util-internal.h 175 /* Helper: Verify that all the elements in 'dlist' are internally consistent.
181 #define EVUTIL_ASSERT_LIST_OK(dlist, type, field) do { \
183 if (LIST_EMPTY((dlist))) \
188 elm1 = LIST_FIRST((dlist)); \
201 nextp = &LIST_FIRST((dlist)); \
202 elm1 = LIST_FIRST((dlist)); \
evmap.c 672 delete_all_in_dlist(struct event_dlist *dlist)
675 while ((ev = LIST_FIRST(dlist)))
  /src/external/bsd/ntp/dist/sntp/libevent/
util-internal.h 175 /* Helper: Verify that all the elements in 'dlist' are internally consistent.
181 #define EVUTIL_ASSERT_LIST_OK(dlist, type, field) do { \
183 if (LIST_EMPTY((dlist))) \
188 elm1 = LIST_FIRST((dlist)); \
201 nextp = &LIST_FIRST((dlist)); \
202 elm1 = LIST_FIRST((dlist)); \
evmap.c 670 delete_all_in_dlist(struct event_dlist *dlist)
673 while ((ev = LIST_FIRST(dlist)))
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
util.d 93 auto a = make!(DList!int)(1,2,3,4);
94 auto b = make!(DList!int)(1,2,3,4);
95 auto c = make!(DList!int)(1,2,3,5);
96 auto d = make!(DList!int)(1,2,3,4,5);
185 auto dlist = make!(DList!int)();
186 auto refToDList = dlist;
188 assert(!dlist.empty);
package.d 116 The $(MREF std, container, dlist) module provides
203 Since a sequence of elements can be removed from a $(MREF_ALTTEXT doubly linked list,std,container,dlist)
204 in constant time, `DList` provides the primitive `c.remove(r)`
513 public import std.container.dlist;
dlist.d 7 Source: $(PHOBOSSRC std/container/dlist.d)
19 module std.container.dlist;
25 import std.container : DList;
27 auto s = DList!int(1, 2, 3);
44 auto sl = DList!int([1, 2, 3, 4, 5]);
53 // DList.Range can be used to remove elements from the list it spans
54 auto nl = DList!int([1, 2, 3, 4, 5]);
73 A DList Node without payload. Used to handle the sentinel node (henceforth "sentinode").
92 return (cast(inout(DList!T.PayNode)*)&this)._payload;
104 The base DList Range. Contains Range primitives that don't depend on payload type
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
omp-low.cc 4828 to destructors go in DLIST. */
4831 lower_rec_input_clauses (tree clauses, gimple_seq *ilist, gimple_seq *dlist,
5497 gimplify_assign (y4, ref, dlist);
5508 gimplify_assign (i2, build_int_cst (TREE_TYPE (v), 0), dlist);
5511 gimple_seq_add_stmt (dlist, gimple_build_label (body2));
5545 gimple_seq_add_seq (dlist, tseq);
5555 gimplify_and_add (x, dlist);
5574 gimplify_assign (build_simple_mem_ref (y4), x, dlist);
5597 gimple_seq_add_stmt (dlist, g);
5603 gimple_seq_add_stmt (dlist, g)
5573 gimplify_assign (build_simple_mem_ref (y4), x, dlist); local
8537 gimple_seq ilist, dlist, olist, tred_dlist = NULL, clist = NULL, new_body; local
8570 &ilist, &dlist, ctx, NULL); local
8788 gimple_seq bind_body, bind_body_tail = NULL, dlist; local
8798 &bind_body, &dlist, ctx, NULL); local
8846 gimple_seq bind_body, bind_body_tail = NULL, dlist; local
8878 &bind_body, &dlist, ctx, NULL); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
omp-low.cc 4870 to destructors go in DLIST. */
4873 lower_rec_input_clauses (tree clauses, gimple_seq *ilist, gimple_seq *dlist,
5539 gimplify_assign (y4, ref, dlist);
5550 gimplify_assign (i2, build_int_cst (TREE_TYPE (v), 0), dlist);
5553 gimple_seq_add_stmt (dlist, gimple_build_label (body2));
5587 gimple_seq_add_seq (dlist, tseq);
5597 gimplify_and_add (x, dlist);
5616 gimplify_assign (build_simple_mem_ref (y4), x, dlist);
5639 gimple_seq_add_stmt (dlist, g);
5645 gimple_seq_add_stmt (dlist, g)
5615 gimplify_assign (build_simple_mem_ref (y4), x, dlist); local
8579 gimple_seq ilist, dlist, olist, tred_dlist = NULL, clist = NULL, new_body; local
8612 &ilist, &dlist, ctx, NULL); local
8830 gimple_seq bind_body, bind_body_tail = NULL, dlist; local
8840 &bind_body, &dlist, ctx, NULL); local
8888 gimple_seq bind_body, bind_body_tail = NULL, dlist; local
8920 &bind_body, &dlist, ctx, NULL); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/
Makefile.am 94 std/container/binaryheap.d std/container/dlist.d \
  /src/external/mit/xorg/lib/
libmesa.mk 42 dlist.c \
libmesa.old.mk 41 dlist.c \
  /src/external/gpl3/binutils/dist/binutils/
dlltool.c 763 typedef struct dlist struct
766 struct dlist *next;
  /src/external/gpl3/binutils.old/dist/binutils/
dlltool.c 763 typedef struct dlist struct
766 struct dlist *next;
  /src/external/mpl/bind/dist/bin/named/
server.c 3880 const cfg_obj_t *dlist = NULL; local
3885 result = named_config_get(maps, "dnstap", &dlist);
3890 for (element = cfg_list_first(dlist); element != NULL;
11345 ns_listenlist_t *dlist = NULL; local
11349 result = ns_listenlist_create(mctx, &dlist);
11364 ISC_LIST_APPEND(dlist->elts, delt, link);
11366 *target = dlist;
11370 ns_listenlist_detach(&dlist);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
package.d 3421 import std.container.dlist : DList;
3424 auto a = DList!int(0, 1, 9, 9, 9, 9);
3441 import std.container.dlist : DList;
3444 auto a = DList!int(0, 1, 2, 5, 6);
3535 import std.container.dlist : DList;
3537 auto dl = DList!int(9, 1, 2, 3, 9);

Completed in 95 milliseconds