Searched refs:num (Results 251 - 275 of 514) sorted by relevance

<<11121314151617181920>>

/haiku-fatelf/src/libs/print/libgutenprint/src/testpattern/
H A Drun-testpattern-1226 1) valgrind $valopts -q --num-callers=100 --leak-check=yes --error-limit=no ./testpattern $suppress ;;
227 2) valgrind $valopts --num-callers=100 --leak-resolution=high --leak-check=yes --error-limit=no ./testpattern $suppress ;;
228 3) valgrind $valopts --error-limit=no --num-callers=100 --show-reachable=yes --leak-resolution=high --leak-check=yes ./testpattern $suppress ;;
/haiku-fatelf/src/servers/app/
H A DView.h140 void ConvertToScreenForDrawing(BPoint* dst, const BPoint* src, int32 num) const;
141 void ConvertToScreenForDrawing(BRect* dst, const BRect* src, int32 num) const;
142 void ConvertToScreenForDrawing(BRegion* dst, const BRegion* src, int32 num) const;
/haiku-fatelf/src/system/kernel/
H A Dkernel_daemon.cpp106 int32 num = 0; local
110 num++;
113 daemon->offset = num % frequency;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/MyNetwork/
H A DbtAddOn.h70 int fs_readdir(fs_nspace *ns, fs_node *node, btCookie *cookie, long *num,
119 extern int fs_read_attribdir(fs_nspace *ns, fs_node *node, btCookie *cookie, long *num, struct dirent *buf, size_t bufsize);
126 extern int fs_read_indexdir(fs_nspace *ns, btCookie *cookie, long *num, struct dirent *buf, size_t bufsize);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/dos/r5/
H A Dattr.c139 int dosfs_read_attrdir(void *_vol, void *_node, void *_cookie, long *num, argument
150 *num = 0;
161 *num = 1;
/haiku-fatelf/src/bin/gdb/gdb/
H A Drs6000-tdep.c2010 rs6000_stab_reg_to_regnum (int num)
2014 if (0 <= num && num <= 31)
2015 return tdep->ppc_gp0_regnum + num;
2016 else if (32 <= num && num <= 63)
2020 return tdep->ppc_fp0_regnum + (num - 32);
2021 else if (77 <= num && num <= 108)
2022 return tdep->ppc_vr0_regnum + (num
2008 rs6000_stab_reg_to_regnum(int num) argument
2050 rs6000_dwarf2_reg_to_regnum(int num) argument
[all...]
H A Dprintcmd.c1436 delete_display (int num)
1441 error ("No display number %d.", num);
1443 if (display_chain->number == num)
1453 error ("No display number %d.", num);
1454 if (d->next->number == num)
1472 int num;
1490 num = atoi (p);
1492 delete_display (num);
1603 disable_display (int num)
1608 if (d->number == num)
1430 delete_display(int num) argument
1466 int num; local
1597 disable_display(int num) argument
1654 int num; local
[all...]
H A Dnto-procfs.c348 int flags = ~0, err, num, i, j; local
375 err = devctl (ctl_fd, DCMD_PROC_MAPINFO, NULL, 0, &num);
378 printf ("failed devctl num mapinfos - %d (%s)\n", err, safe_strerror (err));
382 mapinfos = xmalloc (num * sizeof (procfs_mapinfo));
384 num_mapinfos = num;
388 err = devctl (ctl_fd, DCMD_PROC_MAPINFO, mapinfo_p, num
389 * sizeof (procfs_mapinfo), &num);
397 num = min (num, num_mapinfos);
401 for (mapinfo_p = mapinfos, i = 0; i < num;
[all...]
/haiku-fatelf/src/tools/docbook/libxslt/libexslt/
H A Ddate.c137 #define VALID_ALWAYS(num) (num >= 0)
281 * @num: the integer to fill in
286 * Parses a 2-digits integer and updates @num with the value. @cur is
288 * In case of error, @invalid is set to %TRUE, values of @num and
291 #define PARSE_2_DIGITS(num, cur, func, invalid) \
301 num = val; \
307 * @num: the integer to format
313 #define FORMAT_2_DIGITS(num, cur) \
314 *cur = '0' + ((num / 1
983 double num; local
[all...]
/haiku-fatelf/src/add-ons/input_server/methods/canna/lib/
H A Dkigo.c646 int num; local
652 num = (int)(d->ch & 0x0f);
654 num = (int)(d->ch - 0x57);
661 if(num >= kc->glineifp->glkosu) {
667 *(kc->curIkouho) = num;
/haiku-fatelf/src/bin/gawk/
H A Dnode.c198 register long num = (long) val; local
199 if (num < NVAL && num >= 0) {
200 sp = (char *) values[num];
203 (void) sprintf(sp, "%ld", num);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/udf/r5/
H A Dudf.cpp103 long *num, struct dirent *dirent, size_t bufferSize);
113 static int udf_read_attrdir(void *ns, void *node, void *cookie, long *num,
130 static int udf_read_indexdir(void *ns, void *cookie, long *num,struct dirent *dirent,
142 static int udf_read_query(void *ns, void *cookie, long *num,
751 udf_read_dir(void *ns, void *node, void *cookie, long *num,
757 if (!ns || !node || !cookie || !num || bufferSize < sizeof(dirent))
774 *num = 1;
778 *num = 0;
867 udf_read_attrdir(void *_ns, void *node, void *_cookie, long *num, struct dirent *dirent, size_t bufsize)
958 udf_read_indexdir(void *_ns, void *_cookie, long *num, struc
[all...]
/haiku-fatelf/src/bin/
H A Dsysinfo.cpp228 for (int num = 0; num < 2; num++) {
229 printf("\t%s: %s%s%u entries, ", name[num],
230 pages ? pages : "", pages ? " pages, " : "", entries[num]);
232 if (ways[num] == 0xff)
235 printf("%u-way set associative\n", ways[num]);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/AuthLib/
H A Dbesure_auth.c724 char num[50]; local
727 if (GetKeyValue(fileName, key, num, sizeof(num)))
729 *value = atoi(num);
765 char num[50]; local
766 sprintf(num, "%d", value);
767 return SetKeyValue(fileName, key, num);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dkernel.c72 int num; member in struct:vnlist
140 int num; member in struct:fdarray
218 static fdarray * new_fds(int num);
311 kprintf("fdarray @ 0x%x rcnt %d lock %d num %d\n", fds, fds->rcnt,
312 fds->num);
314 for(i=0; i < fds->num; i++)
371 for(i=0; i < fds->num; i++)
410 ulong num; local
412 num = strtoul(argv[2], NULL, 0);
414 if (num <
2214 long num; local
3073 int i, j, num, end; local
3490 new_fds(int num) argument
[all...]
/haiku-fatelf/src/bin/coreutils/src/
H A Dls.c2081 char num; /* For numerical codes */ local
2093 num = 0;
2141 num = *p - '0';
2146 num = 0;
2149 num = '\a';
2152 num = '\b';
2155 num = 27;
2158 num = '\f';
2161 num = '\n';
2164 num
[all...]
H A Dshred.c643 * Generate a random wiping pass pattern with num passes.
649 genpattern (int *dest, size_t num, struct randint_source *s) argument
658 if (!num)
665 n = num; /* Passes remaining to fill */
712 top = num - randpasses; /* Top of initialized data */
723 * to draw a line with slope (randpasses-1)/(num-1).
737 for (n = 0; n < num; n++)
741 accum += num - 1;
754 /* assert (top == num); */
/haiku-fatelf/src/libs/fluidsynth/src/
H A Dfluid_synth.c833 fluid_synth_cc(fluid_synth_t* synth, int chan, int num, int val) argument
843 if ((num < 0) || (num >= 128)) {
853 FLUID_LOG(FLUID_INFO, "cc\t%d\t%d\t%d", chan, num, val);
857 fluid_channel_cc(synth->channel[chan], num, val);
866 fluid_synth_get_cc(fluid_synth_t* synth, int chan, int num, int* pval) argument
873 if ((num < 0) || (num >= 128)) {
878 *pval = synth->channel[chan]->cc[num];
1528 int fluid_synth_set_reverb_preset(fluid_synth_t* synth, int num) argument
1636 int i, num, available, count, bytes; local
2508 fluid_synth_get_sfont(fluid_synth_t* synth, unsigned int num) argument
[all...]
/haiku-fatelf/src/bin/network/tcpdump/
H A Daddrtoname.c1146 static u_int num = 0; local
1148 if (num <= 0) {
1149 num = 64;
1150 ptr = (struct hnamemem *)calloc(num, sizeof (*ptr));
1154 --num;
1166 static u_int num = 0; local
1168 if (num <= 0) {
1169 num = 64;
1170 ptr = (struct h6namemem *)calloc(num, sizeof (*ptr));
1174 --num;
[all...]
/haiku-fatelf/src/bin/rcs/
H A Drlog.c397 Head ? " " : "", Head ? Head->num : "",
404 currlock->delta->num);
420 aprintf(out, symbolFormat, curassoc->symbol, curassoc->num);
461 if (delta->next && countnumflds(delta->num)==2)
579 node->num, pre5 ? " " : ""
602 getbranchno(newbranch->hsh->num, &branchnum);
981 countnumflds(pdelta->num) == length+(length&1) &&
982 0 <= compartial(pdelta->num, prevision->strtrev, length) &&
983 0 <= compartial(prevision->endrev, pdelta->num, length)
1163 Dbranch ? Dbranch : fstr_save(partialno(&s,Head->num,
[all...]
/haiku-fatelf/src/libs/ncurses/include/
H A DCaps262 columns cols num co - - YBCGE number of columns in a line
263 init_tabs it num it - - YB-G- tabs initially every # spaces
264 lines lines num li - - YBCGE number of lines on screen or page
265 lines_of_memory lm num lm - - YB-G- lines of memory if > line. 0 means varies
266 magic_cookie_glitch xmc num sg - - YBCGE number of blank characters left by smso or rmso
267 padding_baud_rate pb num pb - - YB-GE lowest baud rate where padding needed
268 virtual_terminal vt num vt - - YB--- virtual terminal number (CB/unix)
269 width_status_line wsl num ws - - YB-G- number of columns in status line
270 num_labels nlab num Nl - - ----- number of labels on screen
271 label_height lh num l
[all...]
H A DCaps.aix4262 columns cols num co - - YBCGE number of columns in a line
263 init_tabs it num it - - YB-G- tabs initially every # spaces
264 lines lines num li - - YBCGE number of lines on screen or page
265 lines_of_memory lm num lm - - YB-G- lines of memory if > line. 0 means varies
266 magic_cookie_glitch xmc num sg - - YBCGE number of blank characters left by smso or rmso
267 padding_baud_rate pb num pb - - YB-GE lowest baud rate where padding needed
268 virtual_terminal vt num vt - - YB--- virtual terminal number (CB/unix)
269 width_status_line wsl num ws - - YB-G- number of columns in status line
270 num_labels nlab num Nl - - ----- number of labels on screen
271 label_height lh num l
[all...]
H A DCaps.hpux11263 columns cols num co - - YBCGE number of columns in a line
264 init_tabs it num it - - YB-G- tabs initially every # spaces
265 lines lines num li - - YBCGE number of lines on screen or page
266 lines_of_memory lm num lm - - YB-G- lines of memory if > line. 0 means varies
267 magic_cookie_glitch xmc num sg - - YBCGE number of blank characters left by smso or rmso
268 padding_baud_rate pb num pb - - YB-GE lowest baud rate where padding needed
269 virtual_terminal vt num vt - - YB--- virtual terminal number (CB/unix)
270 width_status_line wsl num ws - - YB-G- number of columns in status line
272 num_labels nlab num Nl - - ----- number of labels on screen
273 label_height lh num l
[all...]
/haiku-fatelf/src/bin/bc/bc/
H A Dstorage.c280 push_copy (num)
281 bc_num num;
286 temp->s_num = bc_copy_num (num);
295 push_num (num)
296 bc_num num;
301 temp->s_num = num;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/btree/
H A Dtest.cpp527 addRandomSet(Transaction *transaction,BPlusTree *tree,int32 num) argument
529 printf("*** Add random set to tree (%ld to %ld old entries)...\n",num,gTreeCount);
531 for (int32 i = 0;i < num;i++) {
556 removeRandomSet(Transaction *transaction,BPlusTree *tree,int32 num) argument
558 printf("*** Remove random set from tree (%ld from %ld entries)...\n",num,gTreeCount);
562 for (int32 i = 0;i < num;i++) {

Completed in 515 milliseconds

<<11121314151617181920>>