HomeSort by relevance Sort by last modified time
    Searched defs:nc (Results 26 - 50 of 172) sorted by null

12 3 4 5 6 7

  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationInfo.java 174 String nc = Integer.toHexString(nonceCount); local
177 nc = base.substring(0, 8 - nc.length()) + nc;
178 this.setParameter(ParameterNames.NC, nc);
  /frameworks/av/tools/resampler_tools/
fir.cpp 79 // nc is the number of bits to store the coefficients
80 const int nc = 32; local
95 // 2^nz >= 2^(nc/2)
217 printf("const int32_t RESAMPLE_FIR_COEF_BITS = %d;\n", nc);
237 int64_t yi = floor(y * ((1ULL<<(nc-1))) + 0.5);
238 if (yi >= (1LL<<(nc-1))) yi = (1LL<<(nc-1))-1;
257 int64_t yi = floor(y * ((1ULL<<(nc-1))) + 0.5);
258 if (yi >= (1LL<<(nc-1))) yi = (1LL<<(nc-1))-1
    [all...]
  /cts/suite/pts/deviceTests/opengl/jni/graphics/
Matrix.cpp 296 float nc = 1.0f - c; local
303 d[0] = x * x * nc + c;
304 d[4] = xy * nc - zs;
305 d[8] = zx * nc + ys;
306 d[1] = xy * nc + zs;
307 d[5] = y * y * nc + c;
308 d[9] = yz * nc - xs;
309 d[2] = zx * nc - ys;
310 d[6] = yz * nc + xs;
311 d[10] = z * z * nc + c
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTreeAdaptor.java 146 int nc = newRootTree.getChildCount(); local
147 if ( nc==1 ) newRootTree = (Tree)newRootTree.getChild(0);
148 else if ( nc >1 ) {
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
JndiLoginModuleTest.java 297 NameCallback nc = (NameCallback) callbacks[i]; local
298 nc.setName("leo");
315 NameCallback nc = (NameCallback) callbacks[i]; local
316 nc.setName("leo");
LdapLoginModuleTest.java 302 NameCallback nc = (NameCallback)callbacks[i]; local
303 nc.setName("leo");
322 NameCallback nc = (NameCallback)callbacks[i]; local
323 nc.setName("leo");
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_vbo.c 40 const unsigned nc = util_format_get_nr_components(ve->src_format); local
51 switch (nc) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_vbo.c 141 const unsigned nc = util_format_get_nr_components(ve->src_format); local
147 switch (nc) {
  /external/chromium_org/third_party/opus/src/celt/
cwrs.c 611 opus_uint32 nc; local
614 i=icwrs(_n,_k,&nc,_y,u);
615 ec_enc_uint(_enc,i,nc);
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular.h 67 Index nc = size; // cache block size along the N direction local
68 computeProductBlockingSizes<LhsScalar,RhsScalar>(kc, mc, nc);
  /external/icu4c/test/intltest/
regiontst.cpp 233 { "NC" , 540, "054", URGN_TERRITORY, "009" },
382 int32_t nc = rd.numeric; local
383 if ( nc > 0 ) {
384 const Region *ncRegion = Region::getInstance(nc,status);
385 if ( *ncRegion != *r && nc != 891 ) { // 891 is special case - CS and YU both deprecated codes for region 891
  /external/jpeg/
jccolor.c 349 int nc = cinfo->num_components; local
353 if (1 == num_rows && 3 == nc && num_cols > 0) {
390 for (ci = 0; ci < nc; ci++) {
395 inptr += nc;
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_vbo.c 40 const unsigned nc = util_format_get_nr_components(ve->src_format); local
51 switch (nc) {
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_vbo.c 141 const unsigned nc = util_format_get_nr_components(ve->src_format); local
147 switch (nc) {
  /external/qemu/distrib/jpeg-6b/
jccolor.c 442 int nc = cinfo->num_components; local
446 if (1 == num_rows && 3 == nc && num_cols > 0) {
483 for (ci = 0; ci < nc; ci++) {
488 inptr += nc;
  /external/valgrind/main/coregrind/
m_debuglog.c 586 Int i, nc = 0; local
604 0 == (ind-nc) % 3 && 0 != ind)
607 nc++;
  /external/webrtc/src/modules/audio_processing/utility/
fft4g.c 290 static void makect(int nc, int *ip, float *c);
297 static void rftfsub(int n, float *a, int nc, float *c);
298 static void rftbsub(int n, float *a, int nc, float *c);
300 static void dctsub(int n, float *a, int nc, float *c)
301 static void dstsub(int n, float *a, int nc, float *c)
326 int nw, nc; local
334 nc = ip[1];
335 if (n > (nc << 2)) {
336 nc = n >> 2;
337 makect(nc, ip, w + nw)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_macroblock_layer.c 518 OMX_INT nc; local
533 nc = (OMX_INT)DetermineNc(pMb, 0, pResidual->totalCoeff);
540 nc,
548 nc,
567 nc = (OMX_INT)DetermineNc(pMb,blockIndex,pResidual->totalCoeff);
576 nc,
584 nc,
596 nc,
604 nc,
662 nc = (OMX_INT)DetermineNc(pMb, blockIndex, pResidual->totalCoeff)
706 i32 nc; local
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Matrix3f.java 129 float nc = 1.0f - c; local
136 mMat[0] = x*x*nc + c;
137 mMat[3] = xy*nc - zs;
138 mMat[6] = zx*nc + ys;
139 mMat[1] = xy*nc + zs;
140 mMat[4] = y*y*nc + c;
141 mMat[7] = yz*nc - xs;
142 mMat[2] = zx*nc - ys;
143 mMat[5] = yz*nc + xs;
144 mMat[8] = z*z*nc + c
    [all...]
  /frameworks/base/libs/hwui/
Matrix.cpp 327 const float nc = 1.0f - c; local
335 data[kScaleX] = x * x * nc + c;
336 data[kSkewX] = xy * nc - zs;
337 data[8] = zx * nc + ys;
338 data[kSkewY] = xy * nc + zs;
339 data[kScaleY] = y * y * nc + c;
340 data[9] = yz * nc - xs;
341 data[2] = zx * nc - ys;
342 data[6] = yz * nc + xs;
343 data[kScaleZ] = z * z * nc + c
    [all...]
  /frameworks/native/include/ui/
mat4.h 314 T nc = 1 - c; local
321 r[ 0] = x*x*nc + c; r[ 4] = xy*nc - zs; r[ 8] = zx*nc + ys;
322 r[ 1] = xy*nc + zs; r[ 5] = y*y*nc + c; r[ 9] = yz*nc - xs;
323 r[ 2] = zx*nc - ys; r[ 6] = yz*nc + xs; r[10] = z*z*nc + c
    [all...]
  /frameworks/rs/
rsMatrix4x4.cpp 220 const float nc = 1.0f - c; local
227 m[ 0] = x*x*nc + c;
228 m[ 4] = xy*nc - zs;
229 m[ 8] = zx*nc + ys;
230 m[ 1] = xy*nc + zs;
231 m[ 5] = y*y*nc + c;
232 m[ 9] = yz*nc - xs;
233 m[ 2] = zx*nc - ys;
234 m[ 6] = yz*nc + xs;
235 m[10] = z*z*nc + c
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix3f.java 129 float nc = 1.0f - c; local
136 mMat[0] = x*x*nc + c;
137 mMat[3] = xy*nc - zs;
138 mMat[6] = zx*nc + ys;
139 mMat[1] = xy*nc + zs;
140 mMat[4] = y*y*nc + c;
141 mMat[7] = yz*nc - xs;
142 mMat[2] = zx*nc - ys;
143 mMat[5] = yz*nc + xs;
144 mMat[8] = z*z*nc + c
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherOutputStream1Test.java 151 NullCipher nc = new NullCipher(); local
152 CipherOutputStream stream1 = new CipherOutputStream(new BufferedOutputStream((OutputStream) null), nc);
154 CipherOutputStream stream3 = new CipherOutputStream(stream2, nc);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
debug.cpp 145 size_t nc = __next_prime(2*static_cast<size_t>(__cend_ - __cbeg_) + 1); local
146 __c_node** cbeg = static_cast<__c_node**>(calloc(nc, sizeof(void*)));
158 size_t h = hash<void*>()(q->__c_) % nc;
167 __cend_ = __cbeg_ + nc;
408 size_t nc = 2*static_cast<size_t>(cap_ - beg_); local
409 if (nc == 0)
410 nc = 1;
412 static_cast<__i_node**>(malloc(nc * sizeof(__i_node*)));
419 if (nc > 1)
420 memcpy(beg, beg_, nc/2*sizeof(__i_node*))
437 size_t nc = __next_prime(2*static_cast<size_t>(__iend_ - __ibeg_) + 1); local
    [all...]

Completed in 2610 milliseconds

12 3 4 5 6 7