HomeSort by relevance Sort by last modified time
    Searched refs:nc (Results 126 - 150 of 221) sorted by null

1 2 3 4 56 7 8 9

  /external/webrtc/webrtc/modules/audio_processing/test/
apmtest.m 101 opt = ['-ec 1 -agc 2 -nc 2 -vad 3'];
113 opt = ['-fs 32000 -ec 1 -agc 2 -nc 2'];
  /external/swiftshader/third_party/LLVM/lib/Support/
regcomp.c 183 (NC-1)*sizeof(cat_t));
204 g->csetsize = NC;
217 (void) memset((char *)g->catspace, 0, NC*sizeof(cat_t));
1033 size_t nc; local
1043 nc = p->ncsalloc;
1044 assert(nc % CHAR_BIT == 0);
1045 nbytes = nc / CHAR_BIT * css;
1047 ptr = (cset *)realloc((char *)p->g->sets, nc * sizeof(cset));
    [all...]
APInt.cpp     [all...]
  /external/u-boot/arch/powerpc/include/asm/
processor.h     [all...]
  /external/libjpeg-turbo/
turbojpeg.c 530 int retval = 0, nc, i; local
535 nc = (subsamp == TJSAMP_GRAY ? 1 : 3);
536 for (i = 0; i < nc; i++) {
562 int pw, nc, retval = 0; local
566 nc = (subsamp == TJSAMP_GRAY ? 1 : 3);
567 if (componentID < 0 || componentID >= nc)
583 int ph, nc, retval = 0; local
587 nc = (subsamp == TJSAMP_GRAY ? 1 : 3);
588 if (componentID < 0 || componentID >= nc)
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 265 g = malloc(sizeof(struct re_guts) + (NC - 1) * sizeof(cat_t));
286 g->csetsize = NC;
299 (void) memset((char *)g->catspace, 0, NC*sizeof(cat_t));
1237 size_t nc; local
1250 nc = p->ncsalloc;
1251 assert(nc % CHAR_BIT == 0);
1252 nbytes = nc / CHAR_BIT * css;
1255 if (reallocarr(&p->g->sets, nc, sizeof(cset)))
1258 if (reallocarr(&p->g->setbits, nc / CHAR_BIT, css)) {
    [all...]
  /external/curl/lib/
http.c 3581 int nc = 0; local
    [all...]
rtsp.c 786 int nc = sscanf(&header[4], ": %ld", &CSeq); local
787 if(nc == 1) {
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathContext.java 765 * @param nc the namespace context (prefix resolver.
767 public final void pushExpressionState(int cn, int en, PrefixResolver nc)
771 m_prefixResolvers.push(nc);
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_purp.c 543 x->nc = X509_get_ext_d2i(x, NID_name_constraints, &j, NULL);
544 if (!x->nc && (j != -1))
  /external/eigen/bench/
bench_gemm.cpp 217 std::ptrdiff_t mc(m), nc(n), kc(p);
218 internal::computeProductBlockingSizes<Scalar,Scalar>(kc, mc, nc);
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_vbo.c 41 const unsigned nc = util_format_get_nr_components(ve->src_format); local
54 switch (nc) {
  /cts/tests/tests/net/src/android/net/cts/
ConnectivityManagerTest.java 634 public void onCapabilitiesChanged(Network network, NetworkCapabilities nc) {
635 final boolean metered = !nc.hasCapability(NET_CAPABILITY_NOT_METERED);
854 final NetworkCapabilities nc = mCm.getNetworkCapabilities(network); local
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/tool/
ShowLocaleCoverage.java 396 char nc = locale.charAt(0); local
397 if (nc != c) {
399 c = nc;
401 if (DEBUG_FILTER != 0 && DEBUG_FILTER != nc) {
    [all...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
ZipFile.java     [all...]
  /external/dng_sdk/source/
dng_string.cpp 1829 char nc = sPtr [0]; local
    [all...]
  /external/eigen/test/
product_extra.cpp 250 Index mc(m), nc(n), kc(k);
251 internal::computeProductBlockingSizes<T,T>(kc, mc, nc);
252 return kc+mc+nc;
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_transfer.c 117 int nc; member in struct:__anon33457
146 PUSH_DATA (push, (cpbs[dst->cpp].nc - 1) << 24 |
147 (cpbs[src->cpp].nc - 1) << 20 |
  /external/boringssl/src/crypto/poly1305/
poly1305_vec.c 721 uint64_t g0, g1, g2, c, nc; local
817 nc = ~c;
818 h0 = (h0 & nc) | (g0 & c);
819 h1 = (h1 & nc) | (g1 & c);
820 h2 = (h2 & nc) | (g2 & c);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
RFC3280CertPathUtilities.java 1681 NameConstraints nc = null; local
    [all...]
  /external/python/cpython2/Lib/test/
test_decimal.py 558 nc = copy.copy(getcontext())
559 nc.prec = 3
564 d = nc.create_decimal()
568 self.assertRaises(TypeError, nc.create_decimal, None)
571 d = nc.create_decimal(456)
573 self.assertEqual(nc.create_decimal(45678),
574 nc.create_decimal('457E+2'))
579 d = nc.create_decimal('456789')
584 self.assertEqual(str(nc.create_decimal('3.14\n')), 'NaN')
589 d = nc.create_decimal( (1, (4, 3, 4, 9, 1, 3, 5, 3, 4), -25)
    [all...]
  /cts/tests/app/src/android/app/cts/
NotificationManagerTest.java 166 for (NotificationChannel nc : channels) {
167 if (NotificationChannel.DEFAULT_CHANNEL_ID.equals(nc.getId())) {
170 mNotificationManager.deleteNotificationChannel(nc.getId());
949 compareChannels(channelMap.get(nc.getId()), nc); local
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 1470 APInt nc, delta, q1, r1, q2, r2; local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
APInt.cpp     [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 1444 APInt nc, delta, q1, r1, q2, r2; local
    [all...]

Completed in 1356 milliseconds

1 2 3 4 56 7 8 9