HomeSort by relevance Sort by last modified time
    Searched refs:Partition (Results 26 - 50 of 64) sorted by null

12 3

  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
CustomVirtualView.java 46 private final SparseArray<Partition> mPartitionsByAutofillId = new SparseArray<>();
74 // same partition
83 Partition partition = mPartitionsByAutofillId.get(id); local
84 if (partition == null) {
89 partitions.add(partition.mName);
186 protected void onLineAdded(int id, Partition partition) {
187 mPartitionsByAutofillId.put(id, partition);
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
CustomVirtualView.java 46 private final SparseArray<Partition> mPartitionsByAutofillId = new SparseArray<>();
74 // same partition
83 Partition partition = mPartitionsByAutofillId.get(id); local
84 if (partition == null) {
89 partitions.add(partition.mName);
186 protected void onLineAdded(int id, Partition partition) {
187 mPartitionsByAutofillId.put(id, partition);
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
VirtualSignInActivity.java 48 CustomVirtualView.Partition credentialsPartition =
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/edgecases/
VirtualCompatModeSignInActivity.java 65 CustomVirtualView.Partition credentialsPartition =
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
VirtualSignInActivity.java 48 CustomVirtualView.Partition credentialsPartition =
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/edgecases/
VirtualCompatModeSignInActivity.java 65 CustomVirtualView.Partition credentialsPartition =
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
LTO.cpp 423 unsigned Partition, bool InSummary) {
455 // Set the partition to external if we know it is re-defined by the linker
458 // recorded as being referenced from a different partition.
460 (GlobalRes.Partition != GlobalResolution::Unknown &&
461 GlobalRes.Partition != Partition)) {
462 GlobalRes.Partition = GlobalResolution::External;
464 // First recorded reference, save the current partition.
465 GlobalRes.Partition = Partition;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LTO/
LTO.h 312 // Because any input file may introduce a new cross-partition reference, we
336 /// This field keeps track of the partition number of this global. The
337 /// regular LTO object is partition 0, while each ThinLTO object has its own
338 /// partition number from 1 onwards.
340 /// Any global that is defined or used by more than one partition, or that
344 /// that we use partition 0 for all parallel LTO code generation partitions.
347 unsigned Partition = Unknown;
349 /// Special partition numbers.
351 /// A partition number has not yet been assigned to this global.
354 /// This global is either used by more than one partition or has a
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
CompileOnDemandLayer.h 172 CompileOnDemandLayer(BaseLayerT &BaseLayer, PartitioningFtor Partition,
176 : BaseLayer(BaseLayer), Partition(std::move(Partition)),
245 // ensure that everything will resolve properly after we partition SrcM.
270 // and set the compile action to compile the partition containing the
399 auto Part = Partition(F);
504 PartitioningFtor Partition;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/EmmcDxe/
EmmcDxe.h 127 EMMC_PARTITION Partition[EMMC_MAX_PARTITIONS];
  /external/guava/guava/src/com/google/common/collect/
Lists.java 636 * partitioning a list containing {@code [a, b, c, d, e]} with a partition
651 public static <T> List<List<T>> partition(List<T> list, int size) {
656 : new Partition<T>(list, size);
659 private static class Partition<T> extends AbstractList<List<T>> {
663 Partition(List<T> list, int size) {
684 private static class RandomAccessPartition<T> extends Partition<T>
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Lists.java 602 * partitioning a list containing {@code [a, b, c, d, e]} with a partition
617 public static <T> List<List<T>> partition(List<T> list, int size) {
622 : new Partition<T>(list, size);
625 private static class Partition<T> extends AbstractList<List<T>> {
629 Partition(List<T> list, int size) {
650 private static class RandomAccessPartition<T> extends Partition<T>
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
partitioning_utils.cc 32 // then recursively partition the per-worker shards at the remote worker(s).
51 TF_RETURN_IF_ERROR(Partition(partition_options, graph.get(), &partitions));
53 for (const auto& partition : partitions) {
54 const string& device = partition.first;
55 const GraphDef& graph_def = partition.second;
56 // Each partition gets a copy of all the
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
CompileOnDemandLayer.h 257 PartitioningFtor Partition,
264 Partition(std::move(Partition)), CompileCallbackMgr(CallbackMgr),
361 // ensure that everything will resolve properly after we partition SrcM.
391 // and set the compile action to compile the partition containing the
567 auto Part = Partition(F);
590 llvm_unreachable("Function not emitted for partition");
714 PartitioningFtor Partition;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/PartitionDxe/
Gpt.c 6 This driver will have external input - disk partition.
10 PartitionInstallGptChildHandles() routine will read disk partition content and
14 partition content and validate the GPT table and GPT entry.
28 #include "Partition.h"
31 Install child handles if the Handle supports GPT partition structure.
34 The GPT partition table header is external input, so this routine
35 will do basic validation for GPT partition table header before return.
39 @param[in] Lba The starting Lba of the Partition Table
40 @param[out] PartHeader Stores the partition table that is read
42 @retval TRUE The partition table is valid
    [all...]
  /bootable/recovery/updater/
dynamic_partitions.cpp 52 using android::fs_mgr::Partition;
181 auto partition = params.builder->FindPartition(partition_name);
182 if (partition == nullptr) {
183 LOG(ERROR) << "Failed to find partition " << partition_name
184 << " in dynamic partition metadata.";
191 if (!params.builder->ResizePartition(partition, size.value())) {
192 LOG(ERROR) << "Failed to resize partition " << partition_name << " to size " << *size << ".";
217 LOG(ERROR) << "Failed to add partition " << partition_name << " to group " << group_name << ".";
228 auto partition = params.builder->FindPartition(partition_name); local
229 if (partition == nullptr)
    [all...]
install.cpp 201 // directly, if the target partition already has the expected checksum. Otherwise it in turn
202 // checks the integrity of the source partition and the backup file on /cache.
220 auto target = Partition::Parse(args[0], &err);
226 auto source = Partition::Parse(args[1], &err);
237 // Applies the given patch to the source partition, and writes the result to the target partition.
256 auto target = Partition::Parse(args[0], &err);
262 auto source = Partition::Parse(args[1], &err);
418 // if fs_size == 0, then make fs uses the entire partition.
420 // if fs_size < 0, then reserve that many bytes at the end of the partition (not for "f2fs"
    [all...]
  /bootable/recovery/tests/component/
updater_test.cpp 188 // Clear partition updated marker if any.
227 Partition source(source_file, source_size, source_hash);
234 Partition target(target_file, target_size, target_hash);
245 // Only source partition has the desired checksum.
246 Partition bad_target(target_file, target_size - 1, target_hash);
250 // Only target partition has the desired checksum.
251 Partition bad_source(source_file, source_size + 1, source_hash);
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/
ArmVExpressFastBoot.c 49 Helper to free the partition list
71 Read the PartitionName fields from the GPT partition entries, putting them
91 // Read size of Partition entry and number of entries from GPT header
169 // PcdFastbootFlashDevicePath, also saving their GPT partition labels.
180 // partition names out of the GPT entries
204 // Read the GPT partition entry array into memory so we can get the partition names
244 // Assert that this device path node represents a partition.
250 // Assert that the partition type is GPT. ReadPartitionEntries checks for
252 // ("MBRType" is a misnomer - this field is actually called "Partition
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 71 STATISTIC(NumAllocaPartitionUses, "Number of alloca partition uses rewritten");
72 STATISTIC(MaxUsesPerAllocaPartition, "Maximum number of uses of a partition");
308 /// \brief A partition of the slices.
311 /// a partition of the alloca. This range represents a span of the alloca's
313 /// overlapping some part of the partition.
317 class llvm::sroa::Partition {
325 /// partition.
328 /// \brief The start end end iterators of this partition.
331 /// \brief A collection of split slice tails overlapping the partition.
334 /// \brief Raw constructor builds an empty partition starting and ending a
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
SROA.cpp 110 STATISTIC(NumAllocaPartitionUses, "Number of alloca partition uses rewritten");
111 STATISTIC(MaxUsesPerAllocaPartition, "Maximum number of uses of a partition");
354 /// A partition of the slices.
357 /// a partition of the alloca. This range represents a span of the alloca's
359 /// overlapping some part of the partition.
363 class llvm::sroa::Partition {
371 /// partition.
374 /// The start and end iterators of this partition.
377 /// A collection of split slice tails overlapping the partition.
380 /// Raw constructor builds an empty partition starting and ending a
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
Gpt.asm 148 cmp dword ptr es:[di], 0C12A7328h ; Check for EFI System Partition "C12A7328-F81F-11d2-BA4B-00A0C93EC93B"
245 ; GptPartitionIndicator - Used to indicate which GPT partition to be boot
Mbr.asm 120 ; Here we don't use the C/H/S information provided by Partition table
221 ; MbrPartitionIndicator - Used to indicate which MBR partition to be boot
Gpt.S 150 cmpl $0xC12A7328, %es:(%di) # Check for EFI System Partition "C12A7328-F81F-11d2-BA4B-00A0C93EC93B"
248 # GptPartitionIndicator - Used to indicate which GPT partition to be boot
  /external/tensorflow/tensorflow/core/distributed_runtime/
graph_mgr.cc 173 TF_RETURN_IF_ERROR(Partition(popts, &graph, &partitions));
179 for (const auto& partition : partitions) {
185 TF_RETURN_IF_ERROR(ConvertGraphDefToGraph(device_opts, partition.second,
187 partition_graphs.emplace(partition.first, std::move(device_graph));

Completed in 681 milliseconds

12 3