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

1 2 3

  /bootable/diskinstaller/
installer_img_layout.conf 7 # What LBA should the partitions start at?
13 partitions {
android_img_system_layout.conf 7 # What LBA should the partitions start at?
13 partitions {
android_img_data_layout.conf 7 # What LBA should the partitions start at?
13 partitions {
  /external/webp/src/enc/
config.c 38 config->partitions = 0;
107 if (config->partitions < 0 || config->partitions > 3)
  /build/target/board/vbox_x86/
disk_layout.conf 24 partitions {
  /external/guava/guava-tests/test/com/google/common/collect/
ListsTest.java 763 List<List<Integer>> partitions = Lists.partition(source, 1); local
764 assertTrue(partitions.isEmpty());
765 assertEquals(0, partitions.size());
770 List<List<Integer>> partitions = Lists.partition(source, 1); local
771 assertEquals(1, partitions.size());
772 assertEquals(Collections.singletonList(1), partitions.get(0));
777 List<List<Integer>> partitions = Lists.partition(source, 2); local
778 assertEquals(1, partitions.size());
779 assertEquals(Collections.singletonList(1), partitions.get(0));
784 List<List<Integer>> partitions = Lists.partition(source, 1) local
792 List<List<Integer>> partitions = Lists.partition(source, 2); local
801 List<List<Integer>> partitions = Lists.partition(source, 2); local
818 List<List<Integer>> partitions = Lists.partition(source, 2); local
828 List<List<Integer>> partitions = Lists.partition(list, 3); local
    [all...]
IteratorsTest.java 839 Iterator<List<Integer>> partitions = Iterators.partition(source, 1); local
840 assertFalse(partitions.hasNext());
845 Iterator<List<Integer>> partitions = Iterators.partition(source, 1); local
846 assertTrue(partitions.hasNext());
847 assertTrue(partitions.hasNext());
848 assertEquals(ImmutableList.of(1), partitions.next());
849 assertFalse(partitions.hasNext());
854 Iterator<List<Integer>> partitions = Iterators.partition(source, 2); local
855 assertTrue(partitions.hasNext());
856 assertTrue(partitions.hasNext())
879 Iterator<List<Integer>> partitions local
896 Iterator<List<Integer>> partitions = Iterators.partition(source, 2); local
912 Iterator<List<Integer>> partitions = Iterators.paddedPartition(source, 1); local
918 Iterator<List<Integer>> partitions = Iterators.paddedPartition(source, 1); local
927 Iterator<List<Integer>> partitions = Iterators.paddedPartition(source, 2); local
952 Iterator<List<Integer>> partitions local
967 Iterator<List<Integer>> partitions = Iterators.paddedPartition(source, 2); local
    [all...]
IterablesTest.java 440 Iterable<List<Integer>> partitions = Iterables.partition(source, 1);
441 assertTrue(Iterables.isEmpty(partitions));
446 Iterable<List<Integer>> partitions = Iterables.partition(source, 1);
447 assertEquals(1, Iterables.size(partitions));
448 assertEquals(Collections.singletonList(1), partitions.iterator().next());
453 Iterable<List<Integer>> partitions = Iterables.partition(list, 2);
458 Iterator<List<Integer>> iterator = partitions.iterator();
475 Iterable<List<Integer>> partitions = Iterables.partition(source, 2);
476 Iterator<List<Integer>> iterator = partitions.iterator();
485 Iterable<List<Integer>> partitions = Iterables.partition(source, 2)
    [all...]
  /external/tremolo/Tremolo/
res012.c 69 info->partitions=(char)(oggpack_read(opb,6)+1);
73 info->stagemasks=_ogg_malloc(info->partitions*sizeof(*info->stagemasks));
74 info->stagebooks=_ogg_malloc(info->partitions*8*sizeof(*info->stagebooks));
76 for(j=0;j<info->partitions;j++){
83 for(j=0;j<info->partitions;j++){
142 partword[0][i+k]=partword[0][i+k+1]*info->partitions;
163 /* now we decode residual values for the partitions */
210 partword[i+k]=partword[i+k+1]*info->partitions;
225 /* now we decode residual values for the partitions */
codec_internal.h 123 int partitions; /* 0 to 31 */ member in struct:__anon13046
142 char partitions; /* possible codebooks for a partition */ member in struct:vorbis_info_residue
floor1.c 112 /* read partitions */
113 info->partitions=oggpack_read(opb,5); /* only 0 to 31 legal */
115 (char *)_ogg_malloc(info->partitions*sizeof(*info->partitionclass));
116 for(j=0;j<info->partitions;j++){
144 for(j=0,k=0;j<info->partitions;j++)
156 for(j=0,k=0;j<info->partitions;j++){
304 for(i=0,j=2;i<info->partitions;i++){
  /bootable/recovery/mtdutils/
mtdutils.c 57 MtdPartition *partitions; member in struct:__anon734
63 NULL, // partitions
79 if (g_mtd_state.partitions == NULL) {
81 MtdPartition *partitions = malloc(nump * sizeof(*partitions)); local
82 if (partitions == NULL) {
86 g_mtd_state.partitions = partitions;
88 memset(partitions, 0, nump * sizeof(*partitions));
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dosio.c 42 * Array of all opened partitions
44 static PARTITION **partitions = NULL; variable
45 static unsigned short npart = 0; /* Number of mapped partitions */
105 * For partition numbers >5 Linux uses DOS extended partitions -
107 * extended partitions when scanning for a first Linux/ext2fs.
116 return NULL; /* We don't support extended partitions for now */
217 if(!strcmp(partitions[i]->dev, dev))
220 active = partitions[i];
335 newparts = (PARTITION**)realloc(partitions, sizeof(PARTITION) * npart);
340 partitions = newparts
    [all...]
  /external/webp/include/webp/
encode.h 70 int partitions; // log2(number of token partitions) in [0..3] member in struct:__anon15204
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 130 // partitions
131 String partitions = getPartitions(); local
132 addResult(PARTITIONS, partitions);
  /external/libxml2/
relaxng.c 286 int nbgroups; /* number of groups in the partitions */
931 * @partitions: a partition set structure
936 xmlRelaxNGFreePartition(xmlRelaxNGPartitionPtr partitions)
941 if (partitions != NULL) {
942 if (partitions->groups != NULL) {
943 for (j = 0; j < partitions->nbgroups; j++) {
944 group = partitions->groups[j];
953 xmlFree(partitions->groups);
955 if (partitions->triage != NULL) {
956 xmlHashFree(partitions->triage, NULL)
4315 xmlRelaxNGPartitionPtr partitions = NULL; local
9268 xmlRelaxNGPartitionPtr partitions; local
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
sgiarcs.h 319 struct sgi_partition partitions[SGIBBLOCK_MAXPART]; member in struct:sgi_bootblock
  /bionic/libc/kernel/common/linux/mtd/
nand.h 299 struct mtd_partition *partitions; member in struct:platform_nand_chip
  /development/ndk/platforms/android-3/include/linux/mtd/
nand.h 305 struct mtd_partition *partitions; member in struct:platform_nand_chip
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 319 struct sgi_partition partitions[SGIBBLOCK_MAXPART]; member in struct:sgi_bootblock
  /external/kernel-headers/original/linux/mtd/
nand.h 530 * @nr_partitions: number of partitions pointed to by partitions (or zero)
531 * @partitions: mtd partition list
541 struct mtd_partition *partitions; member in struct:platform_nand_chip
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
sgiarcs.h 319 struct sgi_partition partitions[SGIBBLOCK_MAXPART]; member in struct:sgi_bootblock
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/mtd/
nand.h 305 struct mtd_partition *partitions; member in struct:platform_nand_chip
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
sgiarcs.h 319 struct sgi_partition partitions[SGIBBLOCK_MAXPART]; member in struct:sgi_bootblock
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/mtd/
nand.h 305 struct mtd_partition *partitions; member in struct:platform_nand_chip

Completed in 1424 milliseconds

1 2 3