HomeSort by relevance Sort by last modified time
    Searched full:sparsemap (Results 1 - 25 of 28) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
sparsemap.go 18 type sparseMap struct {
23 // newSparseMap returns a sparseMap that can map
25 func newSparseMap(n int) *sparseMap {
26 return &sparseMap{dense: nil, sparse: make([]int32, n)}
29 func (s *sparseMap) size() int {
33 func (s *sparseMap) contains(k ID) bool {
40 func (s *sparseMap) get(k ID) int32 {
48 func (s *sparseMap) set(k ID, v int32, a src.XPos) {
60 func (s *sparseMap) setBit(k ID, v uint) {
73 func (s *sparseMap) remove(k ID)
    [all...]
deadstore.go 112 if sz > 0x7fffffff { // work around sparseMap's int32 value type
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
sparsemap.go 18 type sparseMap struct {
23 // newSparseMap returns a sparseMap that can map
25 func newSparseMap(n int) *sparseMap {
26 return &sparseMap{dense: nil, sparse: make([]int32, n)}
29 func (s *sparseMap) size() int {
33 func (s *sparseMap) contains(k ID) bool {
40 func (s *sparseMap) get(k ID) int32 {
48 func (s *sparseMap) set(k ID, v int32, a src.XPos) {
60 func (s *sparseMap) setBit(k ID, v uint) {
73 func (s *sparseMap) remove(k ID)
    [all...]
deadstore.go 112 if sz > 0x7fffffff { // work around sparseMap's int32 value type
  /prebuilts/go/darwin-x86/src/archive/tar/
reader.go 303 var sparseMap []string
316 if (len(sparseMap)%2 == 0 && key != paxGNUSparseOffset) ||
317 (len(sparseMap)%2 == 1 && key != paxGNUSparseNumBytes) ||
321 sparseMap = append(sparseMap, value)
326 if len(sparseMap) > 0 {
327 paxHdrs[paxGNUSparseMap] = strings.Join(sparseMap, ",")
585 // There should be two numbers in sparseMap for each entry.
586 sparseMap := strings.Split(paxHdrs[paxGNUSparseMap], ",")
587 if len(sparseMap) == 1 && sparseMap[0] == ""
    [all...]
  /prebuilts/go/linux-x86/src/archive/tar/
reader.go 303 var sparseMap []string
316 if (len(sparseMap)%2 == 0 && key != paxGNUSparseOffset) ||
317 (len(sparseMap)%2 == 1 && key != paxGNUSparseNumBytes) ||
321 sparseMap = append(sparseMap, value)
326 if len(sparseMap) > 0 {
327 paxHdrs[paxGNUSparseMap] = strings.Join(sparseMap, ",")
585 // There should be two numbers in sparseMap for each entry.
586 sparseMap := strings.Split(paxHdrs[paxGNUSparseMap], ",")
587 if len(sparseMap) == 1 && sparseMap[0] == ""
    [all...]
  /external/eigen/Eigen/
SparseCore 43 #include "src/SparseCore/SparseMap.h"
  /external/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 75 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 75 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 75 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
ScheduleDAGInstrs.h 92 /// Use SparseSet as a SparseMap by relying on the fact that it never
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/cmd/compile/internal/
ssa.a     [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/cmd/compile/internal/
ssa.a     [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/archive/
tar.a 282 is1x0?Tgclocals·852079b41e3e75e79391c3a96fd61b4c?"".parsePAXTime?"runtime.cmpstring?.autotmp_10?.autotmp_41?.autotmp_43?.type.*map[string]string?Tgclocals·a9c54f3c0387ac5ae71b827884e739c9?Tgclocals·b36c70c8eb8b94a4823c4f54b6307d23?""".parsePAXRecord?>go.string."GNU.sparse.numbytes"?:go.string."GNU.sparse.offset"?go.string.","? strings.Contains?.autotmp_45?key.ptr?residual.ptr?sbuf.ptr?value.ptr?.autotmp_46?key.len?residual.len?sbuf.len?sparseMap.cap?sparseMap.len?value.len?Tgclocals·b30b9f85205b1bb347a277b57fe55558?Tgclocals·98e9de625c155e4825715f781f5d56d0?io.ReadFull?"".zeroBlock?bytes.Equal? io.EOF?2"".(*parser).parseNumeric?time.Local?"".isASCII?@"".(*Reader).readHeader.func1·f?bytes.IndexFunc?&p2?.autotmp_394?.autotmp_395?prefix.ptr?~r0.ptr?prefix.len?Tgclocals·3d9fa8a7087b94ba6f59aec7680a6d31?Tgclocals·e4df1de00aaf9656f2da0e707b6904cd?@gofile..$GOROOT/src/time/time.go?time.Unix?time.unixTime?:"".(*Reader).readHeader.func2?"runtime.makeslice?"".mustReadFull?.autotmp_155? length?
285 s.cap?Tgclocals·978a8cb1a81f4391d3460430f9d3389d?Tgclocals·e73c119e4cf29fdc7451a0ba1083d2f0?"type.bytes.Buffer??type.noalg.struct { F uintptr; "".cntNewline *int64; "".r io.Reader; "".blk *"".block; "".buf *bytes.Buffer }?8"".readGNUSparseMap1x0.func1??type.noalg.struct { F uintptr; "".cntNewline *int64; "".buf *bytes.Buffer }?8"".readGNUSparseMap1x0.func2?&blk?&buf?$type.*bytes.Buffer?&cntNewline?type.*int64?.autotmp_49??type.*struct { F uintptr; "".cntNewline *int64; "".r io.Reader; "".blk *"".block; "".buf *bytes.Buffer }?.autotmp_50??type.*struct { F uintptr; "".cntNewline *int64; "".buf *bytes.Buffer }?.autotmp_52?err1.itab?.autotmp_51?Tgclocals·015b768c95e9e30e86568b4ea8bcabd9?Tgclocals·05a3b6f2d34e054192744032594aace0?@go.string."GNU.sparse.numblocks"?strings.Split?sparseMap.ptr?Tgclocals·921fcfcd714eecfd7f586c9d2841813a?Tgclocals·a90d5aa563d4c9b7f1bac18f9e08e024?""".(*Reader).Read?runtime.ifaceeq?Tgclocals·35f6524c10f11ceaf77158cb47e29e6c?Tgclocals·7770dff2f7f4540095f5647b633223cc?("".(*Reader).writeTo?w?Tgclocals·49ead389413b2185f9f68b147cca90e7?0"".(*regFileReader).Read?&io.ErrUnexpectedEOF?fr?.autotmp_11?.autotmp_12?Tgclocals·5a1464da9a17ff7957b19d71fad0999e?Tgclocals·1153baab0803dc1192e7edb2312473ba?6"".(*regFileReader).WriteTo?Fgo.itab.*"".regFileReader,io.Reader?Lgo.itab.struct { io.Reader },io.Reader?runtime.convT2I?io.Copy?2type.struct { io.Reader }?Tgclocals·ff697f2eeb6f8e76859246335a1360b4?Tgclocals·dc28adf02d19f0e1888c82648a55be49?B"".regFileReader.LogicalRemaining?Tgclocals·4603b7b521a379930828b2deef5b5c04?D"".regFileReader.PhysicalRemaining?6"".(*sparseFileReader).Read?>go.itab."".zeroReader,io.Reader? runtime.zerobase?"".errUnrefData?"".errMissData?.autotmp_81?(type.*"".sparseHoles?.autotmp_84?.autotmp_85? bf.ptr?.autotmp_82?.autotmp_83? b0.len? bf.cap? endPos?holeEnd?Tgclocals·7e9e7d6aa900b4c5167caf9bc032937e?Tgclocals·1689f53b8e298dd196a6c7a4380d1103?<"".(*sparseFileReader).WriteTo?&type.io.WriteSeeker?$runtime.assertI2I2?io.CopyN?type.[1]uint8?"".statictmp_10?Lgo.itab.*"".sparseFileReader,io.Reader?.autotmp_28?.autotmp_62?ws.data?ws.itab?.autotmp_63?.autotmp_64?nf?pos0?ok?writeLastByte?Tgclocals·c4e28b1f4cec8f028ea1ac410b19ddae?Tgclocals·e97048448a79997d51ced9500eb85709?Tgclocals·8d3d950b897159a21dc43ff47e41677e?$"".zeroReader.Read?8runtime.memclrNoHeapPointers?Tgclocals·9db7badee327cbc93ed47f653d83c9e8?Tgclocals·d0753e8a3d875a070f12eec08c2a0129?Tgclocals·f83413e1f0916265015171ba5b95f669?.autotmp_13?type.io.Seeker?"io/ioutil.Discard?sr.data?sr.itab?copySkipped?pos1?seekSkipped?Tgclocals·2ea645493e4e1377cc45c623e6d6273d?Tgclocals·8e8ee4c8c7884a8389d01a0b9280e858?"".statAtime?st?(type.*syscall.Stat_t?^gofile..$GOROOT/src/archive/tar/stat_actime2.go?Lgofile..$GOROOT/src/syscall/syscall.go?0syscall.(*Timespec).Unix?"".statCtime?"".init.0?"".statUnix·f?Xgofile..$GOROOT/src/archive/tar/stat_unix.go?"".statUnix?"".userMap? sync.(*Map).Load?"".groupMap?strconv.Itoa?*os/user.LookupGroupId?"runtime.convT2E64?"sync.(*Map).Store? os/user.LookupId?*runtime.panicdottypeE?.autotmp_133?type.*int?.autotmp_135?.autotmp_136?.autotmp_77?.autotmp_79?Tgclocals·a86072f71700b96fc5ab6e89e421d761?Tgclocals·17ec56997fe9707b89579671c7a44bb6?"".hasNUL?"strings.IndexByte?Tgofile..$GOROOT/src/archive/tar/strconv.go?$runtime.decoderune?"".toASCII?
    [all...]

Completed in 1263 milliseconds

1 2