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

1 2

  /external/ltrace/
vect.h 33 struct vect struct
42 void vect_init(struct vect *vec, size_t elt_size);
56 int vect_clone(struct vect *target, const struct vect *source,
65 const struct vect *_source_vec = (SRC_VEC); \
79 size_t vect_size(const struct vect *vec);
82 int vect_empty(const struct vect *vec);
95 * referenced by ELTP is now owned by VECT. Returns 0 if the
97 int vect_pushback(struct vect *vec, void *eltp);
101 void vect_popback(struct vect *vec
    [all...]
forward.h 40 struct vect;
vect.c 24 #include "vect.h"
27 slot(struct vect *vec, size_t i)
33 cslot(const struct vect *vec, size_t i)
39 vect_init(struct vect *vec, size_t elt_size)
41 *vec = (struct vect){ NULL, 0, 0, elt_size };
47 struct vect *target = data;
53 vect_clone(struct vect *target, const struct vect *source,
88 vect_reserve(struct vect *vec, size_t count)
105 vect_size(const struct vect *vec
    [all...]
value_dict.h 25 #include "vect.h"
31 struct vect numbered;
32 struct vect named;
lens_enum.h 25 #include "vect.h"
29 struct vect entries;
options.h 32 #include "vect.h"
101 int parse_colon_separated_list(const char *paths, struct vect *vec);
104 extern struct vect opt_F;
prototype.h 28 #include "vect.h"
33 struct vect params;
90 struct vect imports;
ltrace-elf.h 33 #include "vect.h"
54 struct vect plt_relocs;
140 struct vect *rela_vec);
type.h 27 #include "vect.h"
48 struct vect entries;
dict.h 26 #include "vect.h"
31 struct vect keys;
32 struct vect values;
33 struct vect status;
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dct_16.h 85 void pvmp3_split(int32 *vect);
  /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,
  /ndk/tests/device/test-gnustl-full/unit/
mvctor_traits_test.cpp 90 vector<MovableStruct> vect; local
91 vect.push_back(MovableStruct());
92 vect.push_back(MovableStruct());
93 vect.push_back(MovableStruct());
94 vect.push_back(MovableStruct());
96 // vect contains 4 elements
117 vect.insert(vect.begin() + 2, vect.begin(), vect.end())
189 vector<CompleteMovableStruct> vect; local
    [all...]
mvctor_test.cpp 624 vector<vector<string> > vect(10, vector<string>(10, long_str));
628 vector<vector<string> >::iterator it(vect.begin());
629 advance(it, index % vect.size());
633 vect.erase(it);
634 if (vect.empty())
649 vector<deque<string> > vect(10, deque<string>(10, long_str));
652 vector<deque<string> > vect(10, deq_str);
657 vector<deque<string> >::iterator it(vect.begin());
658 advance(it, index % vect.size());
662 vect.erase(it)
    [all...]
  /ndk/tests/device/test-stlport/unit/
mvctor_traits_test.cpp 90 vector<MovableStruct> vect; local
91 vect.push_back(MovableStruct());
92 vect.push_back(MovableStruct());
93 vect.push_back(MovableStruct());
94 vect.push_back(MovableStruct());
96 // vect contains 4 elements
117 vect.insert(vect.begin() + 2, vect.begin(), vect.end())
189 vector<CompleteMovableStruct> vect; local
    [all...]
mvctor_test.cpp 624 vector<vector<string> > vect(10, vector<string>(10, long_str));
628 vector<vector<string> >::iterator it(vect.begin());
629 advance(it, index % vect.size());
633 vect.erase(it);
634 if (vect.empty())
649 vector<deque<string> > vect(10, deque<string>(10, long_str));
652 vector<deque<string> > vect(10, deq_str);
657 vector<deque<string> >::iterator it(vect.begin());
658 advance(it, index % vect.size());
662 vect.erase(it)
    [all...]
  /external/ltrace/sysdeps/linux-gnu/x86/
arch.h 25 #include "vect.h"
39 struct vect plt_map;
  /external/opencv3/modules/imgproc/src/
rotcalipers.cpp 100 Point2f* vect = (Point2f*)(inv_vect_length + n); local
139 vect[i].x = (float)dx;
140 vect[i].y = (float)dy;
148 double ax = vect[n-1].x;
149 double ay = vect[n-1].y;
153 double bx = vect[i].x;
154 double by = vect[i].y;
187 float dp0 = base_a * vect[seq[0]].x + base_b * vect[seq[0]].y;
188 float dp1 = -base_b * vect[seq[1]].x + base_a * vect[seq[1]].y
    [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...]
  /external/lzma/CPP/7zip/UI/FileManager/
SysIconUtils.cpp 117 static int FindInSorted_Attrib(const CRecordVector<CAttribIconPair> &vect, DWORD attrib, int &insertPos)
119 unsigned left = 0, right = vect.Size();
123 DWORD midAttrib = vect[mid].Attrib;
135 static int FindInSorted_Ext(const CObjectVector<CExtIconPair> &vect, const wchar_t *ext, int &insertPos)
137 unsigned left = 0, right = vect.Size();
141 int compare = MyStringCompareNoCase(ext, vect[mid].Ext);
  /system/update_engine/common/
utils.h 271 inline void HexDumpVector(const brillo::Blob& vect) {
272 HexDumpArray(vect.data(), vect.size());
285 bool VectorContainsValue(const std::vector<T>& vect, const T& value) {
286 return std::find(vect.begin(), vect.end(), value) != vect.end();
290 bool VectorIndexOf(const std::vector<T>& vect, const T& value,
292 typename std::vector<T>::const_iterator it = std::find(vect.begin(),
293 vect.end()
    [all...]
  /external/ltrace/sysdeps/linux-gnu/
hooks.c 35 #include "vect.h"
48 add_dir(struct vect *dirs, const char *str1, const char *str2)
61 struct vect *dirs = data;
82 static struct vect dirs;
155 struct vect v;
178 os_get_ltrace_conf_filenames(struct vect *retp)
  /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/opencv/ml/src/
_ml.h 69 #define CV_MAT_ELEM_FLAG( mat, type, comp, vect, tflag ) \
71 ? (CV_MAT_ELEM( mat, type, comp, vect )) \
72 : (CV_MAT_ELEM( mat, type, vect, comp )))

Completed in 402 milliseconds

1 2