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

1 2 3 4

  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
refiner.c 51 int16_t vect[ENH_VECTL]; local
111 WebRtcSpl_MemSetW16(vect, 0, st);
112 WEBRTC_SPL_MEMCPY_W16(&vect[st], idata, ENH_VECTL - st);
117 WEBRTC_SPL_MEMCPY_W16(vect, &idata[st], ENH_VECTL - en);
118 WebRtcSpl_MemSetW16(&vect[ENH_VECTL - en], 0, en);
120 WEBRTC_SPL_MEMCPY_W16(vect, &idata[st], ENH_VECTL);
131 WebRtcSpl_FilterMAFastQ12(&vect[6], vect, filt, ENH_FLO_MULT2_PLUS1,
136 WebRtcSpl_AddAffineVectorToVector(surround, vect, gain, 32768, 16,
  /external/llvm/test/Transforms/LoopVectorize/X86/
already-vectorized.ll 13 define i32 @vect() {
14 ; CHECK: LV: Checking a loop in "vect"
33 ; CHECK: br {{.*}} label %vector.body, !llvm.loop [[vect:![0-9]+]]
42 ; CHECK: [[vect]] = distinct !{[[vect]], [[width:![0-9]+]], [[unroll:![0-9]+]]}
  /external/swiftshader/third_party/subzero/crosstest/
test_vector_ops_main.cpp 78 Ty Vect = TestVectors[VI];
82 Ty ResultLlc = VectorOps<T>::insertelement(Vect, Elt, I);
83 Ty ResultSz = VectorOps<T>::Subzero_insertelement(Vect, Elt, I);
89 std::cout << "insertelement<" << VectorOps<T>::TypeName << ">(Vect=";
90 std::cout << vectAsString<T>(Vect)
113 Ty Vect = TestVectors[VI];
115 CastTy ResultLlc = VectorOps<T>::extractelement(Vect, I);
116 CastTy ResultSz = VectorOps<T>::Subzero_extractelement(Vect, I);
122 std::cout << "extractelement<" << VectorOps<T>::TypeName << ">(Vect=";
123 std::cout << vectAsString<T>(Vect) << ", Pos=" << I << ")\n"
    [all...]
  /external/opencv/cv/src/
cvrotcalipers.cpp 99 CvPoint2D32f* vect = (CvPoint2D32f*)cvAlloc( n * sizeof(vect[0]) ); local
139 vect[i].x = (float)dx;
140 vect[i].y = (float)dy;
150 double ax = vect[n-1].x;
151 double ay = vect[n-1].y;
155 double bx = vect[i].x;
156 double by = vect[i].y;
189 float dp0 = base_a * vect[seq[0]].x + base_b * vect[seq[0]].y
    [all...]
  /system/update_engine/payload_generator/
topological_sort_unittest.cc 34 // Returns true if the value is found in vect. If found, the index is stored
37 bool IndexOf(const vector<T>& vect,
40 for (typename vector<T>::size_type i = 0; i < vect.size(); i++) {
41 if (vect[i] == value) {
inplace_generator_unittest.cc 81 void DumpVect(const vector<T>& vect) {
83 for (typename vector<T>::const_iterator it = vect.begin(), e = vect.end();
90 void AppendExtent(vector<Extent>* vect, uint64_t start, uint64_t length) {
91 vect->resize(vect->size() + 1);
92 vect->back().set_start_block(start);
93 vect->back().set_num_blocks(length);
414 vector<Vertex::Index> vect(graph.size());
416 for (vector<Vertex::Index>::size_type i = 0; i < vect.size(); ++i)
    [all...]
  /external/lzma/CPP/7zip/UI/FileManager/
SysIconUtils.cpp 119 static int FindInSorted_Attrib(const CRecordVector<CAttribIconPair> &vect, DWORD attrib, int &insertPos)
121 unsigned left = 0, right = vect.Size();
125 DWORD midAttrib = vect[mid].Attrib;
137 static int FindInSorted_Ext(const CObjectVector<CExtIconPair> &vect, const wchar_t *ext, int &insertPos)
139 unsigned left = 0, right = vect.Size();
143 int compare = MyStringCompareNoCase(ext, vect[mid].Ext);
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 232 VectorData(const VectorData &VD) : NumRefs(1), Vect(VD.Vect) { }
235 std::vector<T> Vect;
295 const std::vector<T> &elements() const { return Data->Vect; }
310 Data->Vect.clear();
316 Data->Vect.push_back(Elem);
323 return Data->Vect[i];
329 Data->Vect.erase(Data->Vect.begin() + i, Data->Vect.end())
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dvec.h 652 #define IVEC128_LOGICALS(vect,element) inline I##vect##vec##element operator& (const I##vect##vec##element &a,const I##vect##vec##element &b) { return _mm_and_si128(a,b); } inline I##vect##vec##element operator| (const I##vect##vec##element &a,const I##vect##vec##element &b) { return _mm_or_si128(a,b); } inline I##vect##vec##element operator^ (const I##vect##vec##element &a,const I##vect##vec##element &b) { return _mm_xor_si128(a,b); } inline I##vect##vec##element andnot (const I##vec (…)
    [all...]
  /system/update_engine/common/
utils.h 227 inline void HexDumpVector(const brillo::Blob& vect) {
228 HexDumpArray(vect.data(), vect.size());
241 bool VectorContainsValue(const std::vector<T>& vect, const T& value) {
242 return std::find(vect.begin(), vect.end(), value) != vect.end();
246 bool VectorIndexOf(const std::vector<T>& vect, const T& value,
248 typename std::vector<T>::const_iterator it = std::find(vect.begin(),
249 vect.end()
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/preprocessing/
text.py 266 for vect in self.texts_to_sequences_generator(texts):
267 res.append(vect)
286 vect = []
293 vect.append(i)
297 vect.append(i)
298 yield vect

Completed in 6706 milliseconds

1 2 3 4