HomeSort by relevance Sort by last modified time
    Searched refs:minoff (Results 1 - 13 of 13) sorted by null

  /external/elfutils/libcpu/
i386_parse.y 887 static int minoff[3][3] = { { 1000, 1000, 1000 },
945 minoff[i][0] = MIN (minoff[i][0], runp->operands[i].off1);
947 minoff[i][1] = MIN (minoff[i][1], runp->operands[i].off2);
949 minoff[i][2] = MIN (minoff[i][2], runp->operands[i].off3);
964 // printf ("min1 = %d, min2 = %d, min3 = %d\n", minoff[i][0], minoff[i][1], minoff[i][2])
    [all...]
  /external/valgrind/VEX/priv/
guest_mips_helpers.c 292 /* Figure out if any part of the guest state contained in minoff
301 Int minoff, Int maxoff, VexRegisterUpdates pxControl
309 if (maxoff < sp_min || minoff > sp_max) {
317 if (maxoff < pc_min || minoff > pc_max) {
328 if (maxoff < fp_min || minoff > fp_max) {
338 Int minoff, Int maxoff, VexRegisterUpdates pxControl
346 if ( maxoff < sp_min || minoff > sp_max ) {
354 if ( maxoff < pc_min || minoff > pc_max ) {
363 if ( maxoff < fp_min || minoff > fp_max ) {
guest_ppc_helpers.c 932 /* Figure out if any part of the guest state contained in minoff
945 Int minoff, Int maxoff, VexRegisterUpdates pxControl
955 if (maxoff < r1_min || minoff > r1_max) {
963 if (maxoff < lr_min || minoff > lr_max) {
969 if (maxoff < cia_min || minoff > cia_max) {
979 Int minoff, Int maxoff, VexRegisterUpdates pxControl
995 if (maxoff < r1_min || minoff > r1_max) {
1003 if (maxoff < lr_min || minoff > lr_max) {
1009 if (maxoff < r2_min || minoff > r2_max) {
1015 if (maxoff < cia_min || minoff > cia_max)
    [all...]
guest_arm_helpers.c     [all...]
guest_arm64_helpers.c     [all...]
guest_s390_helpers.c 151 /* Figure out if any part of the guest state contained in minoff
156 Int minoff, Int maxoff, VexRegisterUpdates pxControl
168 if (maxoff < sp_min || minoff > sp_max) {
176 if (maxoff < lr_min || minoff > lr_max) {
182 if (maxoff < fp_min || minoff > fp_max) {
188 if (maxoff < ia_min || minoff > ia_max) {
    [all...]
ir_opt.c 544 On seeing 't = Get(minoff,maxoff)', look up (minoff,maxoff) in the
546 there is no match, add a (minoff,maxoff) :-> t binding.
548 On seeing 'Put (minoff,maxoff) = t or c', first remove in the env
549 any binding which fully or partially overlaps with (minoff,maxoff).
550 Then add a new (minoff,maxoff) :-> t or c binding. */
556 UInt* minoff, UInt* maxoff )
558 *minoff = descr->base;
559 *maxoff = *minoff + descr->nElems*sizeofIRType(descr->elemTy) - 1;
560 vassert((*minoff & ~0xFFFF) == 0)
570 UInt minoff = offset; local
579 UInt minoff, maxoff; local
    [all...]
guest_x86_helpers.c     [all...]
guest_amd64_helpers.c     [all...]
  /external/e2fsprogs/lib/ext2fs/
ext_attr.c 940 unsigned int minoff; local
965 minoff = EXT2_INODE_SIZE(fs->super) - sizeof(*inode) - sizeof(__u32);
976 if (offs < minoff)
977 minoff = offs;
981 *size = minoff - ((char *)entry - (char *)start) - sizeof(__u32);
984 *size = EXT2_EXT_ATTR_SIZE(minoff -
  /toolchain/binutils/binutils-2.25/gold/
layout.h 106 // with alignment ALIGN, and minimum offset MINOFF.
108 allocate(off_t len, uint64_t align, off_t minoff);
580 // free list. Find a block starting at or after MINOFF.
582 allocate(off_t len, uint64_t align, off_t minoff)
583 { return this->free_list_.allocate(len, align, minoff); }
    [all...]
layout.cc 158 Free_list::allocate(off_t len, uint64_t align, off_t minoff)
163 static_cast<long>(minoff));
165 return align_address(minoff, align);
177 off_t start = p->start_ > minoff ? p->start_ : minoff;
    [all...]
  /external/valgrind/memcheck/
mc_translate.c 1412 Int minoff = offset; local
    [all...]

Completed in 271 milliseconds