HomeSort by: relevance | last modified time | path
    Searched defs:vrs (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgcc/config/c6x/
unwind-c6x.c 34 #define VRS_PC(vrs) ((vrs)->core.pc)
35 #define VRS_SP(vrs) ((vrs)->core.reg[R_SP])
36 #define VRS_RETURN(vrs) ((vrs)->core.reg[R_B3])
63 restore_non_core_regs (phase1_vrs * vrs __attribute__((unused)))
89 phase1_vrs *vrs = (phase1_vrs *) context; local
98 *(_uw *) valuep = vrs->core.pc;
103 *(_uw *) valuep = vrs->core.reg[regno]
120 phase1_vrs *vrs = (phase1_vrs *) context; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/c6x/
unwind-c6x.c 34 #define VRS_PC(vrs) ((vrs)->core.pc)
35 #define VRS_SP(vrs) ((vrs)->core.reg[R_SP])
36 #define VRS_RETURN(vrs) ((vrs)->core.reg[R_B3])
63 restore_non_core_regs (phase1_vrs * vrs __attribute__((unused)))
89 phase1_vrs *vrs = (phase1_vrs *) context; local
98 *(_uw *) valuep = vrs->core.pc;
103 *(_uw *) valuep = vrs->core.reg[regno]
120 phase1_vrs *vrs = (phase1_vrs *) context; local
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/arm/
unwind-arm.c 33 #define VRS_PC(vrs) ((vrs)->core.r[R_PC])
34 #define VRS_SP(vrs) ((vrs)->core.r[R_SP])
35 #define VRS_RETURN(vrs) ((vrs)->core.r[R_LR])
135 restore_non_core_regs (phase1_vrs * vrs)
137 if ((vrs->demand_save_flags & DEMAND_SAVE_VFP) == 0)
139 if (vrs->demand_save_flags & DEMAND_SAVE_VFP_D)
140 __gnu_Unwind_Restore_VFP_D (&vrs->vfp)
172 phase1_vrs *vrs = (phase1_vrs *) context; local
206 phase1_vrs *vrs = (phase1_vrs *) context; local
240 phase1_vrs *vrs = (phase1_vrs *) context; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-evrp-analyze.cc 186 auto_vec<std::pair<tree, value_range_equiv *>, 8> vrs; local
195 vrs.safe_push (std::make_pair (asserts[i].name, vr));
204 for (unsigned i = 0; i < vrs.length (); ++i)
210 = get_value_range (vrs[i].first);
212 tem.intersect (vrs[i].second);
215 free_value_range (vrs[i].second);
218 push_value_range (vrs[i].first, vrs[i].second);
221 && all_uses_feed_or_dominated_by_stmt (vrs[i].first, stmt)
223 && (SSA_NAME_IS_DEFAULT_DEF (vrs[i].first
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/arm/
unwind-arm.c 33 #define VRS_PC(vrs) ((vrs)->core.r[R_PC])
34 #define VRS_SP(vrs) ((vrs)->core.r[R_SP])
35 #define VRS_RETURN(vrs) ((vrs)->core.r[R_LR])
125 restore_non_core_regs (phase1_vrs * vrs)
127 if ((vrs->demand_save_flags & DEMAND_SAVE_VFP) == 0)
129 if (vrs->demand_save_flags & DEMAND_SAVE_VFP_D)
130 __gnu_Unwind_Restore_VFP_D (&vrs->vfp)
162 phase1_vrs *vrs = (phase1_vrs *) context; local
192 phase1_vrs *vrs = (phase1_vrs *) context; local
222 phase1_vrs *vrs = (phase1_vrs *) context; local
    [all...]
  /src/sys/kern/
subr_disk_mbr.c 262 uint64_t vrs; local
270 vrs = ((32*1024 + sector_size - 1) / sector_size)
273 /* read first vrs sector */
274 if (read_sector(a, vrs, 1))
284 vrs += inc;
285 if (read_sector(a, vrs, 1))
296 vrs += inc;
297 if (read_sector(a, vrs, 1))
  /src/sbin/fsck_udf/
main.c 1138 struct vrs_desc *vrs; local
1149 * location of iso9660 VRS is defined as first sector AFTER 32kb,
1161 pwarn("Error reading in ISO9660 VRS\n");
1165 pwarn("Short read in ISO9660 VRS\n");
1173 vrs = (struct vrs_desc *) pos;
1174 if (strncmp((const char *) vrs->identifier, VRS_BEA01, 5) == 0)
1176 if (strncmp((const char *) vrs->identifier, VRS_NSR02, 5) == 0)
1178 if (strncmp((const char *) vrs->identifier, VRS_NSR03, 5) == 0)
1180 if (strncmp((const char *) vrs->identifier, VRS_TEA01, 5) == 0) {
2907 * location of iso9660 vrs is defined as first sector AFTER 32kb
    [all...]
  /src/sys/fs/udf/
udf_subr.c 524 * three tracks can be open: a reserved track for delayed ISO VRS
3536 struct vrs_desc *vrs; local
3570 /* we have to copy the ISO VRS from a former session */
3572 "blank or reserved track, copying VRS\n"));
3595 DPRINTF(VOLUMES, ("found possible former ISO VRS at\n"));
3599 * location of iso9660 vrs is defined as first sector AFTER 32kb,
3618 vrs = (struct vrs_desc *) pos;
3619 DPRINTF(VOLUMES, ("got VRS id `%4s`\n", vrs->identifier));
3620 if (strncmp(vrs->identifier, VRS_CD001, 5) == 0
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/s390/
s390.h 221 - pass vector arguments <= 16 bytes in VRs
753 int vrs; /* vr so far */ member in struct:s390_arg_structure
758 ((CUM).gprs=0, (CUM).fprs=0, (CUM).vrs=0)
  /src/external/gpl3/gcc.old/dist/gcc/config/s390/
s390.h 221 - pass vector arguments <= 16 bytes in VRs
753 int vrs; /* vr so far */ member in struct:s390_arg_structure
758 ((CUM).gprs=0, (CUM).fprs=0, (CUM).vrs=0)

Completed in 35 milliseconds