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

1 2 3 4 5 6

  /external/llvm/lib/Target/PowerPC/
PPCCCState.h 34 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C)
35 : CCState(CC, isVarArg, MF, locs, C) {}
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
loc1m.d 5 # err: two locs.
  /prebuilts/go/darwin-x86/src/runtime/pprof/
protomem.go 25 var locs []uint64
27 locs = locs[:0]
45 locs = append(locs, l)
47 if len(locs) > 0 {
59 b.pbSample(values, locs, func() {
proto.go 45 locs map[uintptr]int
143 func (b *profileBuilder) pbSample(values []int64, locs []uint64, labels func()) {
146 b.pb.uint64s(tagSample_Location, locs)
189 id := uint64(b.locs[addr])
221 id = uint64(len(b.locs)) + 1
222 b.locs[addr] = int(id)
276 locs: map[uintptr]int{},
359 var locs []uint64
373 locs = locs[:0
    [all...]
  /prebuilts/go/linux-x86/src/runtime/pprof/
protomem.go 25 var locs []uint64
27 locs = locs[:0]
45 locs = append(locs, l)
47 if len(locs) > 0 {
59 b.pbSample(values, locs, func() {
proto.go 45 locs map[uintptr]int
143 func (b *profileBuilder) pbSample(values []int64, locs []uint64, labels func()) {
146 b.pb.uint64s(tagSample_Location, locs)
189 id := uint64(b.locs[addr])
221 id = uint64(len(b.locs)) + 1
222 b.locs[addr] = int(id)
276 locs: map[uintptr]int{},
359 var locs []uint64
373 locs = locs[:0
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
cache.go 15 locs [2000]Location
41 nl := sort.Search(len(c.locs), func(i int) bool { return c.locs[i] == nil })
42 xl := c.locs[:nl]
debug.go 43 var locs []string
46 locs = append(locs, block.LocString(loc))
49 return strings.Join(locs, " ")
288 locs := state.mergePredecessors(b, blockLocs)
290 state.logf("Processing %v, initial locs %v, regs %v\n", b, state.BlockString(locs), state.registerContents)
292 // Update locs/registers with the effects of each Value.
327 state.processValue(locs, v, slots, reg)
331 for _, locList := range locs.Variables
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
cache.go 15 locs [2000]Location
41 nl := sort.Search(len(c.locs), func(i int) bool { return c.locs[i] == nil })
42 xl := c.locs[:nl]
debug.go 43 var locs []string
46 locs = append(locs, block.LocString(loc))
49 return strings.Join(locs, " ")
288 locs := state.mergePredecessors(b, blockLocs)
290 state.logf("Processing %v, initial locs %v, regs %v\n", b, state.BlockString(locs), state.registerContents)
292 // Update locs/registers with the effects of each Value.
327 state.processValue(locs, v, slots, reg)
331 for _, locList := range locs.Variables
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
legacy_java_profile.go 49 var locs map[uint64]*Location
50 if b, locs, err = parseCPUSamples(b, parse, false, p); err != nil {
54 if err = parseJavaLocations(b, locs, p); err != nil {
93 var locs map[uint64]*Location
94 if b, locs, err = parseJavaSamples(pType, b, p); err != nil {
97 if err = parseJavaLocations(b, locs, p); err != nil {
169 locs := make(map[uint64]*Location)
176 return b, locs, nil
190 loc := locs[addr]
191 if locs[addr] == nil
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
legacy_java_profile.go 49 var locs map[uint64]*Location
50 if b, locs, err = parseCPUSamples(b, parse, false, p); err != nil {
54 if err = parseJavaLocations(b, locs, p); err != nil {
93 var locs map[uint64]*Location
94 if b, locs, err = parseJavaSamples(pType, b, p); err != nil {
97 if err = parseJavaLocations(b, locs, p); err != nil {
169 locs := make(map[uint64]*Location)
176 return b, locs, nil
190 loc := locs[addr]
191 if locs[addr] == nil
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/
filter.go 38 var locs []*Location
41 locs = append(locs, loc)
44 if len(locs) == 0 {
48 sample.Location = locs
96 func focusedAndNotIgnored(locs []*Location, m map[uint64]bool) bool {
98 for _, loc := range locs {
legacy_profile.go 107 locs := make([]*Location, 0, len(fields))
123 locs = append(locs, loc)
126 Location: locs,
142 var locs []*Location
149 l.ID = uint64(len(locs) + 1)
150 locs = append(locs, l)
154 p.Location = locs
274 locs := make(map[uint64]*Location
    [all...]
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/profile/
filter.go 38 var locs []*Location
41 locs = append(locs, loc)
44 if len(locs) == 0 {
48 sample.Location = locs
96 func focusedAndNotIgnored(locs []*Location, m map[uint64]bool) bool {
98 for _, loc := range locs {
legacy_profile.go 107 locs := make([]*Location, 0, len(fields))
123 locs = append(locs, loc)
126 Location: locs,
142 var locs []*Location
149 l.ID = uint64(len(locs) + 1)
150 locs = append(locs, l)
154 p.Location = locs
274 locs := make(map[uint64]*Location
    [all...]
  /external/icu/icu4c/source/test/intltest/
nmfmapts.cpp 313 StringEnumeration* locs = NumberFormat::getAvailableLocales(); local
319 for (res = locs->snext(status); res; res = locs->snext(status)) {
386 for (res = locs->snext(status); res; res = locs->snext(status)) {
390 locs->reset(status); // now in synch again, we hope
391 for (res = locs->snext(status); res; res = locs->snext(status)) {
395 delete locs;
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
TextFormatParseInfoTree.java 73 Map<FieldDescriptor, List<TextFormatParseLocation>> locs = local
76 locs.put(kv.getKey(), Collections.unmodifiableList(kv.getValue()));
78 this.locationsFromField = Collections.unmodifiableMap(locs);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_inspect.py 547 def assertEqualCallArgs(self, func, call_params_string, locs=None):
548 locs = dict(locs or {}, func=func)
549 r1 = eval('func(%s)' % call_params_string, None, locs)
551 locs)
554 def assertEqualException(self, func, call_param_string, locs=None):
555 locs = dict(locs or {}, func=func)
557 eval('func(%s)' % call_param_string, None, locs)
564 locs)
    [all...]
  /external/llvm/lib/Target/Mips/
MipsCCState.h 68 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C,
70 : CCState(CC, isVarArg, MF, locs, C), SpecialCallingConv(SpecialCC) {}
  /external/llvm/lib/Target/SystemZ/
SystemZCallingConv.h 42 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C)
43 : CCState(CC, isVarArg, MF, locs, C) {}
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.h 109 Vector<ReportLocation*> locs; member in class:__tsan::ReportDesc
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
webui_test.go 202 locs := []*profile.Location{
218 Location: []*profile.Location{locs[2], locs[1], locs[0]},
222 Location: []*profile.Location{locs[1], locs[0]},
226 Location: locs,

Completed in 574 milliseconds

1 2 3 4 5 6