HomeSort by: relevance | last modified time | path
    Searched refs:new_mode (Results 1 - 25 of 92) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
chmod.c 77 mode_t file_mode, new_mode; local
295 new_mode = 0;
301 new_mode |= _S_IREAD;
305 new_mode |= _S_IWRITE;
313 new_mode |= S_IRUSR;
315 new_mode |= S_IRGRP;
317 new_mode |= S_IROTH;
324 new_mode |= S_IWUSR;
326 new_mode |= S_IWGRP;
328 new_mode |= S_IWOTH
    [all...]
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
chmod.c 77 mode_t file_mode, new_mode; local
295 new_mode = 0;
301 new_mode |= _S_IREAD;
305 new_mode |= _S_IWRITE;
313 new_mode |= S_IRUSR;
315 new_mode |= S_IRGRP;
317 new_mode |= S_IROTH;
324 new_mode |= S_IWUSR;
326 new_mode |= S_IWGRP;
328 new_mode |= S_IWOTH
    [all...]
  /src/external/bsd/kyua-testers/dist/
fs.c 232 static const mode_t new_mode = 0700; local
234 if (chmod(path, new_mode) == -1) {
235 warnx("chmod(%s, %04o) failed", path, new_mode);
252 static const mode_t new_mode = 0700; local
255 if (lchmod(path, new_mode) == -1) {
256 warnx("lchmod(%s, %04o) failed", path, new_mode);
262 new_mode);
  /src/common/include/x86emu/
x86emu_i8254.h 73 uint8_t new_mode; member in struct:x86emu_i8254_timer
  /src/external/gpl3/gcc/dist/gcc/
compare-elim.cc 311 machine_mode new_mode
314 if (new_mode == VOIDmode)
317 if (cmp->orig_mode != new_mode)
320 rtx flags = gen_rtx_REG (new_mode, targetm.flags_regnum);
321 rtx x = gen_rtx_COMPARE (new_mode, cmp->in_a, cmp->in_b);
327 cmp->orig_mode = new_mode;
541 machine_mode new_mode = SELECT_CC_MODE (cmp->uses[i].code, a, b);
542 if (new_mode != sel_mode)
544 sel_mode = targetm.cc_modes_compatible (sel_mode, new_mode);
540 machine_mode new_mode = SELECT_CC_MODE (cmp->uses[i].code, a, b); local
regcprop.cc 397 mode_change_ok (machine_mode orig_mode, machine_mode new_mode,
400 if (partial_subreg_p (orig_mode, new_mode))
403 return REG_CAN_CHANGE_MODE_P (regno, orig_mode, new_mode);
408 in NEW_MODE.
409 Return a NEW_MODE rtx for REGNO if that's OK, otherwise return NULL_RTX. */
413 machine_mode new_mode, unsigned int regno,
417 && partial_subreg_p (copy_mode, new_mode))
426 if (orig_mode == new_mode && new_mode == GET_MODE (stack_pointer_rtx))
432 if (orig_mode == new_mode)
    [all...]
mode-switching.cc 561 int new_mode = mode_confluence (entity, src_mode, dest_mode, no_mode);
562 if (dest_mode == new_mode)
565 bb_info[e->dest->index].mode_in = new_mode;
679 int new_mode = targetm.mode_switching.backprop (entity, src_mode,
681 if (new_mode == no_mode)
685 with a transition from NEW_MODE.
687 If we force the source block to use NEW_MODE, we might introduce a
689 NEW_MODE and then one to DEST_MODE). Therefore, if all destination
698 new_mode = bb_info[e->src->index].single_succ;
700 new_mode = mode_confluence (entity, old_mode, new_mode, no_mode)
560 int new_mode = mode_confluence (entity, src_mode, dest_mode, no_mode); local
678 int new_mode = targetm.mode_switching.backprop (entity, src_mode, local
    [all...]
dse.cc 1751 scalar_int_mode new_mode;
1760 auto new_mode = smallest_int_mode_for_size (access_size * BITS_PER_UNIT);
1761 auto byte = subreg_lowpart_offset (new_mode, store_mode);
1763 = simplify_subreg (new_mode, store_info->const_rhs, store_mode, byte);
1766 rtx shift_rtx = gen_int_shift_amount (new_mode, shift);
1767 ret = simplify_const_binary_operation (LSHIFTRT, new_mode, ret,
1771 byte = subreg_lowpart_offset (read_mode, new_mode);
1772 ret = simplify_subreg (read_mode, ret, new_mode, byte);
1798 new_mode = new_mode_iter.require ();
1799 if (GET_MODE_BITSIZE (new_mode) > BITS_PER_WORD
1749 scalar_int_mode new_mode; local
1758 auto new_mode = smallest_int_mode_for_size (access_size * BITS_PER_UNIT); local
    [all...]
genmodes.cc 162 new_mode (enum mode_class cl, const char *name, function
493 c = new_mode (cclass, buf, file, line);
545 v = new_mode (vclass, xstrdup (buf), file, line);
569 struct mode_data *v = new_mode (MODE_VECTOR_BOOL, name, file, line);
586 new_mode (cl, name, file, line);
598 struct mode_data *m = new_mode (MODE_INT, name, file, line);
611 struct mode_data *m = new_mode (MODE_INT, name, file, line);
626 struct mode_data *m = new_mode (MODE_OPAQUE, name, file, line);
654 struct mode_data *m = new_mode (cl, name, file, line);
670 struct mode_data *m = new_mode (MODE_FLOAT, name, file, line)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
compare-elim.cc 310 machine_mode new_mode
313 if (new_mode == VOIDmode)
316 if (cmp->orig_mode != new_mode)
319 rtx flags = gen_rtx_REG (new_mode, targetm.flags_regnum);
320 rtx x = gen_rtx_COMPARE (new_mode, cmp->in_a, cmp->in_b);
326 cmp->orig_mode = new_mode;
540 machine_mode new_mode = SELECT_CC_MODE (cmp->uses[i].code, a, b);
541 if (new_mode != sel_mode)
543 sel_mode = targetm.cc_modes_compatible (sel_mode, new_mode);
539 machine_mode new_mode = SELECT_CC_MODE (cmp->uses[i].code, a, b); local
regcprop.cc 397 mode_change_ok (machine_mode orig_mode, machine_mode new_mode,
400 if (partial_subreg_p (orig_mode, new_mode))
403 return REG_CAN_CHANGE_MODE_P (regno, orig_mode, new_mode);
408 in NEW_MODE.
409 Return a NEW_MODE rtx for REGNO if that's OK, otherwise return NULL_RTX. */
413 machine_mode new_mode, unsigned int regno,
417 && partial_subreg_p (copy_mode, new_mode))
427 if (orig_mode == new_mode)
428 return gen_raw_REG (new_mode, regno);
429 else if (mode_change_ok (orig_mode, new_mode, regno
    [all...]
dse.cc 1735 scalar_int_mode new_mode;
1743 auto new_mode = smallest_int_mode_for_size (access_size * BITS_PER_UNIT);
1744 auto byte = subreg_lowpart_offset (new_mode, store_mode);
1746 = simplify_subreg (new_mode, store_info->const_rhs, store_mode, byte);
1749 rtx shift_rtx = gen_int_shift_amount (new_mode, shift);
1750 ret = simplify_const_binary_operation (LSHIFTRT, new_mode, ret,
1754 byte = subreg_lowpart_offset (read_mode, new_mode);
1755 ret = simplify_subreg (read_mode, ret, new_mode, byte);
1781 new_mode = new_mode_iter.require ();
1782 if (GET_MODE_BITSIZE (new_mode) > BITS_PER_WORD
1733 scalar_int_mode new_mode; local
1741 auto new_mode = smallest_int_mode_for_size (access_size * BITS_PER_UNIT); local
    [all...]
genmodes.cc 161 new_mode (enum mode_class cl, const char *name, function
492 c = new_mode (cclass, buf, file, line);
544 v = new_mode (vclass, xstrdup (buf), file, line);
568 struct mode_data *v = new_mode (MODE_VECTOR_BOOL, name, file, line);
585 new_mode (cl, name, file, line);
597 struct mode_data *m = new_mode (MODE_INT, name, file, line);
610 struct mode_data *m = new_mode (MODE_INT, name, file, line);
625 struct mode_data *m = new_mode (MODE_OPAQUE, name, file, line);
653 struct mode_data *m = new_mode (cl, name, file, line);
669 struct mode_data *m = new_mode (MODE_FLOAT, name, file, line)
    [all...]
  /src/sys/dev/sun/
bwtwo.c 426 int new_mode = *(int*)data; local
427 if (new_mode != sc->sc_mode)
429 sc->sc_mode = new_mode;
430 if(new_mode == WSDISPLAYIO_MODE_EMUL)
  /src/sys/arch/next68k/dev/
nextdisplay.c 299 int new_mode; local
328 new_mode = *(int *)data;
329 if (new_mode != sc->sc_mode) {
330 sc->sc_mode = new_mode;
  /src/external/gpl3/gcc/dist/gcc/rtl-ssa/
functions.cc 201 machine_mode new_mode = combine_modes (user_phi_mode, phi_mode); local
202 if (user_phi_mode != new_mode)
204 user_phi->set_mode (new_mode);
  /src/external/gpl3/gcc.old/dist/gcc/rtl-ssa/
functions.cc 201 machine_mode new_mode = combine_modes (user_phi_mode, phi_mode); local
202 if (user_phi_mode != new_mode)
204 user_phi->set_mode (new_mode);
  /src/sys/dev/pci/
genfb_pci.c 216 int new_mode; local
234 new_mode = *(int *)data;
235 if (new_mode == WSDISPLAYIO_MODE_EMUL) {
  /src/sys/arch/macppc/dev/
ofb.c 295 int new_mode = *(int*)data; local
296 if (new_mode != sc->sc_mode)
298 sc->sc_mode = new_mode;
299 if (new_mode == WSDISPLAYIO_MODE_EMUL)
valkyriefb.c 383 int new_mode = *(int*)data; local
384 if (new_mode != sc->sc_mode) {
385 sc->sc_mode = new_mode;
386 if (new_mode == WSDISPLAYIO_MODE_EMUL) {
  /src/sys/arch/sparc64/dev/
gfb.c 294 int new_mode = *(int*)data; local
297 if (new_mode != sc->sc_mode) {
298 sc->sc_mode = new_mode;
299 if(new_mode == WSDISPLAYIO_MODE_EMUL) {
  /src/sys/arch/amiga/dev/
zz9k_fb.c 422 uint16_t new_mode; local
442 new_mode = ZZ9K_MODE_SCALE_2 | ZZ9K_MODE_COLOR_32BIT | display_mode;
454 ZZREG_W(ZZ9K_MODE, new_mode);
462 uint16_t new_mode; local
469 new_mode = zzfb_modes[display_mode].scale;
479 new_mode = new_mode | zzfb_colors[color_mode].mode | display_mode;
497 ZZREG_W(ZZ9K_MODE, new_mode);
  /src/sys/arch/evbppc/explora/dev/
fb_elb.c 313 int new_mode; local
339 new_mode = *(int *)data;
340 if (new_mode != sc->sc_mode) {
341 sc->sc_mode = new_mode;
342 if (new_mode == WSDISPLAYIO_MODE_EMUL) {
  /src/sys/arch/luna68k/dev/
lunafb.c 245 int new_mode; local
272 new_mode = *(int *)data;
273 if (new_mode != sc->sc_mode) {
274 sc->sc_mode = new_mode;
275 if (new_mode == WSDISPLAYIO_MODE_EMUL)
  /src/external/gpl2/xcvs/dist/src/
lock.c 224 mode_t new_mode = 0; local
275 The idea behind the new_mode stuff is that the directory we
277 directory (we re-set new_mode with each EEXIST). CVSUMASK
290 new_mode = sb.st_mode;
304 && CVS_MKDIR (retval, new_mode) < 0)
313 new_mode = sb.st_mode;
321 if (CVS_MKDIR (retval, new_mode) < 0

Completed in 51 milliseconds

1 2 3 4