HomeSort by relevance Sort by last modified time
    Searched refs:tp (Results 251 - 275 of 599) sorted by null

<<11121314151617181920>>

  /external/slf4j/integration/lib/
slf4j-simple-1.6.6.jar 
  /external/tensorflow/tensorflow/contrib/metrics/python/ops/
metric_ops_large_test.py 57 # Since we use random values, we won't know the tp/fp/tn/fn values, but
58 # tp and fp at threshold 0 should be the total number of positive and
61 got_value = prdata.tp[0] + prdata.fp[0]
metric_ops.py 667 def compute_fnr(fn, tp, name):
669 math_ops.greater(fn + tp, 0), math_ops.div(fn, fn + tp), 0, name)
718 includes: Tuple of keys to return, from 'tp', 'fn', 'tn', fp'. If `None`,
732 all_includes = ('tp', 'fn', 'tn', 'fp')
    [all...]
  /external/libusb/libusb/os/
haiku_usb_raw.cpp 189 haiku_clock_gettime(int clkid, struct timespec *tp)
192 return clock_gettime(CLOCK_REALTIME, tp);
194 return clock_gettime(CLOCK_MONOTONIC, tp);
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/RISCV/
rv64i-valid.s 13 # CHECK-INST: lwu tp, -2048(t0)
66 # CHECK-INST: srliw tp, t0, 0
68 srliw tp, t0, 0
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_runtime_test.cc 104 tensorflow::EigenThreadPoolWrapper tp(&pool);
105 Eigen::ThreadPoolDevice device(&tp, tp.NumThreads());
  /external/tensorflow/tensorflow/core/common_runtime/
function_threadpool_test.cc 202 thread::ThreadPool* tp = new thread::ThreadPool(Env::Default(), "FLRTest", 1);
203 Init({test::function::BlockingOpFn(), test::function::XTimesTwo()}, tp);
248 delete tp;
  /external/pdfium/third_party/libtiff/
tif_dirinfo.c 894 TIFFField *tp; local
    [all...]
tif_print.c 691 const char* tp; local
697 for (tp = "\tt\bb\rr\nn\vv"; *tp; tp++)
698 if (*tp++ == *cp)
700 if (*tp)
701 fprintf(fd, "\\%c", *tp);
  /external/libcxx/src/filesystem/
filesystem_common.h 357 set_times_checked(TimeT* sec_out, SubSecT* subsec_out, FileTimeT tp) {
358 auto dur = tp.time_since_epoch();
374 FileTimeT tp) {
375 if (!is_representable(tp))
377 return set_times_checked(&dest.tv_sec, &dest.tv_nsec, tp);
  /bionic/libc/dns/nameser/
ns_name.c 1049 unsigned char *tp; local
1067 for (tp = *dst + 1; cp < end && tp < eom; cp++) {
1078 *tp++ = ((value << 4) & 0xff);
1106 *tp++ = value;
1114 if (cp >= end || tp >= eom)
1144 *dst = tp;
  /external/tensorflow/tensorflow/core/framework/
attr_value_util.cc 51 uint64 TensorProtoHash(const TensorProto& tp) {
52 Tensor tensor(tp.dtype());
53 bool success = tensor.FromProto(tp);
64 uint64 FastTensorProtoHash(const TensorProto& tp) {
65 if (TensorByteSize(tp) > kMaxAttrValueTensorByteSize) {
66 return DeterministicProtoHash64(tp);
68 return TensorProtoHash(tp);
  /external/boringssl/src/crypto/fipsmodule/bn/asm/
x86-mont.pl 54 $ap="esi"; $tp="esi"; # overlapping variables!!!
76 &add ("edi",2); # extra two words on top of tp
198 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[j-1]=
213 &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[num-2]=
219 &movq (&QWP($frame,"esp",$num,4),$car1); # tp[num].tp[num-1]
228 &movd ($temp,&DWP($frame,"esp")); # tp[0]
232 &paddq ($mul1,$temp); # +=tp[0]
242 &movd ($temp,&DWP($frame+4,"esp")); # tp[1]
248 &paddq ($car0,$temp); # +=tp[1
    [all...]
x86_64-mont5.pl 141 mov %rax,8(%rsp,$num,8) # tp[num+1]=%rsp
153 lea 24-112(%rsp,$num,8),%r10# place the mask after tp[num+3] (+ICache optimization)
247 imulq $lo0,$m1 # "tp[0]"*n0
267 mov $hi1,-16(%rsp,$j,8) # tp[j-1]
287 mov $hi1,-16(%rsp,$num,8) # tp[num-1]
336 add %rax,$lo0 # ap[0]*bp[i]+tp[0]
340 imulq $lo0,$m1 # tp[0]*n0
347 mov 8(%rsp),$lo0 # tp[1]
358 add $lo0,$hi1 # np[j]*m1+ap[j]*bp[i]+tp[j]
361 mov $hi1,-16(%rsp,$j,8) # tp[j-1
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodeframe.c 326 MACROBLOCK *x, MACROBLOCKD *xd, TOKENEXTRA **tp,
369 cpi->tplist[mb_row].start = *tp;
390 *tp = cpi->tok;
453 *totalrate += vp8cx_encode_intra_macroblock(cpi, x, tp);
459 cpi, x, tp, recon_yoffset, recon_uvoffset, mb_row, mb_col);
527 cpi->tplist[mb_row].stop = *tp;
532 int tok_count = *tp - tp_start;
671 TOKENEXTRA *tp = cpi->tok; local
769 tp = cpi->tok;
771 tp = cpi->tok + mb_row * (cm->mb_cols * 16 * 24)
    [all...]
  /external/libaom/libaom/av1/encoder/
encodeframe.c     [all...]
  /external/mksh/src/
misc.c 1652 char *xp, *ip, *tp, *ipath, *ldest = NULL; local
1985 char *dp, *ip, *sp, *tp; local
    [all...]
funcs.c 660 struct tbl *tp; local
665 tp = NULL;
668 tp = ktsearch(&keywords, id, h);
669 if (!tp && (fcflags & FC_WHENCE)) {
670 tp = ktsearch(&aliases, id, h);
671 if (tp && !(tp->flag & ISSET))
672 tp = NULL;
674 if (!tp)
675 tp = findcom(id, fcflags)
    [all...]
  /external/u-boot/arch/sandbox/cpu/
os.c 194 struct timespec tp; local
195 if (EINVAL == clock_gettime(CLOCK_MONOTONIC, &tp)) {
199 tp.tv_sec = tv.tv_sec;
200 tp.tv_nsec = tv.tv_usec * 1000;
202 return tp.tv_sec * 1000000000ULL + tp.tv_nsec;
  /build/make/tools/releasetools/
edify_generator.py 118 def AssertFingerprintOrThumbprint(self, fp, tp):
120 is tp."""
122 ' getprop("ro.build.thumbprint") == "{tp}" ||\n'
124 'thumbprint of {tp}; this device has a fingerprint of " '
126 '+ getprop("ro.build.thumbprint") + ".");').format(fp=fp, tp=tp)
  /cts/tests/tests/text/src/android/text/style/cts/
SuggestionSpanTest.java 216 final TextPaint tp = new TextPaint(); local
217 tp.setTextSize(100.0f); // Large enough so that the difference in kerning is visible.
220 text, 0, text.length(), tp, largeWidth).build();
  /external/adhd/cras/src/tests/
cras_client_unittest.cc 365 int clock_gettime(clockid_t clk_id, struct timespec *tp) {
366 tp->tv_sec = 0;
367 tp->tv_nsec = 0;
  /external/linux-kselftest/tools/testing/selftests/ptp/
testptp.c 183 int64_t t1, t2, tp; local
500 tp = pctns(pct+2*i+1);
503 offset = (t2 + t1) / 2 - tp;
  /build/kati/
regen.cc 428 unique_ptr<ThreadPool> tp(NewThreadPool(g_flags.num_jobs));
430 tp->Submit([this]() {
446 tp->Submit([this]() {
460 tp->Wait();
  /external/bcc/examples/lua/
tracepoint-offcputime.lua 30 local tp = bpf.tracepoint('sched/sched_switch', function (arg)

Completed in 1142 milliseconds

<<11121314151617181920>>