Searched refs:nptrs (Results 1 - 9 of 9) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/libgcc/
H A Dgbl-ctors.h77 __SIZE_TYPE__ nptrs = (__SIZE_TYPE__) __CTOR_LIST__[0]; \
79 if (nptrs == (__SIZE_TYPE__)-1) \
80 for (nptrs = 0; __CTOR_LIST__[nptrs + 1] != 0; nptrs++); \
81 for (i = nptrs; i >= 1; i--) \
/netbsd-current/external/gpl3/gcc/dist/libgcc/
H A Dgbl-ctors.h77 __SIZE_TYPE__ nptrs = (__SIZE_TYPE__) __CTOR_LIST__[0]; \
79 if (nptrs == (__SIZE_TYPE__)-1) \
80 for (nptrs = 0; __CTOR_LIST__[nptrs + 1] != 0; nptrs++); \
81 for (i = nptrs; i >= 1; i--) \
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/frv/
H A Dfrvbegin.c126 unsigned long nptrs = (unsigned long) __CTOR_LIST__[0]; local
129 if (nptrs == (unsigned long)-1)
130 for (nptrs = 0; __CTOR_LIST__[nptrs + 1] != 0; nptrs++);
132 for (i = nptrs; i >= 1; i--)
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/frv/
H A Dfrvbegin.c126 unsigned long nptrs = (unsigned long) __CTOR_LIST__[0]; local
129 if (nptrs == (unsigned long)-1)
130 for (nptrs = 0; __CTOR_LIST__[nptrs + 1] != 0; nptrs++);
132 for (i = nptrs; i >= 1; i--)
/netbsd-current/tests/lib/libexecinfo/
H A Dt_backtrace.c69 size_t j, nptrs, min_frames, max_frames; local
80 nptrs = backtrace(buffer, __arraycount(buffer));
81 ATF_REQUIRE(nptrs != (size_t)-1);
82 strings = backtrace_symbols_fmt(buffer, nptrs, "%n");
86 printf("got nptrs=%zu ncalls=%zu (min_frames: %zu, max_frames: %zu)\n",
87 nptrs, ncalls, min_frames, max_frames);
89 for (j = 0; j < nptrs; j++) {
93 ATF_REQUIRE(nptrs >= ncalls + 2 + min_frames);
94 ATF_REQUIRE(nptrs <= ncalls + 2 + max_frames);
101 for (size_t i = 0; j < nptrs;
[all...]
/netbsd-current/external/bsd/flex/dist/tests/
H A Dmem_r.l76 static int nptrs=0; /* Number of pairs in array. */
81 fprintf(fp,"\tptrs[%d] = {", nptrs);
98 if( nptrs >= arrsz){
102 ptrs[nptrs].p = 0;
103 ptrs[nptrs].sz = 0;
113 nptrs++;
153 nptrs--;
172 nptrs = 0;
181 if ( nptrs > 0 || total_mem > 0){
182 fprintf(stderr,"Oops. Looks like a memory leak: nptrs
[all...]
H A Dmem_nr.l76 static int nptrs=0; /* Number of pairs in array. */
81 fprintf(fp,"\tptrs[%d] = {", nptrs);
96 if( nptrs >= arrsz){
100 ptrs[nptrs].p = 0;
101 ptrs[nptrs].sz = 0;
111 nptrs++;
147 nptrs--;
165 nptrs = 0;
173 if ( nptrs > 0 || total_mem > 0){
174 fprintf(stderr,"Oops. Looks like a memory leak: nptrs
[all...]
/netbsd-current/external/bsd/jemalloc/dist/test/unit/
H A Darena_reset.c98 do_arena_reset_pre(unsigned arena_ind, void ***ptrs, unsigned *nptrs) { argument
109 *nptrs = nsmall + nlarge;
110 *ptrs = (void **)malloc(*nptrs * sizeof(void *));
130 for (i = 0; i < *nptrs; i++) {
137 do_arena_reset_post(void **ptrs, unsigned nptrs, unsigned arena_ind) { argument
148 for (i = 0; i < nptrs; i++) {
186 unsigned nptrs; local
189 do_arena_reset_pre(arena_ind, &ptrs, &nptrs);
191 do_arena_reset_post(ptrs, nptrs, arena_ind);
227 unsigned nptrs; local
304 unsigned nptrs; local
[all...]
/netbsd-current/sys/dev/raidframe/
H A Drf_dagutils.c101 int nptrs; local
130 nptrs = nSucc + nAnte + nResult + nSucc;
132 if (nptrs <= RF_DAG_PTRCACHESIZE) {
139 * (1) Generally, nptrs doesn't exceed RF_DAG_PTRCACHESIZE by
145 } else if (nptrs <= (RF_DAGPCACHE_SIZE / sizeof(RF_DagNode_t *))) {
149 ptrs = RF_MallocAndAdd(nptrs * sizeof(*ptrs), alist);

Completed in 278 milliseconds