/external/python/cpython3/Lib/ |
pstats.py | 141 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 142 self.total_calls += nc 246 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 247 stats_list.append((cc, nc, tt, ct) + func + 266 for func, (cc, nc, tt, ct, callers) in oldstats.items(): 277 (cc, nc, tt, ct, newcallers)) 279 newstats[newfunc] = (cc, nc, tt, ct, newcallers) 295 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 403 cc, nc, tt, ct, callers = self.stats[func] 413 for cc, nc, tt, ct, callers in self.stats.values() [all...] |
/cts/tests/openglperf2/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/libjpeg-turbo/ |
jquant1.c | 192 int nc = cinfo->out_color_components; /* number of color components */ local 202 /* We can allocate at least the nc'th root of max_colors per component. */ 203 /* Compute floor(nc'th root of max_colors). */ 207 temp = iroot; /* set temp = iroot ** nc */ 208 for (i = 1; i < nc; i++) 219 for (i = 0; i < nc; i++) { 231 for (i = 0; i < nc; i++) { 474 register int nc = cinfo->out_color_components; local 481 for (ci = 0; ci < nc; ci++) { 529 int nc = cinfo->out_color_components local 630 int nc = cinfo->out_color_components; local [all...] |
turbojpeg-jni.c | 324 int nc = (subsamp == org_libjpegturbo_turbojpeg_TJ_SAMP_GRAY ? 1 : 3), i; local 333 if ((*env)->GetArrayLength(env, srcobjs) < nc) 335 if ((*env)->GetArrayLength(env, jSrcOffsets) < nc) 337 if ((*env)->GetArrayLength(env, jSrcStrides) < nc) 348 for (i = 0; i < nc; i++) { 377 for (i = 0; i < nc; i++) { 399 int nc = (subsamp == org_libjpegturbo_turbojpeg_TJ_SAMP_GRAY ? 1 : 3), i; local 411 if ((*env)->GetArrayLength(env, dstobjs) < nc) 413 if ((*env)->GetArrayLength(env, jDstOffsets) < nc) 415 if ((*env)->GetArrayLength(env, jDstStrides) < nc) 757 int nc = 0, i, width, height, scaledWidth, scaledHeight, nsf = 0; local 878 int nc = (subsamp == org_libjpegturbo_turbojpeg_TJ_SAMP_GRAY ? 1 : 3), i; local [all...] |
/external/eigen/Eigen/src/Core/products/ |
GeneralMatrixMatrix.h | 76 Index nc = (std::min)(cols,blocking.nc()); // cache block size along the N direction local 92 std::size_t sizeB = kc*nc; 102 pack_rhs(blockB, rhs.getSubMapper(k,0), actual_kc, nc); 131 gebp(res.getSubMapper(info[i].lhs_start, 0), blockA+info[i].lhs_start*actual_kc, blockB, info[i].lhs_length, actual_kc, nc, alpha); 135 for(Index j=nc; j<cols; j+=nc) 137 const Index actual_nc = (std::min)(j+nc,cols)-j; 159 std::size_t sizeB = kc*nc; 164 const bool pack_rhs_once = mc!=rows && kc==depth && nc==cols 266 inline Index nc() const { return m_nc; } function in class:Eigen::internal::level3_blocking [all...] |
/bionic/libc/bionic/ |
ifaddrs.cpp | 241 NetlinkConnection nc; local 242 bool okay = nc.SendRequest(RTM_GETLINK) && nc.ReadResponses(__getifaddrs_callback, out) && 243 nc.SendRequest(RTM_GETADDR) && nc.ReadResponses(__getifaddrs_callback, out);
|
net_if.cpp | 121 NetlinkConnection nc; local 122 bool okay = nc.SendRequest(RTM_GETLINK) && nc.ReadResponses(__if_nameindex_callback, &list);
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
AuthenticationHeader.java | 70 public static final String NC = ParameterNames.NC; 437 return this.getParameterAsHexInt(ParameterNames.NC); 449 String nc = Integer.toHexString(param); local 452 nc = base.substring(0, 8 - nc.length()) + nc; 453 this.setParameter(ParameterNames.NC, nc);
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
BaseTreeAdaptor.js | 107 var nc = newRootTree.getChildCount(); 108 if (nc===1) { 110 } else if ( nc>1 ) {
|
/external/tensorflow/tensorflow/tools/test/ |
system_info_lib.py | 84 nc = re.search(r'(?m)^Cpus_allowed:\s*(.*)$', fh.read()) 85 if nc: # e.g. 'ff' => 8, 'fff' => 12 87 bin(int(nc.group(1).replace(',', ''), 16)).count('1'))
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
templates.cpp | 107 void double_capture(T &nc) { 110 T nc2(nc);
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
RoundRectangle.java | 324 int nc = 0; local 327 coords[nc++] = (float) (x + ctrls[i] * width + ctrls[i + 1] / 2d); 328 coords[nc++] = (float) (y + ctrls[i + 2] * height + ctrls[i + 3] / 2d); 331 at.transform(coords, 0, coords, 0, nc / 2); 341 int nc = 0; local 344 coords[nc++] = x + ctrls[i] * width + ctrls[i + 1] / 2d; 345 coords[nc++] = y + ctrls[i + 2] * height + ctrls[i + 3] / 2d; 348 at.transform(coords, 0, coords, 0, nc / 2);
|
/external/v8/tools/ |
draw_instruction_graph.sh | 64 nc=`grep -m1 '# counters=' $file | cut -d= -f2` 89 MAXCOL=$nc
|
/external/gflags/test/ |
CMakeLists.txt | 196 add_gflags_build_test (nc_sanity nc 0) 197 add_gflags_build_test (nc_swapped_args nc 1) 198 add_gflags_build_test (nc_int_instead_of_bool nc 1) 199 add_gflags_build_test (nc_bool_in_quotes nc 1) 200 add_gflags_build_test (nc_define_string_with_0 nc 1)
|
/external/apache-http/android/src/android/net/http/ |
RequestHandle.java | 323 // because we do not preemptively send authorization headers, nc is always 1 324 String nc = "00000001"; local 326 String digest = computeDigest(A1, A2, nonce, QOP, nc, cnonce); 344 response += ", qop=" + QOP + ", nc=" + nc + ", cnonce=" + doubleQuote(cnonce); 365 String A1, String A2, String nonce, String QOP, String nc, String cnonce) { 374 return KD(H(A1), nonce + ":" + nc + ":" + cnonce + ":" + QOP + ":" + H(A2));
|
/external/epid-sdk/epid/verifier/src/ |
verifybasic.c | 55 FfElement* nc = NULL; local 92 // nc, nsx, t3 (256-bit integers) are used. 122 res = NewFfElement(Fp, &nc); 213 // g. The verifier computes nc = (-c) mod p. 214 res = FfNeg(Fp, c, nc); 219 // i. The verifier computes R1 = G1.multiExp(B, sf, K, nc). 222 res = WriteFfElement(Fp, nc, &nc_str, sizeof(nc_str)); 234 // j. The verifier computes t1 = G2.multiExp(g2, nsx, w, nc). 311 DeleteFfElement(&nc);
|
/external/u-boot/drivers/net/ |
sni_ave.c | 734 int ret, nc, nr; local 758 for (nc = 0; nc < AVE_MAX_CLKS; nc++) { 759 name = priv->data->clock_names[nc]; 762 ret = clk_get_by_name(dev, name, &priv->clk[nc]); 813 while (--nc >= 0) 814 clk_free(&priv->clk[nc]); 823 int ret, nc, nr; local 839 for (nc = 0; nc < priv->nclks; nc++) [all...] |
/cts/hostsidetests/incident/src/com/android/server/cts/ |
JobSchedulerIncidentTest.java | 241 private static void testNetworkCapabilitesProto(NetworkCapabilitiesProto nc) throws Exception { 242 assertNotNull(nc); 244 for (NetworkCapabilitiesProto.Transport t : nc.getTransportsList()) { 248 for (NetworkCapabilitiesProto.NetCapability c : nc.getCapabilitiesList()) { 253 assertTrue(0 <= nc.getLinkUpBandwidthKbps()); 254 assertTrue(0 <= nc.getLinkDownBandwidthKbps());
|
/external/skia/modules/canvaskit/htmlcanvas/ |
color.js | 87 var nc = colorMap[colorStr]; 88 if (nc !== undefined) { 89 return nc;
|
/external/skqp/experimental/canvaskit/htmlcanvas/ |
color.js | 87 var nc = colorMap[colorStr]; 88 if (nc !== undefined) { 89 return nc;
|
/external/toybox/toys/net/ |
netstat.c | 175 struct num_cache *nc = get_num_cache(TT.inodes, inode); local 177 printf(" %s", nc ? nc->data : "-"); 217 struct num_cache *nc = get_num_cache(TT.inodes, inode); local 219 printf("%-19.19s", nc ? nc->data : "-");
|
/external/libxcam/modules/ocl/ |
cv_edgetaper.cpp | 60 int nc = image.cols / psf.cols + 1; local 63 cv::repeat (alpha, nr, nc, expanded);
|
/external/u-boot/arch/arm/include/asm/arch-fsl-layerscape/ |
soc.h | 54 #define CPU_TYPE_ENTRY(n, v, nc) \ 55 { .name = #n, .soc_ver = SVR_##v, .num_cores = (nc)}
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
RegionTest.java | 239 { "NC" , "540", "054", "TERRITORY", "009" }, 356 int nc = Integer.valueOf(rd[1]).intValue(); local 357 if ( nc > 0 ) { 358 Region ncRegion = Region.getInstance(nc); 359 if ( !ncRegion.equals(r) && nc != 891 ) { // 891 is special case - CS and YU both deprecated codes for region 891
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
RegionTest.java | 236 { "NC" , "540", "054", "TERRITORY", "009" }, 353 int nc = Integer.valueOf(rd[1]).intValue(); local 354 if ( nc > 0 ) { 355 Region ncRegion = Region.getInstance(nc); 356 if ( !ncRegion.equals(r) && nc != 891 ) { // 891 is special case - CS and YU both deprecated codes for region 891
|