HomeSort by relevance Sort by last modified time
    Searched defs:vec (Results 76 - 100 of 117) sorted by null

1 2 34 5

  /external/valgrind/main/coregrind/m_syswrap/
syswrap-aix5.c 1581 struct vki_iovec * vec; local
1606 struct vki_iovec * vec = (struct vki_iovec *)ARG2; local
    [all...]
syswrap-linux.c 1457 struct vki_iovec * vec = (struct vki_iovec *)(Addr)cb->aio_buf; local
3313 struct vki_iovec * vec; local
3351 struct vki_iovec * vec = (struct vki_iovec *)ARG2; local
3368 struct vki_iovec * vec; local
    [all...]
  /system/core/liblog/
fake_log_device.c 449 struct iovec* vec = stackVec; local
457 vec = (struct iovec*)malloc(sizeof(struct iovec)*numVecs);
458 if (vec == NULL) {
462 vec = stackVec;
470 struct iovec* v = vec;
512 int cc = writev(fileno(stderr), vec, v-vec);
530 if (vec != stackVec)
531 free(vec);
  /system/core/sdcard/
sdcard.c 484 struct iovec vec[2]; local
491 vec[0].iov_base = &hdr;
492 vec[0].iov_len = sizeof(hdr);
493 vec[1].iov_base = data;
494 vec[1].iov_len = len;
496 res = writev(fuse->fd, vec, 2);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
RFC3280CertPathUtilities.java 131 ASN1EncodableVector vec = new ASN1EncodableVector(); local
139 vec.add((DEREncodable)e.nextElement());
146 vec.add(dpName.getName());
147 names.add(new GeneralName(X509Name.getInstance(new DERSequence(vec))));
183 ASN1EncodableVector vec = new ASN1EncodableVector(); local
186 vec.add((DEREncodable)e.nextElement());
188 vec.add(dpName.getName());
189 genNames[j] = new GeneralName(new X509Name(new DERSequence(vec)));
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 559 UsesVec *&vec = V.first; local
560 if (!vec)
561 vec = new UsesVec();
583 UsesVec *vec = V.first; local
589 if (!vec->empty() && hasSelfInit)
596 std::sort(vec->begin(), vec->end(), SLocSort());
598 for (UsesVec::iterator vi = vec->begin(), ve = vec->end(); vi != ve;
609 delete vec;
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 1188 FT_Vector* vec = glyph->outline->points; local
1193 for ( ; count > 0; count--, point++, vec++ )
1224 FT_Vector* vec = glyph->outline->points; local
1324 FT_Vector* vec = outline->points; local
    [all...]
  /external/freetype/src/truetype/
ttgload.c 346 FT_Vector *vec, *vec_limit; local
470 vec = outline->points;
471 vec_limit = vec + n_points;
478 for ( ; vec < vec_limit; vec++, flag++ )
502 vec->x = x;
509 vec = gloader->current.outline.points;
510 vec_limit = vec + n_points;
514 for ( ; vec < vec_limit; vec++, flag++
898 FT_Vector* vec = outline->points; local
    [all...]
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp 525 llvm::Value* vec; local
526 vec = llvm::UndefValue::get(ops[vecidx]->getType());
528 vec = bld.CreateInsertElement(vec, ops[scaidx], llvm_int(i), "sca2vec");
529 ops[scaidx] = vec;
630 llvm::Value * value = bld.CreateExtractValue(ops[1], i, "vec*mat_col");
632 vector = bld.CreateInsertElement(vector, value, llvm_int(i), "vec*mat_res");
1179 llvm::Constant* vec; local
    [all...]
  /external/opencv/cv/src/
cvsurf.cpp 363 float* vec; local
483 vec = (float*)cvGetSeqElem( descriptors, k );
484 for( kk = 0; kk < (int)(descriptors->elem_size/sizeof(vec[0])); kk++ )
485 vec[kk] = 0;
499 vec[0] += tx;
500 vec[1] += (float)fabs(tx);
502 vec[2] += tx;
503 vec[3] += (float)fabs(tx);
507 vec[4] += ty;
508 vec[5] += (float)fabs(ty)
    [all...]
  /external/qemu/target-i386/
helper.c 1534 uint32_t vec[4]; local
    [all...]
  /external/quake/quake/src/QW/client/
gl_rsurf.c 1489 float *vec; local
1514 vec = r_pcurrentvertbase[r_pedge->v[0]].position;
1519 vec = r_pcurrentvertbase[r_pedge->v[1]].position;
1521 s = DotProduct (vec, fa->texinfo->vecs[0]) + fa->texinfo->vecs[0][3];
1524 t = DotProduct (vec, fa->texinfo->vecs[1]) + fa->texinfo->vecs[1][3];
1527 VectorCopy (vec, poly->verts[i]);
1534 s = DotProduct (vec, fa->texinfo->vecs[0]) + fa->texinfo->vecs[0][3];
1540 t = DotProduct (vec, fa->texinfo->vecs[1]) + fa->texinfo->vecs[1][3];
    [all...]
gl_warp.c 152 float *vec; local
165 vec = loadmodel->vertexes[loadmodel->edges[lindex].v[0]].position;
167 vec = loadmodel->vertexes[loadmodel->edges[-lindex].v[1]].position;
168 VectorCopy (vec, verts[numverts]);
  /external/quake/quake/src/WinQuake/
gl_rsurf.cpp 1563 float *vec; local
    [all...]
gl_warp.cpp 152 float *vec; local
166 vec = loadmodel->vertexes[loadmodel->edges[lindex].v[0]].position;
168 vec = loadmodel->vertexes[loadmodel->edges[-lindex].v[1]].position;
169 VectorCopy (vec, verts[numverts]);
330 float *vec; local
  /external/skia/src/core/
SkPath.cpp 1442 SkVector vec = pt - fCurrPt; local
    [all...]
SkMatrix.cpp 1082 SkVector vec[2]; local
    [all...]
  /external/valgrind/main/VEX/priv/
ir_defs.c 1417 IRExpr** vec = LibVEX_Alloc(1 * sizeof(IRExpr*)); local
1422 IRExpr** vec = LibVEX_Alloc(2 * sizeof(IRExpr*)); local
1428 IRExpr** vec = LibVEX_Alloc(3 * sizeof(IRExpr*)); local
1435 IRExpr** vec = LibVEX_Alloc(4 * sizeof(IRExpr*)); local
1444 IRExpr** vec = LibVEX_Alloc(5 * sizeof(IRExpr*)); local
1454 IRExpr** vec = LibVEX_Alloc(6 * sizeof(IRExpr*)); local
1465 IRExpr** vec = LibVEX_Alloc(7 * sizeof(IRExpr*)); local
1478 IRExpr** vec = LibVEX_Alloc(8 * sizeof(IRExpr*)); local
1492 IRExpr** vec = LibVEX_Alloc(9 * sizeof(IRExpr*)); local
    [all...]
host_amd64_isel.c 1588 HReg vec = iselVecExpr(env, e->Iex.Unop.arg); local
1600 HReg vec = iselVecExpr(env, e->Iex.Unop.arg); local
3818 HReg vec = iselVecExpr(env, stmt->Ist.Put.data); local
    [all...]
host_x86_isel.c 1239 HReg vec = iselVecExpr(env, e->Iex.Unop.arg); local
2511 HReg vec = iselVecExpr(env, e->Iex.Unop.arg); local
3714 HReg vec = iselVecExpr(env, stmt->Ist.Put.data); local
    [all...]
  /dalvik/vm/
Debugger.cpp 2955 struct iovec vec[1] = { {(void*)buf, len} }; local
    [all...]
  /external/freetype/src/base/
ftstroke.c 439 FT_Vector* vec = border->points + border->num_points; local
443 vec[0] = *to;
467 FT_Vector* vec = border->points + border->num_points; local
471 vec[0] = *control;
472 vec[1] = *to;
500 FT_Vector* vec = border->points + border->num_points; local
504 vec[0] = *control1;
505 vec[1] = *control2;
506 vec[2] = *to;
2133 FT_Vector vec; local
2152 FT_Vector vec; local
2204 FT_Vector vec; local
    [all...]
  /external/freetype/src/cff/
cffgload.c 2934 FT_Vector* vec = cur->points; local
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 417 FT_Vector* vec = outline->points; local
418 FT_Vector* limit = vec + outline->n_points;
428 ras.min_ex = ras.max_ex = vec->x;
429 ras.min_ey = ras.max_ey = vec->y;
431 vec++;
433 for ( ; vec < limit; vec++ )
435 TPos x = vec->x;
436 TPos y = vec->y;
1536 FT_Vector vec; local
1557 FT_Vector vec; local
1625 FT_Vector vec; local
    [all...]
  /external/qemu/target-arm/
neon_helper.c 1683 neon_s8 vec; local
1703 neon_s8 vec; local
1723 neon_s16 vec; local
1741 neon_s16 vec; local
    [all...]

Completed in 1390 milliseconds

1 2 34 5