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

1 2 3 4 5 6 7

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
partition.h 1 /* List implementation of a partition of consecutive integers.
22 /* This package implements a partition of consecutive integers. The
26 on a partition are FIND, which takes an element, determines its
33 it is able to perform unions over all the classes in the partition
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
65 } *partition; typedef in typeref:struct:partition_def
67 extern partition partition_new (int);
68 extern void partition_delete (partition);
69 extern int partition_union (partition, int, int)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
partition.h 1 /* List implementation of a partition of consecutive integers.
22 /* This package implements a partition of consecutive integers. The
26 on a partition are FIND, which takes an element, determines its
33 it is able to perform unions over all the classes in the partition
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
65 } *partition; typedef in typeref:struct:partition_def
67 extern partition partition_new (int);
68 extern void partition_delete (partition);
69 extern int partition_union (partition, int, int)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
partition.h 1 /* List implementation of a partition of consecutive integers.
22 /* This package implements a partition of consecutive integers. The
26 on a partition are FIND, which takes an element, determines its
33 it is able to perform unions over all the classes in the partition
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
65 } *partition; typedef in typeref:struct:partition_def
67 extern partition partition_new (int);
68 extern void partition_delete (partition);
69 extern int partition_union (partition, int, int)
    [all...]
  /bootable/diskinstaller/
installer.conf 9 partition boot
15 partition system
21 partition data
27 partition cache
32 partition third_party
38 # partition system
  /packages/apps/Contacts/src/com/android/contacts/widget/
PinnedHeaderListAdapter.java 25 * A subclass of {@link CompositeCursorAdapter} that manages pinned partition headers.
59 protected boolean isPinnedPartitionHeaderVisible(int partition) {
60 return mPinnedPartitionHeadersEnabled && hasHeader(partition)
61 && !isPartitionEmpty(partition);
66 * partition header.
68 public View getPinnedHeaderView(int partition, View convertView, ViewGroup parent) {
69 if (hasHeader(partition)) {
78 view = newHeaderView(getContext(), partition, null, parent);
83 bindHeaderView(view, partition, getCursor(partition));
117 int partition = getPartitionForPosition(position); local
140 int partition = getPartitionForPosition(position - 1); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
pns_left.cpp 175 partition = *(pGroup);
182 wins_in_group = (partition - window_start);
243 window_start = partition;
245 WHILE (partition < pFrameInfo->num_win);
346 Int partition; local
355 partition = 0;
358 Int num_bands = pFrameInfo->sfb_per_win[partition];
359 pBand = pFrameInfo->win_sfb_top[partition];
362 Partition is equal to the first window in the next group
373 partition = *pGroup++; /* partition = index of last sbk in group *
    [all...]
apply_ms_synt.cpp 159 partition = *(pGroup);
165 wins_in_group = (partition - window_start);
221 window_start = partition;
223 WHILE (partition < pFrameInfo->num_win);
321 Int partition; local
362 * Partition is equal to the first window in the next group
373 partition = *(pGroup++);
377 wins_in_group = (partition - window_start);
443 window_start = partition;
446 while (partition < pFrameInfo->num_win)
    [all...]
pns_intensity_right.cpp 189 partition = *pGroup;
194 wins_in_group = (partition - window_start);
311 window_start = partition;
313 WHILE (partition < pFrameInfo->num_win);
421 Int partition; local
466 Partition is equal to the first window in the next group
476 partition = *(pGroup++);
480 wins_in_group = (partition - window_start);
642 window_start = partition;
645 while (partition < pFrameInfo->num_win)
    [all...]
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 94 * Model object for a {@link Directory} row. There is a partition in the
98 public final static class DirectoryPartition extends CompositeCursorAdapter.Partition {
309 DirectoryPartition partition = (DirectoryPartition)getPartition(partitionIndex); local
310 return partition.loading ? 1 : 0;
316 DirectoryPartition partition = (DirectoryPartition)getPartition(partitionIndex); local
317 if (partition.loading) {
325 protected void bindView(View v, int partition, Cursor cursor, int position) {
326 DirectoryPartition directoryPartition = (DirectoryPartition)getPartition(partition);
381 DirectoryPartition partition = new DirectoryPartition(); local
382 partition.directoryId = id
443 DirectoryPartition partition = (DirectoryPartition) getPartition(i); local
463 DirectoryPartition partition = (DirectoryPartition) getPartition(i); local
484 DirectoryPartition partition = (DirectoryPartition) getPartition(partitionIndex); local
503 DirectoryPartition partition = (DirectoryPartition) getPartition(partitionIndex); local
    [all...]
  /frameworks/ex/common/java/com/android/common/widget/
CompositeCursorAdapter.java 32 public static class Partition {
40 public Partition(boolean showIfEmpty, boolean hasHeader) {
58 private Partition[] mPartitions;
71 mPartitions = new Partition[INITIAL_CAPACITY];
79 * Registers a partition. The cursor for that partition can be set later.
84 addPartition(new Partition(showIfEmpty, hasHeader));
87 public void addPartition(Partition partition) {
90 Partition[] newAdapters = new Partition[newCapacity]
    [all...]
  /bootable/recovery/mtdutils/
mtdutils.c 39 const MtdPartition *partition; member in struct:MtdReadContext
46 const MtdPartition *partition; member in struct:MtdWriteContext
193 mtd_mount_partition(const MtdPartition *partition, const char *mount_point,
200 sprintf(devname, "/dev/block/mtdblock%d", partition->device_index);
238 mtd_partition_info(const MtdPartition *partition,
242 sprintf(mtddevname, "/dev/mtd/mtd%d", partition->device_index);
257 MtdReadContext *mtd_read_partition(const MtdPartition *partition)
262 ctx->buffer = malloc(partition->erase_size);
269 sprintf(mtddevname, "/dev/mtd/mtd%d", partition->device_index);
277 ctx->partition = partition
409 const MtdPartition *partition = ctx->partition; local
    [all...]
mtdutils.h 31 int mtd_mount_partition(const MtdPartition *partition, const char *mount_point,
34 /* get the partition and the minimum erase/write block size. NULL is ok.
36 int mtd_partition_info(const MtdPartition *partition,
39 /* read or write raw data from a partition, starting at the beginning.
flash_image.c 49 /* Read an image file and write it to a flash partition. */
58 fprintf(stderr, "usage: %s partition file.img\n", argv[0]);
63 const MtdPartition *partition = mtd_find_partition_by_name(argv[1]); local
64 if (partition == NULL) die("can't find %s partition", argv[1]);
66 // If the first part of the file matches the partition, skip writing
75 MtdReadContext *in = mtd_read_partition(partition);
95 MtdWriteContext *out = mtd_write_partition(partition);
114 out = mtd_write_partition(partition);
122 if (mtd_partition_info(partition, NULL, &block_size, NULL)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactEntryListAdapter.java 131 DirectoryPartition partition = new DirectoryPartition(true, true); local
132 partition.setDirectoryId(Directory.DEFAULT);
133 partition.setDirectoryType(getContext().getString(R.string.contactsList));
134 partition.setPriorityDirectory(true);
135 partition.setPhotoSupported(true);
136 return partition;
142 Partition partition = getPartition(i); local
143 if (partition instanceof DirectoryPartition) {
144 if (((DirectoryPartition)partition).getDirectoryId() == id)
162 Partition partition = getPartition(i); local
180 Partition partition = getPartition(i); local
345 DirectoryPartition partition = new DirectoryPartition(false, true); local
359 Partition partition = getPartition(i); local
379 Partition partition = getPartition(partitionIndex); local
461 Partition partition = getPartition(i); local
487 Partition partition = getPartition(i); local
509 Partition partition = getPartition(partitionIndex); local
554 int partition = getPartitionForPosition(position); local
585 Partition partition = getPartition(partitionIndex); local
    [all...]
JoinContactListAdapter.java 57 // Partition 0: suggestions
60 // Partition 1: All contacts
117 // Don't change default partition parameters from these defaults
127 public int getItemViewType(int partition, int position) {
128 return super.getItemViewType(partition, position);
132 protected View newHeaderView(Context context, int partition, Cursor cursor,
134 switch (partition) {
158 protected View newView(Context context, int partition, Cursor cursor, int position,
160 switch (partition) {
163 return super.newView(context, partition, cursor, position, parent)
    [all...]
  /external/grub/stage2/
freebsd.h 44 * adaptor (uba, mba, etc), unit number and partition number.
62 #define MAKEBOOTDEV(type, adaptor, controller, unit, partition) \
65 ((partition) << B_PARTITIONSHIFT) | B_DEVMAGIC)
  /external/grub/lib/
device.h 44 extern int write_to_partition (char **map, int drive, int partition,
  /bionic/libc/kernel/common/linux/
genhd.h 42 struct partition { struct
  /development/ndk/platforms/android-3/include/linux/
genhd.h 42 struct partition { struct
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_derivedsourcesallinone.py 139 def generateContent(filesMetaData, partition, totalPartitions):
153 if (hash(name) % totalPartitions) != partition:
195 partition = outputFileNames.index(fileName)
196 fileContents = generateContent(filesMetaData, partition, len(outputFileNames))
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
genhd.h 42 struct partition { struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
genhd.h 42 struct partition { struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
genhd.h 42 struct partition { struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
genhd.h 42 struct partition { struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
genhd.h 42 struct partition { struct

Completed in 1719 milliseconds

1 2 3 4 5 6 7