HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 1176 - 1200 of 1449) sorted by null

<<41424344454647484950>>

  /external/libxslt/libxslt/
xslt.c 6968 xmlChar *URL, *base; local
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 287 SDValue base = getGlobalAddressWrapper(GA, GV, DAG); local
292 return DAG.getNode(ISD::ADD, dl, MVT::i32, base, offset);
364 const SDValue &Base = Addr.getOperand(0);
365 const SDValue *Root = &Base;
366 if (Base.getOpcode() == ISD::ADD &&
367 Base.getOperand(1).getOpcode() == ISD::SHL) {
368 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Base.getOperand(1)
371 Root = &Base.getOperand(0);
376 AlignedBase = Base;
383 AlignedBase = Base;
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 1157 ThreadWithParamBase* const base = this; local
    [all...]
  /external/mksh/src/
funcs.c 619 int thing = 0, field, base, optc; local
744 base = 0;
745 if (basestr && !bi_getn(basestr, &base))
814 } else if (!typeset(wp[i], fset, fclr, field, base)) {
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 146 int base = (n+1) * (numrho+2) + r+1; local
147 if( accum[base] > threshold &&
148 accum[base] > accum[base - 1] && accum[base] >= accum[base + 1] &&
149 accum[base] > accum[base - numrho - 2] && accum[base] >= accum[base + numrho + 2]
966 int base = y*(acols+2) + x; local
    [all...]
  /external/openssh/
sftp.c 1120 int base = 0; local
1243 base = 8;
1250 l = strtol(argv[optidx], &cp2, base);
    [all...]
  /external/ppp/pppd/
pppd.h 162 u_int32_t base; /* match if (addr & mask) == base */ member in struct:permitted_ip
163 u_int32_t mask; /* base and mask are in network byte order */
    [all...]
  /external/qemu/android/config/linux-x86/asm/
kvm.h 100 __u64 base; member in struct:kvm_segment
110 __u64 base; member in struct:kvm_dtable
  /external/qemu/android/config/linux-x86_64/asm/
kvm.h 100 __u64 base; member in struct:kvm_segment
110 __u64 base; member in struct:kvm_dtable
  /external/qemu/
arm-dis.c 2604 int base = 8 << (*c - 'S'); \/* 8,16 or 32 *\/ local
    [all...]
block.c 626 /* base image inherits from "parent" */
1905 int64_t base; local
    [all...]
qemu-char.c 2630 CharDriverState *base = chr; local
    [all...]
  /external/qemu/target-i386/
hax-interface.h 90 uint64 base; member in struct:segment_desc_t
svm.h 169 uint64_t base; member in struct:vmcb_seg
  /external/qemu/tcg/i386/
tcg-target.c 1061 int base, tcg_target_long ofs, int sizeop)
1070 tcg_out_modrm_offset(s, OPC_MOVZBL, datalo, base, ofs)
1234 int base = args[addrlo_idx]; local
1411 int base = args[addrlo_idx]; local
    [all...]
  /external/quake/quake/src/QW/client/
common.c 87 The "base directory" is the path to the directory holding the quake.exe and all game directories. The sys_* files pass this to host_init in quakeparms_t->basedir. This can be overridden with the "-basedir" command line parm to allow code debugging in a different directory. The base directory is
1516 { // if not a registered version, don't ever go beyond base
1557 char base[32]; local
1567 // extract the filename base name for hunk tag
1568 COM_FileBase (path, base);
1571 buf = Hunk_AllocName (len+1, base);
1577 buf = Cache_Alloc (loadcache, len+1, base);
    [all...]
  /external/quake/quake/src/WinQuake/
common.cpp 84 The "base directory" is the path to the directory holding the quake.exe and all game directories. The sys_* files pass this to host_init in quakeparms_t->basedir. This can be overridden with the "-basedir" command line parm to allow code debugging in a different directory. The base directory is
858 // Get the "base" part of a path, make sure we don't exceed outSize bytes
886 // end now points one character beyond the end of the base part of the file.
1452 { // if not a registered version, don't ever go beyond base
1570 char base[32]; local
1580 // extract the filename base name for hunk tag
1581 COM_FileBase (path, base, sizeof(base));
1584 buf = (byte*) Hunk_AllocName (len+1, base);
    [all...]
pr_cmds.cpp 139 vec3_t base, transformed; local
173 base[0] = bounds[i][0];
176 base[1] = bounds[j][1];
179 base[2] = bounds[k][2];
182 transformed[0] = xvector[0]*base[0] + yvector[0]*base[1];
183 transformed[1] = xvector[1]*base[0] + yvector[1]*base[1];
184 transformed[2] = base[2];
    [all...]
  /external/skia/src/core/
SkAAClip.cpp 398 uint8_t* base = head->data(); local
404 count_left_right_zeros(base + yoff->fOffset, width, &L, &R);
434 uint8_t* row = base + yoff->fOffset;
437 SkDEBUGCODE((void)compute_row_length(base + yoff->fOffset, width - leftZeros - riteZeros);)
469 const uint8_t* base = head->data(); local
475 const uint8_t* data = base + yoff->fOffset;
506 base = head->data();
516 } while (row_is_all_zeros(base + yoff->fOffset, width));
    [all...]
SkCanvas.cpp 533 The caller really needs to restore() back to the base if they want to
1046 // base is used to limit the size (and therefore memory allocation) of the
1048 SkRegion base; local
    [all...]
  /external/v8/src/
deoptimizer.cc 446 MemoryChunk* base = NULL;
452 base = data->eager_deoptimization_entry_code_;
457 base = data->lazy_deoptimization_entry_code_;
460 static_cast<Address>(base->area_start()) + (id * table_entry_size_);
465 MemoryChunk* base = NULL; local
468 base = data->eager_deoptimization_entry_code_;
470 base = data->lazy_deoptimization_entry_code_;
472 if (base == NULL ||
473 addr < base->area_start() ||
474 addr >= base->area_start()
1243 unsigned base = GetFrameSize() - ComputeFixedSize(); local
1248 unsigned base = GetFrameSize() - arg_size; local
    [all...]
spaces.cc 149 Address base = reinterpret_cast<Address>(code_range_->address()); local
153 size_t size = code_range_->size() - (aligned_base - base);
317 void MemoryAllocator::FreeMemory(Address base,
330 if (isolate_->code_range()->contains(static_cast<Address>(base))) {
332 isolate_->code_range()->FreeRawMemory(base, size);
335 bool result = VirtualMemory::ReleaseRegion(base, size);
349 Address base = RoundUp(static_cast<Address>(reservation.address()), local
352 return base;
361 Address base = ReserveAlignedMemory(size, alignment, &reservation); local
362 if (base == NULL) return NULL
495 Address base = NULL; local
1017 Address base = local
2605 uintptr_t base = reinterpret_cast<uintptr_t>(page) \/ MemoryChunk::kAlignment; local
2691 uintptr_t base = reinterpret_cast<uintptr_t>(page)\/alignment; local
    [all...]
  /external/valgrind/main/VEX/priv/
guest_x86_helpers.c 2570 UInt tiBit, base, limit; local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 119 address range [base .. base+len-1].
122 some point and {e,r}ip is in the range [base .. base+len-1], it
197 Addr base; member in struct:__anon13731
212 Addr base; member in struct:__anon13732
237 Addr base; member in struct:__anon13733
248 Addr base; member in struct:__anon13734
622 either the base object or the debug object. There are four sets
630 If we see the primary section for a given set in the base objec
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITOpcodes.cpp 888 int base = currentInstruction[2].u.operand; local
931 int base = currentInstruction[2].u.operand; local
1363 unsigned base = currentInstruction[1].u.operand; local
1549 unsigned base = currentInstruction[2].u.operand; local
    [all...]

Completed in 592 milliseconds

<<41424344454647484950>>