Searched refs:temp (Results 101 - 125 of 444) sorted by relevance

1234567891011>>

/haiku-fatelf/src/add-ons/accelerants/radeon_hd/
H A Daccelerant.h262 uint32 temp; local
268 temp = _read32(offset);
271 temp = _read32(offset);
274 temp = _read32(offset);
275 //temp = _read32PLL(offset);
280 temp &= ~mask;
281 temp |= value & mask;
288 _write32(offset, temp);
291 _write32(offset, temp);
294 _write32(offset, temp);
[all...]
/haiku-fatelf/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.cpp122 const char* temp; local
124 while (from->FindString("largv", idx++, &temp) == B_NO_ERROR) {
125 if (temp) {
126 char* copy = new char[strlen(temp) + 1];
127 strcpy(copy, temp);
636 int32 temp; local
637 for (int32 i = 0; from->FindInt32("ooffsets", i, &temp) == B_NO_ERROR;
639 fOverrideOffsets.AddItem((void*)temp);
641 if (from->FindInt32("overrides", i, &temp) != B_NO_ERROR)
642 temp
977 const char* temp; local
1337 char* temp = new char[strlen(arg) + 1]; local
1655 const char* temp; local
[all...]
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dcomplete.c576 char *temp, *x; local
581 temp = strrchr (pathname, '/');
583 if (temp == 0 && ISALPHA ((unsigned char)pathname[0]) && pathname[1] == ':')
584 temp = pathname + 1;
587 if (temp == 0 || *temp == '\0')
593 else if (temp[1] == '\0')
595 for (x = temp - 1; x > pathname; x--)
601 return ++temp;
1321 char *temp, * local
1440 char *temp; local
1984 char *temp; local
[all...]
H A Dtilde.c466 void *temp = (char *)malloc (bytes);
468 if (!temp)
470 return (temp);
478 void *temp;
481 temp = malloc (bytes);
483 temp = realloc (pointer, bytes);
485 if (!temp)
488 return (temp);
465 void *temp = (char *)malloc (bytes); local
477 void *temp; local
H A Ddisplay.c499 int newlines, lpos, temp, n0, num, prompt_lines_estimate; local
561 temp = local_prompt_len + out + 2;
562 if (temp >= line_size)
564 line_size = (temp + 1024) - (temp % 1024);
583 pmtlen = prompt_this_line - rl_display_prompt; /* temp var */
595 temp = pmtlen + out + 2;
596 if (temp >= line_size)
598 line_size = (temp + 1024) - (temp
1275 int temp, lendiff, wsatend, od, nd, twidth, o_cpos; local
1876 register char *temp; local
[all...]
H A Dsearch.c454 HIST_ENTRY *temp; local
458 temp = (HIST_ENTRY *)NULL;
473 temp = current_history ();
477 if (prev_line_found && STREQ (prev_line_found, temp->line))
479 prev_line_found = temp->line;
484 if (temp == 0)
506 make_history_line_current (temp);
/haiku-fatelf/src/bin/bash/
H A Dredir.c94 redirection_error (temp, error)
95 REDIRECT *temp;
102 if (temp->redirector < 0)
108 else if (error != NOCLOBBER_REDIRECT && temp->redirector >= 0 && error == EBADF)
113 switch (temp->instruction)
119 filename = allocname = itos (temp->redirectee.dest);
122 filename = allocname = itos (temp->redirector);
127 else if (expandable_redirection_filename (temp))
131 oflags = temp->redirectee.filename->flags;
132 temp
185 REDIRECT *temp; local
[all...]
H A Dhashlib.c217 BUCKET_CONTENTS *prev, *temp; local
225 for (temp = table->bucket_array[bucket]; temp; temp = temp->next)
227 if (hv == temp->khash && STREQ (temp->key, string))
230 prev->next = temp->next;
232 table->bucket_array[bucket] = temp->next;
235 return (temp);
[all...]
H A Dlocale.c466 char *temp, *t, *t2; local
468 temp = (char *)xmalloc (end - start + 1);
470 temp[tlen++] = string[len++];
471 temp[tlen] = '\0';
485 t = mk_msgstr (temp, &foundnl);
493 printf ("\"%s\"\n", temp);
497 return (temp);
499 else if (*temp)
501 t = localetrans (temp, tlen, &len);
502 free (temp);
[all...]
/haiku-fatelf/src/add-ons/accelerants/neomagic/engine/
H A Dnm_crtc.c89 uint8 temp; local
158 temp = (ISACRTCR(VSYNCE) & 0x7f);
161 ISACRTCW(VSYNCE, temp);
183 temp = (ISACRTCR(VSYNCE) & 0xf0);
186 ISACRTCW(VSYNCE, (temp | (vsync_e & 0x0f)));
217 temp = (ISACRTCR(VSYNCE) & 0x7f);
220 ISACRTCW(VSYNCE, temp);
225 temp = (ISACRTCR(OVERFLOW) & ~0x52);
230 temp |
238 temp
390 uint8 temp, size_outputs; local
[all...]
/haiku-fatelf/src/tests/kits/midi/midi_player_replacement/
H A DMidiPlayerWindow.cpp59 int32 temp; local
63 temp = resource.RemoveResource('BPNT', 1);
64 temp = resource.AddResource('BPNT', 1, &origin, sizeof(origin), "origin");
143 uint32 temp = 0; local
470 msg->FindInt32("index", (int32*)&temp);
471 switch(temp)
480 msg->FindInt32("index", (int32*)&temp);
481 switch(temp)
490 msg->FindInt32("index", (int32*)&temp);
491 switch(temp)
[all...]
/haiku-fatelf/src/apps/pulse/
H A DConfigView.cpp137 char temp[10]; local
138 snprintf(temp, sizeof(temp), "%d", fPrefs->deskbar_icon_width);
140 B_TRANSLATE("Width of icon:"), temp,
312 char temp[10]; local
314 sprintf(temp, "%d", min_width);
317 strcpy(temp, "50");
320 fIconWidthControl->SetText(temp);
370 char temp[10]; local
371 sprintf(temp, "
[all...]
/haiku-fatelf/src/bin/gzip/
H A Dgetopt.c248 char *temp, **first, **last;
254 temp = *first; *first = *last; *last = temp; first++; last--;
261 temp = *first; *first = *last; *last = temp; first++; last--;
269 temp = *first; *first = *last; *last = temp; first++; last--;
586 char *temp = my_index (optstring, c);
592 if (temp == NULL || c == ':')
610 if (temp[
245 char *temp, **first, **last; local
582 char *temp = my_index (optstring, c); local
[all...]
/haiku-fatelf/src/bin/gdb/readline/
H A Ddisplay.c388 int newlines, lpos, temp; local
442 temp = local_len + out + 2;
443 if (temp >= line_size)
445 line_size = (temp + 1024) - (temp % 1024);
464 pmtlen = prompt_this_line - rl_display_prompt; /* temp var */
476 temp = pmtlen + out + 2;
477 if (temp >= line_size)
479 line_size = (temp + 1024) - (temp
1043 int temp, lendiff, wsatend, od, nd; local
1492 register char *temp = visible_line; local
[all...]
H A Dtilde.c422 void *temp = (char *)malloc (bytes);
424 if (!temp)
426 return (temp);
434 void *temp;
437 temp = malloc (bytes);
439 temp = realloc (pointer, bytes);
441 if (!temp)
444 return (temp);
421 void *temp = (char *)malloc (bytes); local
433 void *temp; local
H A Dsearch.c349 HIST_ENTRY *temp; local
353 temp = (HIST_ENTRY *)NULL;
368 temp = current_history ();
372 if (prev_line_found && STREQ (prev_line_found, temp->line))
374 prev_line_found = temp->line;
379 if (temp == 0)
401 make_history_line_current (temp);
/haiku-fatelf/src/bin/bash/lib/tilde/
H A Dtilde.c466 void *temp = (char *)malloc (bytes);
468 if (!temp)
470 return (temp);
478 void *temp;
481 temp = malloc (bytes);
483 temp = realloc (pointer, bytes);
485 if (!temp)
488 return (temp);
465 void *temp = (char *)malloc (bytes); local
477 void *temp; local
/haiku-fatelf/src/bin/network/atftpd/
H A Dtftp_io.h56 int *prev_block_number, int *prev_file_pos, int *temp);
58 int data_size, int convert, int *prev_block_number, int *temp);
/haiku-fatelf/src/libs/ncurses/ncurses/trace/
H A Dvisbuf.c169 char temp[CCHARW_MAX + 80]; local
170 int j = wctomb(temp, c), k;
172 sprintf(temp, "\\u%08X", (wint_t) c);
173 j = strlen(temp);
176 tp = _nc_vischar(tp, temp[k]);
269 char temp[80]; local
270 _nc_vischar(temp, UChar(PUTC_buf[n]));
271 result = _nc_trace_bufcat(bufnum, temp);
/haiku-fatelf/src/add-ons/accelerants/matrox/engine/
H A Dmga_crtc.c109 uint8 temp; local
204 temp = VGAR(MISCR);
208 temp &= ~0x40;
213 temp |= 0x40;
218 temp &= ~0x80;
223 temp |= 0x80;
225 VGAW(MISCW, temp);
415 float tpixclk, tmclk, refresh, temp; local
481 temp = (((((mp * tmclk) + (11 * vc * tpixclk)) / tpixclk) - (vc - 1)) / (8 * vc)) + 1.0;
482 if (temp > 7.
[all...]
/haiku-fatelf/src/bin/gdb/bfd/
H A Dnlm32-ppc.c143 bfd_byte temp[4];
147 if (bfd_bread (temp, (bfd_size_type) sizeof (temp), abfd) != sizeof (temp))
150 val = bfd_get_32 (abfd, temp);
663 bfd_byte temp[NLM_TARGET_LONG_SIZE]; /* temporary 32-bit value */
681 if (bfd_bread ((PTR) temp, (bfd_size_type) sizeof (temp), abfd)
682 != sizeof (temp))
684 rcount = H_GET_32 (abfd, temp);
141 bfd_byte temp[4]; local
661 bfd_byte temp[NLM_TARGET_LONG_SIZE]; /* temporary 32-bit value */ local
714 bfd_byte temp[4]; local
904 unsigned char temp[NLM_TARGET_LONG_SIZE]; local
[all...]
/haiku-fatelf/src/bin/rcs/
H A Drcs.c112 * Permit dates past 1999/12/31. Make lock and temp files faster and safer.
677 char const *temp; local
682 temp = sp;
693 pt->ssymbol = temp;
792 char const *temp; local
798 temp = sp;
805 headstate = temp;
816 pt->status = temp;
1174 struct hshentry *target, *target2, *temp; local
1186 temp
[all...]
/haiku-fatelf/src/add-ons/translators/gif/
H A DGIFView.cpp231 char temp[4]; local
232 sprintf(temp, "%d", fPrefs->transparentred);
233 fTransparentRedTC->SetText(temp);
234 sprintf(temp, "%d", fPrefs->transparentgreen);
235 fTransparentGreenTC->SetText(temp);
236 sprintf(temp, "%d", fPrefs->transparentblue);
237 fTransparentBlueTC->SetText(temp);
352 char temp[4]; local
353 sprintf(temp, "%d", value);
354 control->SetText(temp);
[all...]
/haiku-fatelf/src/libs/ncurses/tack/
H A Dfun.c407 sprintf(temp, "%s Unknown", s);
408 put_str(temp);
557 sprintf(temp, "Your terminal has %d labels (nlab) that are %d characters wide (lw) and %d lines high (lh)",
559 ptext(temp);
598 sprintf(temp,
600 ptextln(temp);
602 sprintf(temp, "Hit function key %d\n", fk);
603 ptextln(temp);
609 sprintf(temp, "Error string received was: %s", expand(mm));
610 ptextln(temp);
[all...]
/haiku-fatelf/src/add-ons/accelerants/intel_810/
H A Di810_mode.cpp182 uint8 temp = INREG8(DRAM_ROW_CNTL_HI) & ~DRAM_REFRESH_RATE; local
183 OUTREG8(DRAM_ROW_CNTL_HI, temp | DRAM_REFRESH_DISABLE);
221 temp = INREG8(DRAM_ROW_CNTL_HI) & ~DRAM_REFRESH_RATE;
222 OUTREG8(DRAM_ROW_CNTL_HI, temp | DRAM_REFRESH_60HZ);
224 temp = INREG8(BITBLT_CNTL) & ~COLEXP_MODE;
225 temp |= (mode.bitsPerPixel == 8 ? COLEXP_8BPP : COLEXP_16BPP);
226 OUTREG8(BITBLT_CNTL, temp);

Completed in 312 milliseconds

1234567891011>>