HomeSort by relevance Sort by last modified time
    Searched refs:tot (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/selinux/libselinux/utils/
avcstat.c 97 struct avc_cache_stats tot, rel, last; local
179 memset(&tot, 0, sizeof(tot));
194 tot.lookups += tmp.lookups;
195 tot.hits += tmp.hits;
196 tot.misses += tmp.misses;
197 tot.allocations += tmp.allocations;
198 tot.reclaims += tmp.reclaims;
199 tot.frees += tmp.frees;
208 tot.lookups, tot.hits, tot.misses
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cor_h_x2.cpp 173 Word32 s, y32[L_CODE], max, tot;
177 tot = 5;
194 tot = L_add (tot, L_shr (max, 1));
197 j = sub (norm_l (tot), sf);
245 Word32 tot; local
249 tot = LOG2_OF_32;
271 tot = (tot + (max >> 1));
274 j = sub(norm_l(tot), sf, pOverflow)
    [all...]
cor_h_x.cpp 189 Word32 s, y32[L_CODE], max, tot;
193 tot = 5;
210 tot = L_add (tot, L_shr (max, 1));
213 j = sub (norm_l (tot), sf);
259 Word32 tot; local
266 tot = 5;
302 tot += (max >> 1);
306 j = norm_l(tot) - sf;
  /external/autotest/site_utils/autoupdate/
import_common.py 25 tot = external_packages.find_top_of_autotest_tree()
26 install_dir = os.path.join(tot, build_externals.INSTALL_DIR)
  /external/libvpx/libvpx/vp8/common/
treecoder.c 90 const unsigned int tot = c[0] + c[1]; local
92 assert(tot < (1 << 24)); /* no overflow below */
94 if (tot) {
95 const unsigned int p = ((c[0] * Pfac) + (rd ? tot >> 1 : 0)) / tot;
  /external/boringssl/src/crypto/bn/asm/
co-586.pl 115 local($tot,$end);
129 $tot=$num+$num-1;
143 for ($i=0; $i<$tot; $i++)
157 $v=2 if (($i+1) == $tot);
206 local($b,$tot,$end,$half);
230 $tot=$num+$num-1;
232 for ($i=0; $i<$tot; $i++)
245 $v=2 if ($i+1) == $tot;
  /external/compiler-rt/lib/tsan/
analyze_libtsan.sh 40 tot=$(wc -l < $file)
52 printf "%10s tot %3d; size %4d; rsp %d; push %d; pop %d; call %d; load %2d; store %2d; sh %3d; mov %3d; lea %3d; cmp %3d\n" \
53 $f $tot $size $rsp $push $pop $call $load $store $sh $mov $lea $cmp;
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
timings.go 75 tot time.Duration // accumulated phase time
84 tot := t.list[len(t.list)-1].time.Sub(pt.time)
124 group.tot += dt
129 lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
132 group.tot = dt
137 lines.add(prefix+label, 1, dt, tot, events)
144 lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
148 lines.add(prefix+"unaccounted", 1, unaccounted, tot, nil
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
timings.go 75 tot time.Duration // accumulated phase time
84 tot := t.list[len(t.list)-1].time.Sub(pt.time)
124 group.tot += dt
129 lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
132 group.tot = dt
137 lines.add(prefix+label, 1, dt, tot, events)
144 lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
148 lines.add(prefix+"unaccounted", 1, unaccounted, tot, nil
    [all...]
  /external/boringssl/src/ssl/
s3_pkt.c 194 unsigned tot, n, nw; local
197 tot = ssl->s3->wnum;
204 * end up with (len-tot) as a large number that will then promptly send
207 if (len < 0 || (size_t)len < tot) {
212 n = len - tot;
223 int ret = do_ssl3_write(ssl, SSL3_RT_APPLICATION_DATA, &buf[tot], nw);
225 ssl->s3->wnum = tot;
230 return tot + ret;
234 tot += ret;
  /external/zlib/src/examples/
gzjoin.c 265 local void gzinit(unsigned long *crc, unsigned long *tot, FILE *out)
269 *tot = 0;
275 the output, and the gzip trailer is written. crc and tot maintains the
278 of gzcopy() to write the gzip header and to initialize crc and tot. */
279 local void gzcopy(char *name, int clr, unsigned long *crc, unsigned long *tot,
410 /* update crc and tot */
412 *tot += (unsigned long)len;
422 put4(*tot, out);
429 unsigned long crc, tot; /* running crc and total uncompressed length */ local
443 gzinit(&crc, &tot, stdout)
    [all...]
gzappend.c 263 unsigned long crc, tot; local
345 tot = strm->total_out;
346 if ((tot & 0xffffffffUL) != read4(&gz))
372 strm->total_in = tot;
  /external/skia/src/effects/
GrCircleBlurFragmentProcessor.cpp 115 float tot = 0.0f; local
120 tot += value;
124 return tot;
132 const float tot = 2.f * make_unnormalized_half_kernel(halfKernel, halfKernelSize, sigma); local
135 halfKernel[i] /= tot;
244 const float tot = 2.f * make_unnormalized_half_kernel(halfKernel.get(), halfKernelSize, sigma); local
248 halfKernel[halfKernelSize - i - 1] /= tot;
  /external/iproute2/misc/
rtacct.c 79 static void nread(int fd, char *buf, int tot)
83 while (count < tot) {
84 int n = read(fd, buf+count, tot-count);
335 int tot = 0; local
337 while (tot < sizeof(*kern_db)) {
338 int n = write(fd, ((char*)kern_db) + tot, sizeof(*kern_db)-tot);
344 tot += n;
  /external/libvpx/
update_libvpx.sh 25 # Update to TOT by default.
53 git checkout -b tot $GIT_BRANCH
  /external/ltp/tools/top-LTP/proc/
readproc.c 263 int fd, tot = 0, n, c, end_of_file = 0; local
283 rbuf = xrealloc(rbuf, tot + n); /* allocate more memory */
284 memcpy(rbuf + tot, buf, n); /* copy buffer into it */
285 tot += n; /* increment total byte ctr */
294 endbuf = rbuf + tot; /* count space for pointers */
297 ((tot + sizeof(char *) - 1) & (sizeof(char *) - 1));
303 rbuf = xrealloc(rbuf, tot + c + align); /* make room for ptrs AT END */
304 endbuf = rbuf + tot; /* addr just past data buf */
  /libcore/ojluni/src/main/java/java/time/zone/
Ser.java 276 long tot = ((hiByte << 16) + (midByte << 8) + loByte); local
277 return (tot * 900) - 4575744000L;
  /prebuilts/go/darwin-x86/src/io/
pipe_test.go 105 tot := 0
107 nn, err := r.Read(rdat[tot : tot+n])
125 tot += nn
131 if tot != 128 {
132 t.Fatalf("total read %d != 128", tot)
  /prebuilts/go/linux-x86/src/io/
pipe_test.go 105 tot := 0
107 nn, err := r.Read(rdat[tot : tot+n])
125 tot += nn
131 if tot != 128 {
132 t.Fatalf("total read %d != 128", tot)
  /external/swiftshader/third_party/PowerVR_SDK/Shell/
PVRShell.cpp 1277 size_t tot, len; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
dom.go 74 tot := maxBlockID * nscratchslices
76 if len(scratch) < tot {
77 // req = min(1.5*tot, nscratchslices*minscratchblocks)
79 req := (tot * 3) >> 1
87 scratch = scratch[0:tot]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
dom.go 74 tot := maxBlockID * nscratchslices
76 if len(scratch) < tot {
77 // req = min(1.5*tot, nscratchslices*minscratchblocks)
79 req := (tot * 3) >> 1
87 scratch = scratch[0:tot]
  /external/libvpx/libvpx/vp8/encoder/
encodemv.c 166 const unsigned int tot = ct[0] + ct[1]; local
168 if (tot) {
169 const vp8_prob x = ((ct[0] * 255) / tot) & -2;
  /external/autotest/client/deps/webgl_mpd/src/resources/
J3DI.js 582 var tot = 0;
584 tot += this.framerates[i];
586 var framerate = tot / this.framerates.length;
  /external/libvorbis/lib/
psytune.c 235 float tot=0.f; local
519 fprintf(stderr,"average raw bits of entropy: %.03g/sample\n",acc/tot);
520 fprintf(stderr,"average nonzero samples: %.03g/%d\n",nonz/tot*framesize/2,

Completed in 1866 milliseconds

1 2 3