HomeSort by relevance Sort by last modified time
    Searched refs:Slice (Results 26 - 50 of 405) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
select.go 15 typecheckslice(sel.Ninit.Slice(), Etop)
16 for _, n1 := range sel.List.Slice() {
83 typecheckslice(ncase.Nbody.Slice(), Etop)
115 l := cas.Ninit.Slice()
118 l = append(l, n.Ninit.Slice()...)
161 l = ln.Slice()
167 l = append(l, cas.Nbody.Slice()...)
174 for _, cas := range sel.List.Slice() {
218 r.Ninit.Set(cas.Ninit.Slice())
233 r.Ninit.Set(cas.Ninit.Slice())
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
select.go 15 typecheckslice(sel.Ninit.Slice(), Etop)
16 for _, n1 := range sel.List.Slice() {
83 typecheckslice(ncase.Nbody.Slice(), Etop)
115 l := cas.Ninit.Slice()
118 l = append(l, n.Ninit.Slice()...)
161 l = ln.Slice()
167 l = append(l, cas.Nbody.Slice()...)
174 for _, cas := range sel.List.Slice() {
218 r.Ninit.Set(cas.Ninit.Slice())
233 r.Ninit.Set(cas.Ninit.Slice())
    [all...]
  /system/netd/server/
NFLogListener.cpp 35 using netdutils::Slice;
55 const nfgenmsg& nfmsg, const Slice msg) {
61 using SendFn = std::function<Status(const Slice msg)>;
150 const auto rxHandler = [this](const nlmsghdr& nlmsg, const Slice msg) {
160 const auto rxDoneHandler = [](const nlmsghdr&, const Slice msg) {
172 const auto sendFn = [this](const Slice msg) { return mListener->send(msg); };
179 const auto sendFn = [this](const Slice msg) { return mListener->send(msg); };
192 const auto sendFn = [this](const Slice msg) { return mListener->send(msg); };
215 const auto sendFn = [&listener](const Slice msg) { return listener->send(msg); };
WakeupController.cpp 37 using netdutils::Slice;
48 const auto msgHandler = [this](const nlmsghdr&, const nfgenmsg&, const Slice msg) {
54 const Slice payload) {
NFLogListener.h 31 const netdutils::Slice msg)>;
  /external/webrtc/webrtc/common_audio/
audio_ring_buffer_unittest.cc 30 rtc::scoped_ptr<float* []> slice(new float* [num_channels]);
37 buf.Write(input.Slice(slice.get(), input_pos), num_channels,
44 buf.Read(output->Slice(slice.get(), output_pos), num_channels,
52 buf.Write(input.Slice(slice.get(), input_pos), num_channels,
56 buf.Read(output->Slice(slice.get(), output_pos), num_channels,
channel_buffer.h 103 // Sets the |slice| pointers to the |start_frame| position for each channel.
104 // Returns |slice| for convenience.
105 const T* const* Slice(T** slice, size_t start_frame) const {
108 slice[i] = &channels_[i][start_frame];
109 return slice;
111 T** Slice(T** slice, size_t start_frame) {
113 return const_cast<T**>(t->Slice(slice, start_frame))
    [all...]
  /prebuilts/go/darwin-x86/test/
named1.go 19 type Slice []byte
21 var slice Slice var
61 asString(String(slice)) // ok
  /prebuilts/go/linux-x86/test/
named1.go 19 type Slice []byte
21 var slice Slice var
61 asString(String(slice)) // ok
  /external/sfntly/cpp/src/sfntly/data/
writable_font_data.h 182 // Makes a slice of this FontData. The returned slice will share the data with
184 // @param offset the start of the slice
185 // @param length the number of bytes in the slice
186 // @return a slice of the original FontData
187 virtual CALLER_ATTACH FontData* Slice(int32_t offset, int32_t length);
189 // Makes a bottom bound only slice of this array. The returned slice will
191 // @param offset the start of the slice
192 // @return a slice of the original FontDat
    [all...]
readable_font_data.h 258 // Makes a slice of this FontData. The returned slice will share the data with
260 // @param offset the start of the slice
261 // @param length the number of bytes in the slice
262 // @return a slice of the original FontData
264 virtual CALLER_ATTACH FontData* Slice(int32_t offset, int32_t length);
266 // Makes a bottom bound only slice of this array. The returned slice will
268 // @param offset the start of the slice
269 // @return a slice of the original FontDat
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
enc_helpers.go 52 // Can only slice if it is addressable.
56 return encBoolSlice(state, v.Slice(0, v.Len()))
60 slice, ok := v.Interface().([]bool)
65 for _, x := range slice {
78 // Can only slice if it is addressable.
82 return encComplex64Slice(state, v.Slice(0, v.Len()))
86 slice, ok := v.Interface().([]complex64)
91 for _, x := range slice {
103 // Can only slice if it is addressable.
107 return encComplex128Slice(state, v.Slice(0, v.Len())
    [all...]
dec_helpers.go 53 // Can only slice if it is addressable.
57 return decBoolSlice(state, v.Slice(0, v.Len()), length, ovfl)
61 slice, ok := v.Interface().([]bool)
68 errorf("decoding bool array or slice: length exceeds input size (%d elements)", length)
70 slice[i] = state.decodeUint() != 0
76 // Can only slice if it is addressable.
80 return decComplex64Slice(state, v.Slice(0, v.Len()), length, ovfl)
84 slice, ok := v.Interface().([]complex64)
91 errorf("decoding complex64 array or slice: length exceeds input size (%d elements)", length)
95 slice[i] = complex(float32(real), float32(imag)
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
enc_helpers.go 52 // Can only slice if it is addressable.
56 return encBoolSlice(state, v.Slice(0, v.Len()))
60 slice, ok := v.Interface().([]bool)
65 for _, x := range slice {
78 // Can only slice if it is addressable.
82 return encComplex64Slice(state, v.Slice(0, v.Len()))
86 slice, ok := v.Interface().([]complex64)
91 for _, x := range slice {
103 // Can only slice if it is addressable.
107 return encComplex128Slice(state, v.Slice(0, v.Len())
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format5.cc 64 data.Attach(down_cast<ReadableFontData*>(data_->Slice(
143 data->Slice(index_sub_table_offset, length)));
166 data->Slice(index_sub_table_offset, length)));
206 source.Attach(down_cast<ReadableFontData*>(InternalReadData()->Slice(
208 target.Attach(down_cast<WritableFontData*>(new_data->Slice(
214 WritableFontDataPtr slice; local
215 slice.Attach(down_cast<WritableFontData*>(new_data->Slice(size)));
216 size += BigMetrics()->SubSerialize(slice);
239 data.Attach(down_cast<WritableFontData*>(InternalWriteData()->Slice(
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 132 uint64_t Slice = *p & 0x7f;
133 if(Shift >= 64 || Slice << Shift >> Shift != Slice){
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 132 uint64_t Slice = *p & 0x7f;
133 if(Shift >= 64 || Slice << Shift >> Shift != Slice){
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 132 uint64_t Slice = *p & 0x7f;
133 if(Shift >= 64 || Slice << Shift >> Shift != Slice){
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 132 uint64_t Slice = *p & 0x7f;
133 if(Shift >= 64 || Slice << Shift >> Shift != Slice){
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 132 uint64_t Slice = *p & 0x7f;
133 if(Shift >= 64 || Slice << Shift >> Shift != Slice){
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 132 uint64_t Slice = *p & 0x7f;
133 if(Shift >= 64 || Slice << Shift >> Shift != Slice){
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 132 uint64_t Slice = *p & 0x7f;
133 if(Shift >= 64 || Slice << Shift >> Shift != Slice){
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 132 uint64_t Slice = *p & 0x7f;
133 if(Shift >= 64 || Slice << Shift >> Shift != Slice){
  /prebuilts/go/darwin-x86/src/cmd/nm/
nm.go 106 sort.Slice(syms, func(i, j int) bool { return syms[i].Addr < syms[j].Addr })
108 sort.Slice(syms, func(i, j int) bool { return syms[i].Name < syms[j].Name })
110 sort.Slice(syms, func(i, j int) bool { return syms[i].Size > syms[j].Size })
  /prebuilts/go/linux-x86/src/cmd/nm/
nm.go 106 sort.Slice(syms, func(i, j int) bool { return syms[i].Addr < syms[j].Addr })
108 sort.Slice(syms, func(i, j int) bool { return syms[i].Name < syms[j].Name })
110 sort.Slice(syms, func(i, j int) bool { return syms[i].Size > syms[j].Size })

Completed in 2786 milliseconds

12 3 4 5 6 7 8 91011>>