Searched refs:tst (Results 1 - 25 of 35) sorted by relevance

12

/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/definitions/sched_h/
H A D10-1.c46 struct unique *tst; local
48 tst = sym;
50 while (tst->name) {
52 if (tst->value == sym[i].value
53 && strcmp(tst->name, sym[i].name)) {
55 tst->name, sym[i].name);
59 tst++;
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/sched_getscheduler/
H A D3-1.c52 struct unique *tst; local
54 tst = sym;
66 while (tst->name) {
67 if(result == tst->value) {
71 tst++;
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/sched_setscheduler/
H A D1-1.c52 struct unique *tst; local
54 tst = sym;
55 while (tst->name) {
57 printf("Policy: %s\n", tst->name);
60 policy = tst->value;
71 printf(" Error calling sched_setscheduler() for %s policy\n", tst->name);
74 tst++;
84 printf(" sched_setscheduler() does not set the policy to %s.\n", tst->name);
88 printf(" sched_setscheduler() does not set the right param for %s policy.\n", tst->name);
92 tst
[all...]
H A D19-1.c51 struct unique *tst; local
53 tst = sym;
54 while (tst->name) {
55 policy = tst->value;
57 printf("Policy: %s\n", tst->name);
87 tst++;
H A D17-1.c57 struct unique *tst; local
59 tst = sym;
60 while (tst->name) {
61 policy = tst->value;
63 printf("Policy: %s\n", tst->name);
116 tst++;
/haiku-fatelf/src/bin/gdb/gdb/config/djgpp/
H A Ddjcheck.sh27 > ${base}.tst
28 if diff --binary -u ${base}.out ${base}.tst ; then
29 rm -f ${base}.tst
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/definitions/errno_h/
H A D4-1.c67 struct unique *tst=sym; local
69 while(tst->name){
70 if (tst->value < 0){
71 printf("Value of symbol %s is less than zero\n",tst->name);
74 tst++;
H A D3-2.c72 struct unique *tst; local
74 tst = sym;
76 while (tst->name) {
78 if (tst->value == sym[i].value
79 && tst->duplicate != sym[i].value
80 && strcmp(tst->name,sym[i].name)) {//In case EAGAIN is not equal to EWOULDBLOCK,compare the name
82 tst->name,sym[i].name);
86 tst++;
/haiku-fatelf/src/libs/ncurses/ncurses/base/
H A Dwresize.c58 WINDOW *tst = &(wp->win); local
60 if (tst->_parent == cmp) {
62 if (tst->_pary > cmp->_maxy)
63 tst->_pary = cmp->_maxy;
64 if (tst->_parx > cmp->_maxx)
65 tst->_parx = cmp->_maxx;
67 if (tst->_maxy + tst->_pary > cmp->_maxy)
68 tst->_maxy = cmp->_maxy - tst
[all...]
H A Dresizeterm.c92 WINDOW *tst = &(wp->win); local
93 if (tst->_parent == cmp) {
94 depth = 1 + child_depth(tst);
111 WINDOW *tst; local
112 while ((tst = cmp->_parent) != 0) {
114 cmp = tst;
/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/
H A DDebug.cpp79 char tst[1000]; local
113 result = vsprintf(tst,myformat,params);
116 OutputDebugStringA(tst);
121 WriteFile( hFile, tst, lstrlenA(tst), &written, NULL );
150 result = vsprintf(tst,myformat,params);
153 fputs(tst, stderr);
156 fputs(tst, hFile);
/haiku-fatelf/src/system/kernel/arch/m68k/
H A Darch_exceptions.S100 tst.b (%sp) /* check for a null state */
116 tst.b IFRAME_fpu-IFRAME_fp(%sp) /* check for a null state */
/haiku-fatelf/src/system/boot/platform/amiga_m68k/
H A Dstage1.S121 tst.l %d0
146 tst.l %d0
158 tst.l %d0
184 tst.l %d0
H A Dshell.S91 // tst.l %d0
98 tst.l %d0
109 tst.l %d0
141 tst.l %d0
171 // tst.l %d0
/haiku-fatelf/src/tools/docbook/libxml2/
H A Drunsuite.c370 installResources(xmlNodePtr tst, const xmlChar *base) { argument
380 xmlNodeDump(buf, tst->doc, tst, 0, 0);
382 while (tst != NULL) {
383 test = getNext(tst, "./*");
387 name = getString(tst, "string(@name)");
398 tst = getNext(tst, "following-sibling::resource[1]");
405 installDirs(xmlNodePtr tst, const xmlChar *base) { argument
409 name = getString(tst, "strin
431 xsdTestCase(xmlNodePtr tst) argument
[all...]
H A Druntest.c4265 launchTests(testDescPtr tst) { argument
4272 if (tst == NULL) return(-1);
4273 if (tst->in != NULL) {
4277 glob(tst->in, GLOB_DOOFFS, NULL, &globbuf);
4281 if (tst->suffix != NULL) {
4282 result = resultFilename(globbuf.gl_pathv[i], tst->out,
4283 tst->suffix);
4291 if (tst->err != NULL) {
4292 error = resultFilename(globbuf.gl_pathv[i], tst->out,
4293 tst
[all...]
H A Dvalid.c4134 xmlElementPtr tst; local
4199 tst = xmlGetDtdElementDesc(doc->intSubset, elem->name);
4200 if ((tst != NULL ) && (tst != elem) &&
4201 ((tst->prefix == elem->prefix) ||
4202 (xmlStrEqual(tst->prefix, elem->prefix))) &&
4203 (tst->etype != XML_ELEMENT_TYPE_UNDEFINED)) {
4209 tst = xmlGetDtdElementDesc(doc->extSubset, elem->name);
4210 if ((tst != NULL ) && (tst !
[all...]
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dxsltutils.c907 int len, tst; local
918 tst = xmlXPathCmpNodes(list->nodeTab[i], list->nodeTab[j]);
919 if (tst == -1) {
1073 int tst; local
1159 tst = 1;
1166 tst = 0;
1168 tst = -1;
1170 tst = 1;
1173 tst = 0;
1176 tst
[all...]
H A Dnamespaces.c326 xmlNsPtr tst; local
334 tst = node->nsDef;
335 while (tst != NULL) {
336 if ((tst->prefix == NULL)
339 if ((tst->prefix != NULL)
341 && (xmlStrEqual(tst->prefix, prefix)))
343 tst = tst->next;
/haiku-fatelf/src/system/libroot/posix/string/arch/arm/
H A Darch_string.S35 tst r3, #3
41 tst r0, #15
/haiku-fatelf/src/libs/ncurses/test/
H A Dcardfile.c258 CARD *tst = now->link; local
259 if (isVisible(tst))
260 now = tst;
262 tst = next_card(tst);
/haiku-fatelf/src/system/boot/platform/atari_m68k/
H A Dshell.S130 tst.w %d0
225 tst.w %d7 // s/t
256 tst.l %d0
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dcaptoinfo.c580 int tst; local
582 tst = strlen(buffer) - 1;
583 assert(len == tst);
/haiku-fatelf/src/bin/gdb/include/opcode/
H A Dmsp430.h67 MSP_INSN (tst, 0, 1, 0x9300, 0xff30),
H A Davr.h171 AVR_INSN (tst, "r=r", "001000rdddddrrrr", 1, AVR_ISA_1200, 0x2000)

Completed in 171 milliseconds

12