HomeSort by relevance Sort by last modified time
    Searched defs:partition (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/python/pyasn1/pyasn1/compat/
string.py 11 def partition(string, sep): function
25 def partition(string, sep): function
26 return string.partition(sep)
  /build/make/core/
build_rro_package.mk 18 partition := macro
20 partition := $(TARGET_OUT_ODM) macro
22 partition := $(TARGET_OUT_VENDOR) macro
24 partition := $(TARGET_OUT_PRODUCT_SERVICES) macro
26 partition := $(TARGET_OUT_PRODUCT) macro
30 LOCAL_MODULE_PATH := $(partition)/overlay
32 LOCAL_MODULE_PATH := $(partition)/overlay/$(LOCAL_RRO_THEME)
35 partition := macro
  /external/python/cpython3/Objects/stringlib/
partition.h 1 /* stringlib: partition implementation */
8 STRINGLIB(partition)(PyObject* str_obj, function
  /external/replicaisland/src/com/replica/replicaisland/
QuickSorter.java 47 int i = partition(a, left, right, comparator);
52 // partition a[left] to a[right], assumes left < right
53 private int partition(Type[] a, int left, int right, Comparator<Type> comparator) { method in class:QuickSorter
71 Type swap = a[i]; // swap with partition element
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
relabel.c 46 int first_el[CHAR_RANGE]; /* first element in each class partition */
71 partition(start,level);
82 void partition(nfa_node* start,int level) function
84 void partition(start,level)
137 * to find a maximal partition. This partion in returned in maximal_class
  /external/flac/libFLAC/
stream_encoder_intrin_avx2.c 61 unsigned partition, residual_sample, end = (unsigned)(-(int)predictor_order); local
64 for(partition = residual_sample = 0; partition < partitions; partition++) {
88 abs_residual_partition_sums[partition] = (FLAC__uint32)_mm_cvtsi128_si32(sum128);
91 abs_residual_partition_sums[partition] &= 0xFFFFFFFF; /**/
96 for(partition = residual_sample = 0; partition < partitions; partition++) {
121 _mm_storel_epi64((__m128i*)(abs_residual_partition_sums+partition), sum128)
    [all...]
stream_encoder_intrin_ssse3.c 61 unsigned partition, residual_sample, end = (unsigned)(-(int)predictor_order); local
64 for(partition = residual_sample = 0; partition < partitions; partition++) {
91 abs_residual_partition_sums[partition] = (FLAC__uint32)_mm_cvtsi128_si32(mm_sum);
94 abs_residual_partition_sums[partition] &= 0xFFFFFFFF;
99 for(partition = residual_sample = 0; partition < partitions; partition++) {
124 _mm_storel_epi64((__m128i*)(abs_residual_partition_sums+partition), mm_sum)
    [all...]
stream_encoder_intrin_sse2.c 72 unsigned partition, residual_sample, end = (unsigned)(-(int)predictor_order); local
75 for(partition = residual_sample = 0; partition < partitions; partition++) {
102 abs_residual_partition_sums[partition] = (FLAC__uint32)_mm_cvtsi128_si32(mm_sum);
105 abs_residual_partition_sums[partition] &= 0xFFFFFFFF;
110 for(partition = residual_sample = 0; partition < partitions; partition++) {
135 _mm_storel_epi64((__m128i*)(abs_residual_partition_sums+partition), mm_sum)
    [all...]
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
DefaultFieldTypeWithHints.java 42 "partition": 1,
57 public int partition; field in class:DefaultFieldTypeWithHints.DefaultFieldType
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
DefaultFieldTypeWithHints.java 42 "partition": 1,
57 public int partition; field in class:DefaultFieldTypeWithHints.DefaultFieldType
  /external/python/cpython3/Lib/turtledemo/
sorting_animate.py 103 def partition(shelf, left, right, pivot_index): function
117 pivot_new_index = partition(shelf, left, right, pivot_index)
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
bigquery_reader_ops.cc 60 BigQueryTablePartition partition; variable
61 if (!partition.ParseFromString(current_work())) {
63 "Could not parse work as valid partition.");
65 TF_RETURN_IF_ERROR(bigquery_table_accessor_->SetPartition(partition));
158 BigQueryTablePartition partition; variable
159 partition.set_start_index(i * partition_size);
160 partition.set_end_index(
162 output(i) = partition.SerializeAsString();
bigquery_table_accessor_test.cc 72 const BigQueryTablePartition& partition) {
75 columns, partition, std::unique_ptr<AuthProvider>(new FakeAuthProvider),
197 BigQueryTablePartition partition; local
198 partition.set_start_index(2);
199 partition.set_end_index(2);
201 {}, partition));
227 BigQueryTablePartition partition; local
228 partition.set_start_index(2);
229 partition.set_end_index(2);
232 partition));
258 BigQueryTablePartition partition; local
288 BigQueryTablePartition partition; local
320 BigQueryTablePartition partition; local
345 BigQueryTablePartition partition; local
370 BigQueryTablePartition partition; local
401 BigQueryTablePartition partition; local
457 BigQueryTablePartition partition; local
502 BigQueryTablePartition partition; local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
BuildVersionTest.java 89 List<Build.Partition> partitions = Build.getFingerprintedPartitions();
91 for (Build.Partition partition : partitions) {
92 verifyFingerprintStructure(partition.getFingerprint());
93 assertTrue(partition.getBuildTimeMillis() > 0);
94 boolean unique = seenPartitions.add(partition.getName());
95 assertTrue("partitions not unique, " + partition.getName() + " is duplicated", unique);
97 assertTrue(seenPartitions.contains(Build.Partition.PARTITION_NAME_SYSTEM));
  /bionic/libc/kernel/uapi/linux/
fsl_hypervisor.h 24 __u32 partition; member in struct:fsl_hv_ioctl_restart
28 __u32 partition; member in struct:fsl_hv_ioctl_status
33 __u32 partition; member in struct:fsl_hv_ioctl_start
39 __u32 partition; member in struct:fsl_hv_ioctl_stop
  /bootable/recovery/applypatch/
applypatch.cpp 49 static bool GenerateTarget(const Partition& target, const FileContents& source_file,
69 // Reads the contents of a Partition to the given FileContents buffer.
70 static bool ReadPartitionToBuffer(const Partition& partition, FileContents* out,
73 if (ParseSha1(partition.hash, expected_sha1) != 0) {
74 LOG(ERROR) << "Failed to parse target hash \"" << partition.hash << "\"";
78 android::base::unique_fd dev(open(partition.name.c_str(), O_RDONLY));
80 PLOG(ERROR) << "Failed to open eMMC partition \"" << partition << "\"";
82 std::vector<unsigned char> buffer(partition.size)
149 PLOG(ERROR) << "Failed to seek to " << start << " on \\"" << partition << "\\""; local
    [all...]
  /external/autotest/server/cros/
provision.py 216 def partition(cls, labels): member in class:_SpecialTaskAction
  /external/kernel-headers/original/uapi/linux/
fsl_hypervisor.h 47 * struct fsl_hv_ioctl_restart - restart a partition
49 * @partition: the ID of the partition to restart, or -1 for the
50 * calling partition
56 __u32 partition; member in struct:fsl_hv_ioctl_restart
60 * struct fsl_hv_ioctl_status - get a partition's status
62 * @partition: the ID of the partition to query, or -1 for the
63 * calling partition
64 * @status: The returned status of the partition
76 __u32 partition; member in struct:fsl_hv_ioctl_status
91 __u32 partition; member in struct:fsl_hv_ioctl_start
106 __u32 partition; member in struct:fsl_hv_ioctl_stop
    [all...]
  /external/libaom/libaom/av1/encoder/
segmentation.c 93 PARTITION_TYPE partition; local
104 partition = PARTITION_NONE;
106 partition = get_partition(cm, mi_row, mi_col, bsize);
107 switch (partition) {
  /external/libchrome/third_party/markupsafe/
__init__.py 184 if hasattr(text_type, 'partition'):
185 def partition(self, sep): function in function:Markup.make_wrapper
187 text_type.partition(self, self.escape(sep))))
  /external/libvpx/libvpx/vp9/common/
vp9_entropymode.h 65 unsigned int partition[PARTITION_CONTEXTS][PARTITION_TYPES]; member in struct:FRAME_COUNTS
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
SimpleIListTest.cpp 574 auto partition = [&](const Node &N) { return &N >= &Ns[5]; }; local
576 return partition(L) < partition(R);
  /external/tensorflow/tensorflow/contrib/kafka/kernels/
kafka_dataset_ops.cc 228 int32 partition = 0; local
230 if (!strings::safe_strto32(parts[1], &partition)) {
242 RdKafka::TopicPartition::create(topic, partition, offset));
286 "Failed to assign partition [", topic_partition_->topic(), ", ",
287 topic_partition_->partition(), ", ", topic_partition_->offset(),
  /external/u-boot/arch/arm/cpu/armv8/zynqmp/
handoff.c 55 /* Structure corresponding to each partition entry */
65 struct xfsbl_partition partition[FSBL_MAX_PARTITIONS]; member in struct:xfsbl_atf_handoff_params
80 atfhandoffparams->partition[0].entry_point = CONFIG_SYS_TEXT_BASE;
81 atfhandoffparams->partition[0].flags = FSBL_FLAGS_EL2 <<
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestMetazoneTransitions.java 247 Relation<ZoneTransitions, String> partition = Relation.of( local
258 partition.put(transitions, zone);
287 System.out.println("*** Non-Daylight Partition");
296 for (ZoneTransitions transitions : partition.keySet()) {
301 System.out.println("Non-Daylight Partition "
305 for (String zone : partition.getAll(transitions)) {
318 + CldrUtility.join(partition.getAll(transitions), ", ")
329 + CldrUtility.join(partition.getAll(transitions), ", ")
353 System.out.println("*** Offsets with no stable partition");
362 System.out.println("*** Daylight Partition");
    [all...]

Completed in 2553 milliseconds

1 2 3 4 5