HomeSort by relevance Sort by last modified time
    Searched refs:vec (Results 101 - 125 of 683) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
sparse_weight_vector.h 115 void LoadWeightVector(const SparseWeightVector<Key, Hash> &vec) {
117 w_.insert(vec.w_.begin(), vec.w_.end());
118 wmax_.insert(vec.wmax_.begin(), vec.wmax_.end());
119 wmin_.insert(vec.wmin_.begin(), vec.wmin_.end());
120 normalizer_ = vec.normalizer_;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
ipa-ref.h 55 vec<ipa_ref_t, va_gc> *references;
58 vec<ipa_ref_ptr> GTY((skip)) referring;
tree-ssa-sccvn.h 68 vec<tree> phiargs;
110 vec<vn_reference_op_s> operands;
203 void vn_reference_fold_indirect (vec<vn_reference_op_s> *,
205 void copy_reference_ops_from_ref (tree, vec<vn_reference_op_s> *);
206 void copy_reference_ops_from_call (gimple, vec<vn_reference_op_s> *);
208 vec<vn_reference_op_s> );
210 vec<vn_reference_op_s> ,
215 vec<vn_reference_op_s> ,
ipa-prop.h 24 #include "vec.h"
151 vec<ipa_agg_jf_item_t, va_gc> *items;
314 vec<ipa_param_descriptor_t> descriptors;
323 vec<tree> known_vals;
403 vec<ipa_jump_func_t, va_gc> *jump_functions;
433 extern vec<ipa_node_params_t> ipa_node_params_vector;
435 extern GTY(()) vec<ipa_agg_replacement_value_p, va_gc> *ipa_node_agg_replacements;
437 extern GTY(()) vec<ipa_edge_args_t, va_gc> *ipa_edge_args_vector;
504 vec<cgraph_edge_p> *new_edges);
508 vec<tree>
    [all...]
  /external/eigen/Eigen/src/Cholesky/
LLT_MKL.h 75 static typename MatrixType::Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
76 { return Eigen::internal::llt_rank_update_lower(mat, vec, sigma); } \
86 static typename MatrixType::Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
89 return llt_inplace<EIGTYPE, Lower>::rankUpdate(matt, vec.conjugate(), sigma); \
  /prebuilts/misc/common/swig/include/2.0.11/python/
std_multiset.i 30 static PyObject *from(const std::multiset<T>& vec) {
31 return traits_from_stdseq<std::multiset<T> >::from(vec);
  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
vector2.h 32 // Add |vec| to this vector. Works in-place.
33 void Add(const Vector2& vec) {
34 x_ += vec.x();
35 y_ += vec.y();
  /frameworks/native/libs/binder/
BufferedTextOutput.cpp 192 struct iovec vec; local
193 vec.iov_base = (void*)first;
194 vec.iov_len = lastLine-first;
195 //printf("Writing %d bytes of data!\n", vec.iov_len);
196 writeLines(vec, 1);
211 struct iovec vec; local
212 vec.iov_base = b->buffer;
213 vec.iov_len = b->bufferPos;
214 //printf("Writing %d bytes of data!\n", vec.iov_len);
215 writeLines(vec, 1)
252 struct iovec vec; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_fxt1.c 290 fxt1_bestcol (GLfloat vec[][MAX_COMP], GLint nv,
299 e += (vec[j][i] - input[i]) * (vec[j][i] - input[i]);
312 fxt1_worst (GLfloat vec[MAX_COMP],
321 e += (vec[i] - input[k][i]) * (vec[i] - input[k][i]);
364 fxt1_choose (GLfloat vec[][MAX_COMP], GLint nv,
375 vec[j][i] = input[m][i];
435 vec[j][i] = (GLfloat)input[hist[j].idx][i];
440 vec[j][i] = vec[0][i]
564 GLfloat vec[MAX_VECT][MAX_COMP]; local
606 GLfloat vec[MAX_VECT][MAX_COMP]; local
658 GLfloat vec[1 + 1 + 1][MAX_COMP]; \/* 1.5 extrema for each sub-block *\/ local
891 GLubyte vec[2 * 2][MAX_COMP]; \/* 2 extrema for each sub-block *\/ local
1029 GLubyte vec[2 * 2][MAX_COMP]; \/* 2 extrema for each sub-block *\/ local
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress_fxt1.c 290 fxt1_bestcol (GLfloat vec[][MAX_COMP], GLint nv,
299 e += (vec[j][i] - input[i]) * (vec[j][i] - input[i]);
312 fxt1_worst (GLfloat vec[MAX_COMP],
321 e += (vec[i] - input[k][i]) * (vec[i] - input[k][i]);
364 fxt1_choose (GLfloat vec[][MAX_COMP], GLint nv,
375 vec[j][i] = input[m][i];
435 vec[j][i] = (GLfloat)input[hist[j].idx][i];
440 vec[j][i] = vec[0][i]
564 GLfloat vec[MAX_VECT][MAX_COMP]; local
606 GLfloat vec[MAX_VECT][MAX_COMP]; local
658 GLfloat vec[1 + 1 + 1][MAX_COMP]; \/* 1.5 extrema for each sub-block *\/ local
891 GLubyte vec[2 * 2][MAX_COMP]; \/* 2 extrema for each sub-block *\/ local
1029 GLubyte vec[2 * 2][MAX_COMP]; \/* 2 extrema for each sub-block *\/ local
    [all...]
  /ndk/sources/host-tools/make-3.81/
hash.c 181 void **vec = ht->ht_vec; local
182 void **end = &vec[ht->ht_size];
183 for (; vec < end; vec++)
185 void *item = *vec;
188 *vec = 0;
197 void **vec = ht->ht_vec; local
198 void **end = &vec[ht->ht_size];
199 for (; vec < end; vec++
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftoutln.c 153 FT_Vector vec; local
156 vec.x = SCALED( point->x );
157 vec.y = SCALED( point->y );
160 vec.x / 64.0, vec.y / 64.0 ));
161 error = func_interface->line_to( &vec, user );
174 FT_Vector vec; local
182 vec.x = SCALED( point->x );
183 vec.y = SCALED( point->y );
189 vec.x / 64.0, vec.y / 64.0
242 FT_Vector vec; local
485 FT_Vector* vec = outline->points; local
523 FT_Vector* vec; local
706 FT_Vector* vec; local
    [all...]
  /external/freetype/src/base/
ftoutln.c 153 FT_Vector vec; local
156 vec.x = SCALED( point->x );
157 vec.y = SCALED( point->y );
160 vec.x / 64.0, vec.y / 64.0 ));
161 error = func_interface->line_to( &vec, user );
174 FT_Vector vec; local
182 vec.x = SCALED( point->x );
183 vec.y = SCALED( point->y );
189 vec.x / 64.0, vec.y / 64.0
242 FT_Vector vec; local
485 FT_Vector* vec = outline->points; local
523 FT_Vector* vec; local
708 FT_Vector* vec; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftoutln.c 153 FT_Vector vec; local
156 vec.x = SCALED( point->x );
157 vec.y = SCALED( point->y );
160 vec.x / 64.0, vec.y / 64.0 ));
161 error = func_interface->line_to( &vec, user );
174 FT_Vector vec; local
182 vec.x = SCALED( point->x );
183 vec.y = SCALED( point->y );
189 vec.x / 64.0, vec.y / 64.0
242 FT_Vector vec; local
485 FT_Vector* vec = outline->points; local
523 FT_Vector* vec; local
706 FT_Vector* vec; local
    [all...]
  /external/chromium_org/third_party/freetype/src/smooth/
ftsmooth.c 275 FT_Vector* vec; local
279 for ( vec = points; vec < points_end; vec++ )
280 vec->x *= 3;
283 for ( vec = points; vec < points_end; vec++ )
284 vec->y *= 3;
294 FT_Vector* vec; local
    [all...]
  /external/freetype/src/smooth/
ftsmooth.c 275 FT_Vector* vec; local
279 for ( vec = points; vec < points_end; vec++ )
280 vec->x *= 3;
283 for ( vec = points; vec < points_end; vec++ )
284 vec->y *= 3;
294 FT_Vector* vec; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/smooth/
ftsmooth.c 275 FT_Vector* vec; local
279 for ( vec = points; vec < points_end; vec++ )
280 vec->x *= 3;
283 for ( vec = points; vec < points_end; vec++ )
284 vec->y *= 3;
294 FT_Vector* vec; local
    [all...]
  /external/bzip2/
huffman.c 158 Int32 n, vec, i; local
160 vec = 0;
163 if (length[i] == n) { code[i] = vec; vec++; };
164 vec <<= 1;
178 Int32 pp, i, j, vec; local
191 vec = 0;
194 vec += (base[i+1] - base[i]);
195 limit[i] = vec-1;
196 vec <<= 1
    [all...]
  /external/chromium_org/v8/test/cctest/
test-utils.cc 240 std::vector<int> vec{11, 22, 33, 44};
242 std::vector<int> vec; local
243 vec.push_back(11);
244 vec.push_back(22);
245 vec.push_back(33);
246 vec.push_back(44);
248 vec.push_back(55);
249 vec.push_back(66);
250 for (auto& i : vec) {
254 for (auto i : vec) {
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc 70 std::vector<void *> vec; local
73 if (vec.empty()) continue;
74 size_t idx = my_rand_r(&seed) % vec.size();
75 void *ptr = vec[idx];
76 vec[idx] = vec.back();
77 vec.pop_back();
90 vec.push_back(ptr);
96 for (size_t i = 0; i < vec.size(); i++)
97 __asan::asan_free(vec[i], &stack3, __asan::FROM_MALLOC)
    [all...]
  /system/core/libsysutils/src/
SocketClient.cpp 93 struct iovec vec[2]; local
94 vec[0].iov_base = (void *) buf;
95 vec[0].iov_len = sizeof(buf);
96 vec[1].iov_base = (void *) data;
97 vec[1].iov_len = len;
100 int result = sendDataLockedv(vec, (len > 0) ? 2 : 1);
153 struct iovec vec[1]; local
154 vec[0].iov_base = (void *) data;
155 vec[0].iov_len = len;
158 int rc = sendDataLockedv(vec, 1)
    [all...]
  /external/chromium_org/third_party/re2/util/
pcre.cc 186 int vec[kVecSize]; local
187 return re.DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize);
229 int vec[kVecSize]; local
230 return re.DoMatchImpl(text, UNANCHORED, &consumed, args, n, vec, kVecSize);
272 int vec[kVecSize]; local
274 args, n, vec, kVecSize)) {
321 int vec[kVecSize]; local
323 args, n, vec, kVecSize)) {
334 int vec[kVecSize]; local
335 int matches = pattern.TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize)
353 int vec[kVecSize]; local
409 int vec[kVecSize]; local
605 int *vec = new int[vecsize]; local
    [all...]
  /external/pcre/dist/
pcrecpp.cc 190 int vec[kVecSize]; local
191 return DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize);
232 int vec[kVecSize]; local
233 return DoMatchImpl(text, UNANCHORED, &consumed, args, n, vec, kVecSize);
274 int vec[kVecSize]; local
276 args, n, vec, kVecSize)) {
322 int vec[kVecSize]; local
324 args, n, vec, kVecSize)) {
334 int vec[kVecSize]; local
335 int matches = TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize)
384 int vec[kVecSize]; local
458 int vec[kVecSize]; local
609 int* vec = vecsize <= 21 ? space : new int[vecsize]; local
    [all...]
  /external/regex-re2/util/
pcre.cc 181 int vec[kVecSize]; local
182 return re.DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize);
224 int vec[kVecSize]; local
225 return re.DoMatchImpl(text, UNANCHORED, &consumed, args, n, vec, kVecSize);
267 int vec[kVecSize]; local
269 args, n, vec, kVecSize)) {
316 int vec[kVecSize]; local
318 args, n, vec, kVecSize)) {
329 int vec[kVecSize]; local
330 int matches = pattern.TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize)
348 int vec[kVecSize]; local
404 int vec[kVecSize]; local
600 int *vec = new int[vecsize]; local
    [all...]
  /bootable/recovery/
fuse_sideload.c 99 struct iovec vec[2]; local
106 vec[0].iov_base = &hdr;
107 vec[0].iov_len = sizeof(hdr);
108 vec[1].iov_base = data;
109 vec[1].iov_len = len;
111 res = writev(fd->ffd, vec, 2);
271 struct iovec vec[3]; local
294 vec[0].iov_base = &outhdr;
295 vec[0].iov_len = sizeof(outhdr);
317 vec[1].iov_base = fd->block_data + block_offset
    [all...]

Completed in 705 milliseconds

1 2 3 45 6 7 8 91011>>