Searched refs:num (Results 76 - 100 of 514) sorted by relevance

1234567891011>>

/haiku-fatelf/src/documentation/docbook-xsl/extensions/xalan2/com/nwalsh/xalan/
H A DFormatDingbatCallout.java42 int num = callout.getCallout();
46 if (label == null && num <= graphicsMax) {
70 chars[0] = (char) (0x2775 + num);
H A DFormatUnicodeCallout.java46 int num = callout.getCallout();
50 if (label == null && num <= unicodeMax) {
69 chars[0] = (char) (unicodeStart + num - 1);
/haiku-fatelf/src/documentation/docbook-xsl/extensions/xalan27/src/com/nwalsh/xalan/
H A DFormatDingbatCallout.java42 int num = callout.getCallout();
46 if (label == null && num <= graphicsMax) {
70 chars[0] = (char) (0x2775 + num);
H A DFormatUnicodeCallout.java46 int num = callout.getCallout();
50 if (label == null && num <= unicodeMax) {
69 chars[0] = (char) (unicodeStart + num - 1);
/haiku-fatelf/src/add-ons/kernel/drivers/audio/emuxki/
H A Demuxkireg.h620 #define EMU_DSP_FX(num) (num)
622 #define EMU_DSP_IOL(base, num) (base + (num << 1))
623 #define EMU_DSP_IOR(base, num) (EMU_DSP_IOL(base, num) + 1)
626 #define EMU_DSP_INL(num) (EMU_DSP_IOL(EMU_DSP_INL_BASE, num))
627 #define EMU_DSP_INR(num) (EMU_DSP_IOR(EMU_DSP_INL_BASE, num))
[all...]
/haiku-fatelf/src/bin/rcs/
H A Drcs.c595 cuttail->num, (char *)0, (char *)0, (char *)0,
908 delta->num
917 aprintf(frewrite,DELNUMFORM,nextdelta->num,Klog);
1090 char const *num; local
1092 num=delta->num;
1094 if (strcmp(num, next->delta->num) == 0) {
1097 && !sendmail(num, next->login)
1100 num, nex
[all...]
H A Drcsmerge.c231 rev[1] = Dbranch ? Dbranch : Head->num;
235 xrev[1] = target->num;
237 rev[2] = Dbranch ? Dbranch : Head->num;
241 xrev[2] = target->num;
H A Drcsrev.c420 while ((result=cmpnumfld(revno,next->num,1)) < 0) {
436 branchnum = next->num; /* works even for empty revno*/
438 cmpnumfld(branchnum,next->num,1) == 0 &&
450 (cmpnumfld(branchnum,next->num,1)!=0))/*overshot*/ {
465 while ((result=cmpnumfld(revno,next->num,2)) < 0 &&
466 (cmpnumfld(revno,next->num,1)==0) ) {
473 if (!next || cmpnumfld(revno,next->num,1) != 0) {
490 next->num,
497 next->num, next->author
503 next->num,
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fphex.c107 unsigned long long int num; \
110 num = (((unsigned long long int) fpnum.ldbl.ieee.mantissa0) << 32 \
113 zero_mantissa = num == 0; \
117 numstr = _itoa_word (num, numbuf + sizeof numbuf, 16, \
119 wnumstr = _itowa_word (num, \
125 numstr = _itoa (num, numbuf + sizeof numbuf, 16, info->spec == 'A');\
126 wnumstr = _itowa (num, \
360 unsigned long long int num;
362 num = (((unsigned long long int) fpnum.dbl.ieee.mantissa0) << 32
365 zero_mantissa = num
358 unsigned long long int num; local
[all...]
/haiku-fatelf/src/libs/fluidsynth/src/
H A Dfluid_chan.c32 new_fluid_channel(fluid_synth_t* synth, int num) argument
43 chan->channum = num;
188 fluid_channel_cc(fluid_channel_t* chan, int num, int value) argument
190 chan->cc[num] = value;
192 switch (num) {
320 fluid_synth_modulate_voices(chan->synth, chan->channum, 1, num);
330 fluid_channel_get_cc(fluid_channel_t* chan, int num) argument
332 return ((num >= 0) && (num < 128))? chan->cc[num]
[all...]
/haiku-fatelf/src/apps/terminal/
H A DBasicTerminalBuffer.h122 void InsertSpace(int32 num);
145 inline void MoveCursorRight(int32 num);
146 inline void MoveCursorLeft(int32 num);
147 inline void MoveCursorUp(int32 num);
148 inline void MoveCursorDown(int32 num);
297 BasicTerminalBuffer::MoveCursorRight(int32 num) argument
299 SetCursor(fCursor.x + num, fCursor.y);
304 BasicTerminalBuffer::MoveCursorLeft(int32 num) argument
306 SetCursor(fCursor.x - num, fCursor.y);
311 BasicTerminalBuffer::MoveCursorUp(int32 num) argument
318 MoveCursorDown(int32 num) argument
[all...]
/haiku-fatelf/src/bin/sharutils/lib/
H A Dstrftime.c129 add_num2 (string, num, max, pad)
131 int num;
135 int top = num / 10;
142 add_char (num % 10 + '0');
150 add_num3 (string, num, max, pad)
152 int num;
156 int top = num / 100;
157 int mid = (num - top * 100) / 10;
168 add_char (num % 10 + '0');
188 add_num_time_t (string, max, num)
[all...]
/haiku-fatelf/src/libs/edit/
H A Dchared.c92 * Insert num characters
95 c_insert(EditLine *el, int num) argument
99 if (el->el_line.lastchar + num >= el->el_line.limit) {
100 if (!ch_enlargebufs(el, num +0u))
107 cp[num] = *cp;
109 el->el_line.lastchar += num;
114 * Delete num characters after the cursor
117 c_delafter(EditLine *el, int num) argument
120 if (el->el_line.cursor + num > el->el_line.lastchar)
121 num
158 c_delbefore(EditLine *el, int num) argument
335 c__number( char *p, int *num, int dval) argument
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/stdlib/
H A Dstrtod.c442 MPN_VAR (num); /* MP representation of the number. */ variable
1025 startp = str_to_mpn (startp, int_no, num, &numsize, &exponent
1034 mp_limb_t *psrc = num;
1071 memcpy (num, den, numsize * sizeof (mp_limb_t));
1075 count_leading_zeros (bits, num[numsize - 1]);
1100 memcpy (retval, &num[least_idx],
1105 retval[i - least_idx] = (num[i] >> least_bit)
1106 | (num[i + 1]
1109 retval[RETURN_LIMB_SIZE - 1] = num[i] >> least_bit;
1113 for (i = 0; num[
[all...]
/haiku-fatelf/src/documentation/docbook-xsl/extensions/saxon643/com/nwalsh/saxon/
H A DFormatUnicodeCallout.java54 int num = callout.getCallout();
63 if (userLabel == null && num <= unicodeMax) {
84 chars[0] = (char) (unicodeStart + num - 1);
/haiku-fatelf/src/libs/ncurses/c++/
H A Dcursslk.cc59 slk_array[i].num = i+1;
110 if (ERR==::slk_set(K.num,bf?K.label:"",K.format))
124 if (ERR==::slk_set(K.num,bf?K.label:"",K.format))
H A Dcursslk.h52 int num; // The number of the Label member in class:Soft_Label_Key_Set::Soft_Label_Key
54 Soft_Label_Key() : label(NULL), format(Left), num(-1) {
87 num(rhs.num)
/haiku-fatelf/src/libs/pdflib/libs/pdcore/
H A Dpc_generr.h20 #define gen(n, num, nam, msg) PDC_E_##nam = num,
22 #define gen(n, num, nam, msg) { n, num, msg, (const char *) 0 },
/haiku-fatelf/src/bin/gdb/gdb/
H A Dremote-fileio.c263 remote_fileio_seek_flag_to_host (long num, int *flag) argument
267 switch (num)
358 remote_fileio_to_be (LONGEST num, char *buf, int bytes) argument
363 buf[i] = (num >> (8 * (bytes - i - 1))) & 0xff;
367 remote_fileio_to_fio_uint (long num, fio_uint_t fnum) argument
369 remote_fileio_to_be ((LONGEST) num, (char *) fnum, 4);
373 remote_fileio_to_fio_mode (mode_t num, fio_mode_t fnum) argument
375 remote_fileio_to_be (remote_fileio_mode_to_target(num), (char *) fnum, 4);
379 remote_fileio_to_fio_time (time_t num, fio_time_t fnum) argument
381 remote_fileio_to_be ((LONGEST) num, (cha
385 remote_fileio_to_fio_long(LONGEST num, fio_long_t fnum) argument
391 remote_fileio_to_fio_ulong(LONGEST num, fio_ulong_t fnum) argument
564 long num; local
633 long num; local
659 long target_fd, num; local
777 long target_fd, num; local
850 long num; local
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/arch/arm/
H A De_log.c61 number num; local
69 num.d = x; ux = num.i[HIGH_HALF]; dx = num.i[LOW_HALF];
75 num.d = x;
133 n += (num.i[HIGH_HALF] >> 20) - 1023;
134 num.i[HIGH_HALF] = (num.i[HIGH_HALF] & 0x000fffff) | 0x3ff00000;
135 if (num.d > SQRT_2) { num
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A De_log.c61 number num; local
69 num.d = x; ux = num.i[HIGH_HALF]; dx = num.i[LOW_HALF];
75 num.d = x;
133 n += (num.i[HIGH_HALF] >> 20) - 1023;
134 num.i[HIGH_HALF] = (num.i[HIGH_HALF] & 0x000fffff) | 0x3ff00000;
135 if (num.d > SQRT_2) { num
[all...]
/haiku-fatelf/src/bin/network/wget/src/
H A Dlog.c145 #define ROT_ADVANCE(num) do { \
146 if (++num >= SAVED_LOG_LINES) \
147 num = 0; \
155 free_log_line (int num)
157 struct log_ln *ln = log_lines + num;
603 int num = log_line_current;
608 if (num == -1)
611 ROT_ADVANCE (num);
614 struct log_ln *ln = log_lines + num;
617 ROT_ADVANCE (num);
153 free_log_line(int num) argument
598 int num = log_line_current; local
[all...]
/haiku-fatelf/headers/private/kernel/
H A Delf_priv.h72 #define SYMBOL(image, num) (&(image)->syms[num])
/haiku-fatelf/src/bin/bash/lib/intl/
H A Deval-plural.h44 case num:
45 return pexp->val.num;
H A Dplural-exp.h51 num, /* Decimal number. */ enumerator in enum:expression::operator
73 unsigned long int num; /* Number value for `num'. */ member in union:expression::__anon3221

Completed in 230 milliseconds

1234567891011>>