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

1 2 3 4 5 6 7 8 91011>>

  /external/zopfli/src/zopfli/
util.c 28 int ZopfliGetDistExtraBits(int dist) {
30 if (dist < 5) return 0;
31 return (31 ^ __builtin_clz(dist - 1)) - 1; /* log2(dist - 1) - 1 */
33 if (dist < 5) return 0;
34 else if (dist < 9) return 1;
35 else if (dist < 17) return 2;
36 else if (dist < 33) return 3;
37 else if (dist < 65) return 4;
38 else if (dist < 129) return 5
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
Makefile 5 include ../Make.dist
  /prebuilts/go/linux-x86/src/runtime/
Makefile 5 include ../Make.dist
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
Matches.java 15 public final int[] dist; field in class:Matches
20 dist = new int[countMax];
  /prebuilts/go/darwin-x86/src/
make.rc 75 echo 'Building Go cmd/dist using '^$GOROOT_BOOTSTRAP
77 echo cmd/dist
78 GOROOT=$GOROOT_BOOTSTRAP GOOS='' GOARCH='' $GOROOT_BOOTSTRAP/bin/go build -o cmd/dist/dist ./cmd/dist
80 eval `{./cmd/dist/dist env -9}
84 if(~ $1 --dist-tool){
85 # Stop after building dist tool.
88 cp cmd/dist/dist $
    [all...]
clean.rc 6 eval `{go tool dist env -9}
8 if(! test -x $GOTOOLDIR/dist){
9 echo 'cannot find $GOTOOLDIR/dist; nothing to clean' >[1=2]
14 $GOBIN/go tool dist clean
make.bash 52 # GO_DISTFLAGS: extra flags to provide to "dist bootstrap".
121 # cmd/dist will detect kFreeBSD as freebsd/$GOARCH, but we need to
150 echo "Building Go cmd/dist using $GOROOT_BOOTSTRAP."
152 echo cmd/dist
164 rm -f cmd/dist/dist
165 GOROOT="$GOROOT_BOOTSTRAP" GOOS="" GOARCH="" "$GOROOT_BOOTSTRAP/bin/go" build -o cmd/dist/dist ./cmd/dist
168 eval $(./cmd/dist/dist env -p || echo FAIL=true
    [all...]
run.rc 14 exec go tool dist test -rebuild $*
  /prebuilts/go/linux-x86/src/
make.rc 75 echo 'Building Go cmd/dist using '^$GOROOT_BOOTSTRAP
77 echo cmd/dist
78 GOROOT=$GOROOT_BOOTSTRAP GOOS='' GOARCH='' $GOROOT_BOOTSTRAP/bin/go build -o cmd/dist/dist ./cmd/dist
80 eval `{./cmd/dist/dist env -9}
84 if(~ $1 --dist-tool){
85 # Stop after building dist tool.
88 cp cmd/dist/dist $
    [all...]
clean.rc 6 eval `{go tool dist env -9}
8 if(! test -x $GOTOOLDIR/dist){
9 echo 'cannot find $GOTOOLDIR/dist; nothing to clean' >[1=2]
14 $GOBIN/go tool dist clean
make.bash 52 # GO_DISTFLAGS: extra flags to provide to "dist bootstrap".
121 # cmd/dist will detect kFreeBSD as freebsd/$GOARCH, but we need to
150 echo "Building Go cmd/dist using $GOROOT_BOOTSTRAP."
152 echo cmd/dist
164 rm -f cmd/dist/dist
165 GOROOT="$GOROOT_BOOTSTRAP" GOOS="" GOARCH="" "$GOROOT_BOOTSTRAP/bin/go" build -o cmd/dist/dist ./cmd/dist
168 eval $(./cmd/dist/dist env -p || echo FAIL=true
    [all...]
run.rc 14 exec go tool dist test -rebuild $*
  /external/speex/libspeex/
vq.c 82 spx_word32_t dist=0; local
84 dist = MAC16_16(dist,in[j],*codebook++);
86 dist=SUB32(SHR32(E[i],1),dist);
88 dist=.5f*E[i]-dist;
90 if (i<N || dist<best_dist[N-1])
92 for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
97 best_dist[k]=dist;
116 spx_word32_t dist=0; local
    [all...]
vq_bfin.h 43 spx_word32_t dist; local
67 : "=&D" (dist), "=&a" (codebook), "=&d" (best_dist[0]), "=&d" (nbest[0]), "=&a" (E)
77 spx_word32_t dist; local
90 : "=D" (dist), "=a" (codebook)
94 if (i<N || dist<best_dist[N-1])
96 for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
101 best_dist[k]=dist;
  /tools/metalava/
Android.mk 18 $(call dist-for-goals,sdk,$(HOST_OUT_JAVA_LIBRARIES)/metalava.jar)
20 $(call dist-for-goals,sdk,$(HOST_OUT_JAVA_LIBRARIES)/stub-annotations.jar)
  /development/vndk/snapshot/
build.sh 22 make -j vndk dist TARGET_PRODUCT=aosp_arm64
25 make -j vndk dist TARGET_PRODUCT=aosp_arm
28 make -j vndk dist TARGET_PRODUCT=aosp_arm_ab
31 make -j vndk dist TARGET_PRODUCT=aosp_x86_64
34 make -j vndk dist TARGET_PRODUCT=aosp_x86
37 make -j vndk dist TARGET_PRODUCT=aosp_x86_ab
  /external/tensorflow/tensorflow/python/kernel_tests/distributions/
bernoulli_test.py 61 dist = bernoulli.Bernoulli(probs=p)
63 self.assertAllClose(p, dist.probs.eval())
67 dist = bernoulli.Bernoulli(logits=logits)
69 self.assertAllClose(logits, dist.logits.eval())
75 self.assertAllClose(special.expit(logits), dist.probs.eval())
78 dist = bernoulli.Bernoulli(probs=p)
80 self.assertAllClose(special.logit(p), dist.logits.eval())
87 dist = bernoulli.Bernoulli(probs=p, validate_args=True)
88 dist.probs.eval()
94 dist = bernoulli.Bernoulli(probs=p, validate_args=True
    [all...]
  /external/iproute2/netem/
Makefile 4 DISTDATA = normal.dist pareto.dist paretonormal.dist experimental.dist
15 %.dist: %
18 experimental.dist: maketable experimental.dat
19 ./maketable experimental.dat > experimental.dist
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
cams.h 42 unsigned char dist; // if >0, cam rotates around eye xy on dist * 0.1 member in struct:__anon14211
  /external/brotli/research/
read_dist.h 8 /* API for reading distances from *.dist file.
9 The format of *.dist file is as follows: for each backward reference there is
26 /* Reads backwards reference from .dist file. Sets all missing fields to -1.
28 bool ReadBackwardReference(FILE* fin, int* copy, int* pos, int* dist) {
35 *pos = *dist = -1;
38 CHECK(fread(dist, sizeof(int), 1, fin) == 1);
44 CHECK(fread(dist, sizeof(int), 1, fin) == 1);
  /frameworks/native/opengl/tests/angeles/
cams.h 42 unsigned char dist; // if >0, cam rotates around eye xy on dist * 0.1 member in struct:__anon46498
  /frameworks/support/jetifier/jetifier/standalone/
build.gradle 29 task dist(type: Copy) {
34 rootProject.tasks["createArchive"].dependsOn(dist)
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
relaxed_bernoulli_test.py 33 """Tests that parameter P is set correctly. Note that dist.p != dist.pdf."""
36 dist = relaxed_bernoulli.RelaxedBernoulli(temperature, probs=p)
38 self.assertAllClose(p, dist.probs.eval())
43 dist = relaxed_bernoulli.RelaxedBernoulli(temperature, logits=logits)
45 self.assertAllClose(logits, dist.logits.eval())
48 self.assertAllClose(scipy.special.expit(logits), dist.probs.eval())
51 dist = relaxed_bernoulli.RelaxedBernoulli(temperature, probs=p)
53 self.assertAllClose(scipy.special.logit(p), dist.logits.eval())
61 dist = relaxed_bernoulli.RelaxedBernoulli(temperature
    [all...]
onehot_categorical_test.py 46 dist = onehot_categorical.OneHotCategorical(probs=p)
48 self.assertAllClose(p, dist.probs.eval())
49 self.assertAllEqual([2], dist.logits.get_shape())
54 dist = onehot_categorical.OneHotCategorical(logits=logits)
56 self.assertAllEqual([2], dist.probs.get_shape())
57 self.assertAllEqual([2], dist.logits.get_shape())
58 self.assertAllClose(dist.probs.eval(), p)
59 self.assertAllClose(dist.logits.eval(), logits)
64 dist = make_onehot_categorical(batch_shape, 10)
65 self.assertAllEqual(batch_shape, dist.batch_shape.as_list()
    [all...]
  /external/selinux/python/sepolgen/src/sepolgen/
matching.py 32 def __init__(self, interface=None, dist=0):
34 self.dist = dist
42 a = (self.dist, self.info_dir_change)
43 b = (other.dist, other.info_dir_change)
80 if match.dist <= self.threshold:
163 dist = 0
167 dist += self.type_distance(req.src_type, prov.src_type)
168 dist += self.type_distance(req.tgt_type, prov.tgt_type)
172 dist -= self.obj_penalt
    [all...]

Completed in 506 milliseconds

1 2 3 4 5 6 7 8 91011>>