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

1 2 3 4 5

  /packages/services/Car/car-cluster-demo-renderer/src/android/car/cluster/demorenderer/
InstrumentClusterRendererFactory.java 16 package android.car.cluster.demorenderer;
18 import android.car.cluster.renderer.InstrumentClusterRenderer;
DemoInstrumentClusterRenderer.java 16 package android.car.cluster.demorenderer;
18 import android.car.cluster.renderer.DisplayConfiguration;
19 import android.car.cluster.renderer.InstrumentClusterRenderer;
20 import android.car.cluster.renderer.NavigationRenderer;
CallStateMonitor.java 17 package android.car.cluster.demorenderer;
20 import android.car.cluster.demorenderer.PhoneBook.Contact;
21 import android.car.cluster.demorenderer.PhoneBook.ContactLoadedListener;
22 import android.car.cluster.demorenderer.PhoneBook.ContactPhotoLoadedListener;
68 // Update call state immediately on instrument cluster.
  /external/ImageMagick/MagickCore/
segment.c 67 % The fuzzy c-Means technique attempts to cluster a pixel by finding
152 } Cluster;
262 Cluster
263 *cluster,
298 cluster=(Cluster *) NULL;
299 head=(Cluster *) NULL;
314 if (head != (Cluster *) NULL)
316 cluster->next=(Cluster *) AcquireMagickMemory
257 *cluster, local
542 *cluster; local
935 *cluster, local
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat.java 36 * The first cluster that really holds user data in a FAT.
225 * Returns the last free cluster that was accessed in this FAT.
227 * @return the last seen free cluster
237 long cluster = startCluster; local
238 while (!isEofCluster(entries[(int) cluster])) {
240 cluster = entries[(int) cluster];
245 cluster = startCluster;
247 while (!isEofCluster(entries[(int) cluster])) {
248 cluster = entries[(int) cluster]
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
CpuPowerCalculator.java 37 // Aggregate total time spent on each cluster.
40 for (int cluster = 0; cluster < numClusters; cluster++) {
41 final int speedsForCluster = mProfile.getNumSpeedStepsInCpuCluster(cluster);
43 totalTime += u.getTimeAtCpuSpeed(cluster, speed, statsType);
49 for (int cluster = 0; cluster < numClusters; cluster++) {
50 final int speedsForCluster = mProfile.getNumSpeedStepsInCpuCluster(cluster);
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
ClusterManager.java 33 * locations initially are kept by the clusters. Periodially, a cluster consolidating
34 * procedure is carried out to refine the cluster centers. After consolidation, the
49 // A location cluster can be labeled as a semantic cluster if it has been
125 // add the last location to cluster.
126 // first find the cluster it belongs to.
136 // add the location to the selected cluster
140 // if it is far away from all existing clusters, create a new cluster.
141 LocationCluster cluster = new LocationCluster(mLastLocation, duration); local
142 mLocationClusters.add(cluster);
241 semanticIdMap.put(cluster.getSemanticId(), cluster); local
268 BaseCluster cluster = local
    [all...]
BaseCluster.java 114 * This computes the distance from loation to the cluster center in meter.
120 public float distanceToCluster(BaseCluster cluster) {
121 return (float) computeDistance(mCenter, cluster.mCenter);
124 public void absorbCluster(BaseCluster cluster) {
125 averageCenter(cluster.mCenter, cluster.mDuration);
126 absorbHistogram(cluster);
129 public void setCluster(BaseCluster cluster) {
131 mCenter[i] = cluster.mCenter[i];
134 mHistogram.putAll(cluster.mHistogram)
    [all...]
IAggregatorManager.aidl 30 boolean setFakeLocation(in String cluster);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
KMeansPlusPlusClusterer.java 31 * @param <T> type of the points to cluster
38 /** Strategies to use for replacing an empty cluster. */
41 /** Split the cluster with largest distance variance. */
44 /** Split the cluster with largest number of points. */
47 /** Create a cluster around the point farthest from its centroid. */
64 * algorithm iterations is to split the cluster with largest distance variance.
86 * @param points the points to cluster
92 public List<Cluster<T>> cluster(final Collection<T> points, method in class:KMeansPlusPlusClusterer
95 List<Cluster<T>> clusters = chooseInitialCenters(points, k, random)
147 Cluster<T> cluster = getNearestCluster(clusters, p); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2containerservice/
layer1.py 35 stop, and manage Docker containers on a cluster of Amazon EC2
38 your cluster from a centralized service, and gives you access to
43 across your cluster based on your resource needs, isolation
45 Service eliminates the need for you to operate your own cluster
77 Creates a new Amazon ECS cluster. By default, your account
78 will receive a `default` cluster when you launch your first
79 container instance. However, you can create your own cluster
85 :param cluster_name: The name of your cluster. If you do not specify a
86 name for your cluster, you will create a cluster named `default`
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/geometry/
two_farthest_clusters.py 45 cluster the point is nearer.
72 return [minicircle(cluster).radius
73 for cluster in get_two_farthest_clusters(points) if cluster]
  /external/libvpx/libvpx/
webmdec.cc 38 webm_ctx->cluster = NULL;
50 const mkvparser::Cluster *const cluster = segment->GetFirst(); member in class:__anon16676::mkvparser
51 webm_ctx->cluster = cluster;
134 const mkvparser::Cluster* cluster = local
135 reinterpret_cast<const mkvparser::Cluster*>(webm_ctx->cluster);
145 status = cluster->GetFirst(block_entry)
    [all...]
webmdec.h 25 const void *cluster; member in struct:WebmInputContext
  /packages/services/Car/car-lib/src/android/car/cluster/renderer/
NavigationRenderer.java 16 package android.car.cluster.renderer;
23 * Contains methods specified for Navigation App renderer in instrument cluster.
  /packages/services/Car/service/src/com/android/car/cluster/
InstrumentClusterPresentation.java 16 package com.android.car.cluster;
  /external/harfbuzz_ng/util/
helper-cairo.cc 465 if (hb_glyph[i].cluster != hb_glyph[i-1].cluster)
498 unsigned int cluster = 0; local
500 l->clusters[cluster].num_glyphs++;
503 if (hb_glyph[i].cluster != hb_glyph[i+1].cluster) {
504 g_assert (hb_glyph[i].cluster > hb_glyph[i+1].cluster);
506 end = start + hb_glyph[i].cluster - hb_glyph[i+1].cluster;
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer.cc 254 unsigned int cluster)
265 glyph->cluster = cluster;
476 if (cluster_start <= info[i].cluster && info[i].cluster < cluster_end)
529 last_cluster = info[0].cluster;
531 if (last_cluster != info[i].cluster) {
534 last_cluster = info[i].cluster;
547 unsigned int cluster = info[start].cluster; local
578 unsigned int cluster = out_info[start].cluster; local
602 unsigned int cluster = info[idx].cluster; local
    [all...]
sample.py 53 cluster = info.cluster variable
58 print("gid%d=%d@%d,%d+%d" % (gid, cluster, x_advance, x_offset, y_offset))
  /hardware/qcom/msm8994/kernel-headers/linux/
msm-core-interface.h 34 uint32_t cluster; member in struct:sched_params
  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm-core-interface.h 18 uint32_t cluster; member in struct:sched_params
  /hardware/qcom/msm8996/kernel-headers/linux/
msm-core-interface.h 34 uint32_t cluster; member in struct:sched_params
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm-core-interface.h 18 uint32_t cluster; member in struct:sched_params
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/redshift/
layer1.py 43 Redshift cluster management interfaces, go to `Using the Amazon
48 backing up the cluster, and applying patches and upgrades to the
162 cluster is running on the Internet or an EC2 instance, you can
171 You must also associate the security group with a cluster so
173 are authorized to connect to the cluster. For information
226 :param snapshot_cluster_identifier: The identifier of the cluster the
229 specifies anything other than * for the cluster name.
251 Copies the specified automated cluster snapshot to a new
252 manual cluster snapshot. The source must be an automated
255 When you delete a cluster, Amazon Redshift deletes an
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/
btSoftClusterCollisionShape.java 63 public void setCluster(btSoftBody.Cluster value) {
64 SoftbodyJNI.btSoftClusterCollisionShape_cluster_set(swigCPtr, this, btSoftBody.Cluster.getCPtr(value), value);
67 public btSoftBody.Cluster getCluster() {
69 return (cPtr == 0) ? null : new btSoftBody.Cluster(cPtr, false);
72 public btSoftClusterCollisionShape(btSoftBody.Cluster cluster) {
73 this(SoftbodyJNI.new_btSoftClusterCollisionShape(btSoftBody.Cluster.getCPtr(cluster), cluster), true);

Completed in 1851 milliseconds

1 2 3 4 5