HomeSort by relevance Sort by last modified time
    Searched refs:locs (Results 1 - 25 of 70) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
loc1m.d 5 # err: two locs.
  /external/opencv3/modules/cudaarithm/src/cuda/
minmaxloc.cu 138 int locs[2];
139 locVals.createMatHeader().copyTo(Mat(locVals.size(), CV_32SC1, &locs[0]));
142 cv::Point(locs[0] % size.width, locs[0] / size.width),
143 cv::Point(locs[1] % size.width, locs[1] / size.width),
  /external/llvm/lib/Target/SystemZ/
SystemZCallingConv.h 41 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C)
42 : CCState(CC, isVarArg, MF, locs, C) {}
  /external/icu/icu4c/source/test/intltest/
nmfmapts.cpp 311 StringEnumeration* locs = NumberFormat::getAvailableLocales(); local
317 for (res = locs->snext(status); res; res = locs->snext(status)) {
384 for (res = locs->snext(status); res; res = locs->snext(status)) {
388 locs->reset(status); // now in synch again, we hope
389 for (res = locs->snext(status); res; res = locs->snext(status)) {
393 delete locs;
  /external/llvm/lib/Target/Mips/
MipsCCState.h 68 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C,
70 : CCState(CC, isVarArg, MF, locs, C), SpecialCallingConv(SpecialCC) {}
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.h 108 Vector<ReportLocation*> locs; member in class:__tsan::ReportDesc
tsan_report.cc 58 , locs(MBlockReportLoc)
340 for (uptr i = 0; i < rep->locs.Size(); i++)
341 PrintLocation(rep->locs[i]);
  /external/elfutils/libdw/
dwarf_end.c 56 tdestroy (p->locs, noop_free);
dwarf_getlocation.c 123 struct loc_block_s **found = tfind (&fake, &attr->cu->locs, loc_compare);
161 struct loc_s **found = tfind (&fake, &attr->cu->locs, loc_compare);
185 found = tsearch (newp, &attr->cu->locs, loc_compare);
240 /* Stack allocate at most this many locs. */
604 &cu->locs, block,
676 Dwarf_Addr address, const Elf_Data *locs, Dwarf_Op **expr,
679 unsigned char *readp = locs->d_buf + offset;
680 unsigned char *readendp = locs->d_buf + locs->d_size;
728 return readp - (unsigned char *) locs->d_buf
    [all...]
libdw_findcu.c 115 newp->locs = NULL;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_inspect.py 640 def assertEqualCallArgs(self, func, call_params_string, locs=None):
641 locs = dict(locs or {}, func=func)
642 r1 = eval('func(%s)' % call_params_string, None, locs)
644 locs)
647 def assertEqualException(self, func, call_param_string, locs=None):
648 locs = dict(locs or {}, func=func)
650 eval('func(%s)' % call_param_string, None, locs)
657 locs)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_inspect.py 640 def assertEqualCallArgs(self, func, call_params_string, locs=None):
641 locs = dict(locs or {}, func=func)
642 r1 = eval('func(%s)' % call_params_string, None, locs)
644 locs)
647 def assertEqualException(self, func, call_param_string, locs=None):
648 locs = dict(locs or {}, func=func)
650 eval('func(%s)' % call_param_string, None, locs)
657 locs)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_inspect.py 640 def assertEqualCallArgs(self, func, call_params_string, locs=None):
641 locs = dict(locs or {}, func=func)
642 r1 = eval('func(%s)' % call_params_string, None, locs)
644 locs)
647 def assertEqualException(self, func, call_param_string, locs=None):
648 locs = dict(locs or {}, func=func)
650 eval('func(%s)' % call_param_string, None, locs)
657 locs)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_inspect.py 640 def assertEqualCallArgs(self, func, call_params_string, locs=None):
641 locs = dict(locs or {}, func=func)
642 r1 = eval('func(%s)' % call_params_string, None, locs)
644 locs)
647 def assertEqualException(self, func, call_param_string, locs=None):
648 locs = dict(locs or {}, func=func)
650 eval('func(%s)' % call_param_string, None, locs)
657 locs)
    [all...]
  /external/elfutils/tests/
varlocs.c 402 int locs = dwarf_getlocation_addr (&attrval, addr, local
404 if (locs == 0)
406 else if (locs == 1)
411 ", locs (%d): %s", addr, locs, dwarf_errmsg (-1));
696 int locs = dwarf_getlocation_addr (&attr, begin, local
699 assert (locs == 1);
700 locs = dwarf_getlocation_addr (&attr, end - 1,
703 assert (locs == 1);
  /external/icu/icu4c/source/test/perf/normperf/
dtfmtrtperf.h 61 DateTimeRoundTripFunction(int locs)
63 nLocales = locs;
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target_nv50.cpp 513 recordLocation(uint16_t *locs, uint8_t *masks,
519 case TGSI_SEMANTIC_POSITION: locs[SV_POSITION] = addr; break;
520 case TGSI_SEMANTIC_INSTANCEID: locs[SV_INSTANCE_ID] = addr; break;
521 case TGSI_SEMANTIC_VERTEXID: locs[SV_VERTEX_ID] = addr; break;
522 case TGSI_SEMANTIC_PRIMID: locs[SV_PRIMITIVE_ID] = addr; break;
523 case NV50_SEMANTIC_LAYER: locs[SV_LAYER] = addr; break;
524 case NV50_SEMANTIC_VIEWPORTINDEX: locs[SV_VIEWPORT_INDEX] = addr; break;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationServiceTest.java 320 Locale locs[] = Collator.getAvailableLocales(); local
321 if (!assertTrue("getAvailableLocales != null", locs!=null)) return -1;
322 checkArray(msg, locs, null);
328 //assertTrue("getAvailableLocales().length == getAvailableULocales().length", locs.length == ulocs.length);
329 return locs.length;
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationServiceTest.java 316 Locale locs[] = Collator.getAvailableLocales(); local
317 if (!assertTrue("getAvailableLocales != null", locs!=null)) return -1;
318 checkArray(msg, locs, null);
324 //assertTrue("getAvailableLocales().length == getAvailableULocales().length", locs.length == ulocs.length);
325 return locs.length;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
regexp.h 92 extern char *locs;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
regexp.h 92 extern char *locs;
  /external/llvm/lib/CodeGen/
CallingConvLower.cpp 29 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C)
31 TRI(*MF.getSubtarget().getRegisterInfo()), Locs(locs), Context(C),
197 unsigned NumLocs = Locs.size();
215 HaveRegParm = Locs.back().isRegLoc();
219 assert(NumLocs < Locs.size() && "CC assignment failed to add location");
220 for (unsigned I = NumLocs, E = Locs.size(); I != E; ++I)
221 if (Locs[I].isRegLoc())
222 Regs.push_back(MCPhysReg(Locs[I].getLocReg()));
229 Locs.resize(NumLocs)
    [all...]
  /bootable/recovery/updater/
blockimg.cpp 832 static void MoveRange(std::vector<uint8_t>& dest, const RangeSet& locs,
835 // locations given in locs in the dest buffer. source and dest
840 size_t start = locs.size;
841 for (int i = locs.count-1; i >= 0; --i) {
842 size_t blocks = locs.pos[i*2+1] - locs.pos[i*2];
844 memmove(to + (locs.pos[i*2] * BLOCKSIZE), from + (start * BLOCKSIZE),
910 RangeSet locs; local
911 parse_range(params.tokens[params.cpos++], locs);
912 MoveRange(buffer, locs, buffer)
936 RangeSet locs; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
symtable.py 140 locs = (LOCAL, CELL)
141 test = lambda x: ((x >> SCOPE_OFF) & SCOPE_MASK) in locs
  /prebuilts/gdb/linux-x86/lib/python2.7/
symtable.py 140 locs = (LOCAL, CELL)
141 test = lambda x: ((x >> SCOPE_OFF) & SCOPE_MASK) in locs

Completed in 310 milliseconds

1 2 3