Searched refs:n1 (Results 26 - 50 of 62) sorted by relevance

123

/haiku-fatelf/src/libs/libtelnet/
H A Dpk.c246 int n1,n2,op; local
253 n1 = in[op] - 'A' + 10;
255 n1 = in[op] - '0';
260 buf[l] = n1*16 +n2;
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dquotearg.c603 /* FIXME: technically, the type of n1 should be `unsigned int',
608 size_t n1 = n0 + 1; local
611 if (xalloc_oversized (n1, sizeof *sv))
614 slotvec = sv = xrealloc (preallocated ? NULL : sv, n1 * sizeof *sv);
617 memset (sv + nslots, 0, (n1 - nslots) * sizeof *sv);
618 nslots = n1;
/haiku-fatelf/headers/cpp/std/
H A Dbastring.h294 basic_string& replace (size_type pos1, size_type n1, const basic_string& str,
296 basic_string& replace (size_type pos, size_type n1, const charT* s,
298 basic_string& replace (size_type pos, size_type n1, const charT* s) argument
299 { return replace (pos, n1, s, traits::length (s)); }
300 basic_string& replace (size_type pos, size_type n1, size_type n2, charT c);
462 size_type n1 = i2 - i1; local
466 if (n1 > len - pos)
467 n1 = len - pos;
468 LENGTHERROR (len - n1 > max_size () - n2);
469 size_t newlen = len - n1
[all...]
/haiku-fatelf/src/add-ons/accelerants/s3/
H A Dvirge_init.cpp204 uint8 n1 = n & 0x1f; local
206 si.mclk = ((1431818 * (m + 2)) / (n1 + 2) / (1 << n2) + 50) / 100;
H A Dsavage_mode.cpp478 for (uint8 n1 = min_n1 + 2; n1 <= max_n1 + 2; n1++) {
479 int m = (int)(ffreq * n1 * (1 << n2) + 0.5);
483 double div = (double)(m) / (double)(n1);
491 best_n1 = n1;
H A Dsavage_init.cpp285 uint8 n1 = n & 0x1f; local
287 si.mclk = ((1431818 * (m + 2)) / (n1 + 2) / (1 << n2) + 50) / 100;
H A Dvirge_mode.cpp215 for (uint8 n1 = min_n1 + 2; n1 <= max_n1 + 2; n1++) {
216 int m = (int)(ffreq * n1 * (1 << n2) + 0.5) ;
220 double div = (double)(m) / (double)(n1);
228 best_n1 = n1;
/haiku-fatelf/src/add-ons/accelerants/nvidia/engine/
H A Dnv_dac2.c234 uint8 m1, n1, p1; local
242 n1 = (dividers1 & 0x0000ff00) >> 8;
244 LOG(2,("DAC2: divider1 settings ($%08x): M1=%d, N1=%d, P1=%d\n", dividers1, m1, n1, p1));
260 f_vco = (f_phase * n1 * n2);
H A Dnv_dac.c273 uint8 m1, n1, p1; local
281 n1 = (dividers1 & 0x0000ff00) >> 8;
283 LOG(2,("DAC: divider1 settings ($%08x): M1=%d, N1=%d, P1=%d\n", dividers1, m1, n1, p1));
299 f_vco = (f_phase * n1 * n2);
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dcomp_parse.c164 _nc_entry_match(char *n1, char *n2)
170 n1 = force_bar(nc1, n1);
173 for (pstart = n1; (pend = strchr(pstart, '|')); pstart = pend + 1)
/haiku-fatelf/src/tests/kits/storage/
H A DNodeTest.cpp1104 // n1 and n2 should both be uninitialized. y1a and y1b should be initialized
1107 NodeTest::EqualityTest(BNode &n1, BNode &n2, BNode &y1a, BNode &y1b, BNode &y2) { argument
1108 CPPUNIT_ASSERT( n1 == n2 );
1109 CPPUNIT_ASSERT( !(n1 != n2) );
1110 CPPUNIT_ASSERT( n1 != y2 );
1111 CPPUNIT_ASSERT( !(n1 == y2) );
1120 CPPUNIT_ASSERT( n1 == n1 );
1121 CPPUNIT_ASSERT( !(n1 != n1) );
1130 BNode n1, n2, y1a("/boot"), y1b("/boot"), y2("/"); local
1139 BNode n1, n2, y1a("/boot"), y1b("/boot"), y2("/"); local
[all...]
H A DNodeTest.h56 void EqualityTest(BNode &n1, BNode &n2, BNode &y1a, BNode &y1b, BNode &y2);
/haiku-fatelf/src/add-ons/translators/exr/openexr/imath/
H A DImathLineAlgo.h101 T n1 = d1d2 * d2w - d1w; local
107 (abs (n1) < limits<T>::max() * absD &&
110 point1 = line1 (n1 / d);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dquotearg.c734 /* FIXME: technically, the type of n1 should be `unsigned int',
739 size_t n1 = n0 + 1; local
742 if (xalloc_oversized (n1, sizeof *sv))
745 slotvec = sv = xrealloc (preallocated ? NULL : sv, n1 * sizeof *sv);
748 memset (sv + nslots, 0, (n1 - nslots) * sizeof *sv);
749 nslots = n1;
H A Dunistr.h415 u8_cmp2 (const uint8_t *s1, size_t n1, const uint8_t *s2, size_t n2);
417 u16_cmp2 (const uint16_t *s1, size_t n1, const uint16_t *s2, size_t n2);
419 u32_cmp2 (const uint32_t *s1, size_t n1, const uint32_t *s2, size_t n2);
/haiku-fatelf/src/bin/network/wget/lib/
H A Dquotearg.c734 /* FIXME: technically, the type of n1 should be `unsigned int',
739 size_t n1 = n0 + 1; local
742 if (xalloc_oversized (n1, sizeof *sv))
745 slotvec = sv = xrealloc (preallocated ? NULL : sv, n1 * sizeof *sv);
748 memset (sv + nslots, 0, (n1 - nslots) * sizeof *sv);
749 nslots = n1;
/haiku-fatelf/src/documentation/docbook-xsl/
H A Dinstall.sh96 read -s -n1 -p "Are you sure you want to continue? [No] "
181 read -s -n1 -p "Create $thisCatalogManager file? [Yes] "
224 read -s -n1 -p "Add /etc/xml/catalog to $myCatalogManager? [Yes] "
248 read -s -n1 -p "to $myCatalogManager file? [Yes] "
432 read -s -n1 -p "Update $HOME/$file? [Yes] "
508 read -s -n1 -p "No .emacs or .emacs.el file. Create one? [No] "
533 read -s -n1 -p "Update $myEmacsFile? [Yes] "
604 read -s -n1 -p "Revert $myCatalogManager? [Yes] "
652 read -s -n1 -p "Revert $myEmacsFile? [Yes] "
702 read -s -n1
[all...]
/haiku-fatelf/src/libs/glut/
H A Dglut_shapes.c372 recorditem(GLfloat * n1, GLfloat * n2, GLfloat * n3, argument
377 DIFF3(n1, n2, q0);
384 glVertex3fv(n1);
/haiku-fatelf/src/libs/ncurses/progs/
H A Dinfocmp.c342 int n1, n2; local
372 n1 = e1->tterm.Numbers[idx];
374 dump_numeric(n1, buf1);
378 if (!((n1 == ABSENT_NUMERIC && n2 == ABSENT_NUMERIC)) && n1 != n2)
383 if (n1 != ABSENT_NUMERIC && n2 != ABSENT_NUMERIC && n1 == n2)
388 if (n1 == ABSENT_NUMERIC && n2 == ABSENT_NUMERIC)
/haiku-fatelf/src/kits/network/libbind/resolv/
H A Dres_mkupdate.c93 u_int32_t n1, rttl; local
215 n1 = ntohl(ina.s_addr);
217 PUTLONG(n1, cp);
341 n1 = ntohl(ina.s_addr);
343 PUTLONG(n1, cp);
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dh8300-dis.c66 int n1 = 0; local
70 n1 = (int) p->data.nib[0];
72 n1 = 0;
/haiku-fatelf/src/system/libroot/posix/stdlib/
H A Dstrtod.c687 int i, k1, n, n1; local
697 n1 = n + b->wds + 1;
698 for (i = b->maxwds; n1 > i; i <<= 1)
715 ++n1;
726 ++n1;
733 b1->wds = n1 - 1;
/haiku-fatelf/src/bin/gawk/
H A Dawkgram.y2476 const NODE *n1, *n2;
2481 n1 = *npp1;
2484 if (n1->hlength > n2->hlength)
2485 minlen = n1->hlength;
2489 return strncmp(n1->hname, n2->hname, minlen);
2753 NODE *n1 = node(n, Node_rule_list, (NODE *) NULL);
2755 *list = node(*list, Node_rule_list, n1);
2757 (void) append_right(*list, n1);
/haiku-fatelf/src/bin/network/wget/src/
H A Dretr.c1016 printwhat (int n1, int n2)
1018 logputs (LOG_VERBOSE, (n1 == n2) ? _("Giving up.\n\n") : _("Retrying.\n\n"));
1012 printwhat(int n1, int n2) argument
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgsscanline.c156 int n1 = n/2; local
157 int n2 = n - n1;
158 hpgs_scanline_point *b=a+n1;
159 hpgs_scanline_point *te=tmp+n1;
163 switch (n1)
170 scanline_msort(a,n1,tmp,te);

Completed in 309 milliseconds

123