Searched refs:count (Results 201 - 225 of 1780) sorted by relevance

1234567891011>>

/haiku/headers/private/shared/
H A DArray.h38 inline bool InsertUninitialized(int32 index, int32 count);
39 inline bool Remove(int32 index, int32 count = 1);
131 Array<Element>::InsertUninitialized(int32 index, int32 count) argument
133 if (index < 0 || index > fSize || count < 0)
135 if (count == 0)
138 if (!_Resize(index, count))
141 fSize += count;
148 Array<Element>::Remove(int32 index, int32 count) argument
150 if (index < 0 || count < 0 || index + count > fSiz
[all...]
/haiku/src/kits/tracker/
H A DEntryIterator.cpp91 int32 count)
93 int32 result = fWalker->GetNextDirents(buffer, length, count);
251 int32 count)
260 if (count == 0)
268 int32 count = fIterator->GetNextDirents(fCurrentDirent, local
271 if (count <= 0)
274 fNumEntries += count;
297 for (int32 count = 0; count < fNumEntries; count
90 GetNextDirents(struct dirent* buffer, size_t length, int32 count) argument
250 GetNextDirents(struct dirent* ent, size_t size, int32 count) argument
407 GetNextDirents(struct dirent* buffer, size_t length, int32 count) argument
443 int32 count = fList.CountItems(); local
502 GetNextDirents(struct dirent* buffer, size_t length, int32 count) argument
529 int32 count = fList.CountItems(); local
542 int32 count = fList.CountItems(); local
[all...]
/haiku/src/add-ons/translators/sgi/
H A DSGIImage.cpp604 uint32 count; // RLE count local
627 count = ch & 127;
628 if (count == 0)
632 for (uint32 i = 0; i < count; i++) {
663 for (uint32 i = 0; i < count; i++) {
685 uint32 count; // RLE count local
696 count = ch & 127;
697 if (count
777 uint32 count; // RLE count local
855 uint32 count; // RLE count local
902 int32 count; // number of repeated/non-repeated pixels local
987 int32 count; // number of repeated/non-repeated pixels local
[all...]
/haiku/src/kits/storage/
H A DDriverSettings.cpp127 Iterator(const driver_parameter* parameters, int32 count) argument
131 fCount(count)
167 NameIterator(const driver_parameter* parameters, int32 count, argument
172 fCount(count),
237 int32 count; local
238 return GetParametersAndCount(count) != NULL ? count : 0;
246 int32 count; local
247 return GetParametersAndCount(count);
254 int32 count; local
296 int32 count; local
308 int32 count; local
[all...]
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DPPPManager.cpp335 \param count The number of IDs in the returned array is stored here.
341 PPPManager::Interfaces(int32 *count, argument
349 requestCount = *count = CountInterfaces(filter);
350 if (*count <= 0) {
351 printf("No interface, count, first round: %" B_PRId32 "\n", *count);
361 *count = GetInterfaces(interfaces, requestCount, filter);
362 if (*count <= 0) {
363 printf("No interface, count second round: %" B_PRId32 "\n", *count);
380 GetInterfaces(ppp_interface_id *interfaces, int32 count, ppp_interface_filter filter) const argument
413 int32 count; local
532 int32 count = 0; local
[all...]
/haiku/headers/private/media/
H A DNotifications.h66 void NodesCreated(const media_node_id* ids, int32 count);
67 void NodesDeleted(const media_node_id* ids, int32 count);
72 void BuffersCreated(area_info* areas, int32 count);
73 void BuffersDeleted(const media_buffer_id* ids, int32 count);
/haiku/src/add-ons/kernel/drivers/graphics/vesa/
H A Dvga.h12 status_t vga_set_indexed_colors(uint8 first, uint8 *colors, uint16 count);
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A Dmd5.h38 UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ member in struct:__anon2557
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DVIPPort.h61 int ReadFifo(int device, uint32 address, uint32 count, uint8 *buffer) { argument
62 return fRadeon.VIPReadFifo( device, address, count, buffer );
65 int WriteFifo(int device, uint32 address, uint32 count, uint8 *buffer) { argument
66 return fRadeon.VIPWriteFifo( device, address, count, buffer );
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChartDataSource.h21 double* samples, int32 count) = 0;
/haiku/src/apps/mediaplayer/playlist/
H A DPLItemsCommand.h20 void _CleanUp(PlaylistItem**& items, int32 count,
/haiku/src/libs/iconv/
H A Dutf16be.h30 int count = 0; local
39 return count+4;
45 return count+2;
48 return RET_TOOFEW(count);
H A Dutf16le.h30 int count = 0; local
39 return count+4;
45 return count+2;
48 return RET_TOOFEW(count);
/haiku/src/tests/kits/shared/
H A DNaturalCompareTest.h26 void _RunTests(const Sample* samples, int count);
/haiku/headers/private/graphics/intel_810/
H A DDriverInterface.h28 int32 count; member in struct:Benaphore
32 count = 0;
39 if (atomic_add(&count, 1) > 0)
46 if (atomic_add(&count, -1) > 1)
/haiku/src/add-ons/media/plugins/raw_decoder/
H A DRawDecoderPlugin.h56 void (*fSwapInput)(void *data, int32 count);
57 void (*fConvert)(void *dst, const void *src, int32 count);
58 void (*fSwapOutput)(void *data, int32 count);
73 status_t GetSupportedFormats(media_format ** formats, size_t * count);
/haiku/src/bin/locale/
H A Ddumpcatalog.cpp72 int32 count = inputCatalog.CountItems(); local
73 if (count) {
74 fprintf(stderr, "%" B_PRId32 " entr%s dumped\n", count,
75 (count==1 ? "y": "ies"));
/haiku/src/system/boot/platform/u-boot/
H A Duimage.cpp45 int i, count = 0; local
50 count++;
51 base += (count + 1) * sizeof(uint32);
52 for (i = 0; sizes[i] && i < count; i++) {
/haiku/headers/compatibility/bsd/sys/
H A Dmd4.h38 u_int32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ member in struct:MD4Context
/haiku/headers/private/kernel/util/
H A Dfs_trim_support.h31 uint32 count;
32 if (user_memcpy(&count, buffer, sizeof(count)) != B_OK)
35 size_t bytes = (count - 1) * sizeof(uint64) * 2 + sizeof(fs_trim_data);
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDCollection.cpp86 int32 count = fChildren.Count(); local
87 if (count < 0 || index >= (uint32)count)
97 uint32 count = 0; local
99 count++;
106 count += child->CountChildrenFlat(type);
109 return count;
133 int32 count = fItems.Count(); local
134 if (count < 0 || index >= (uint32)count)
144 uint32 count = fItems.Count(); local
244 int32 count = fItems.Count(); local
[all...]
/haiku/src/libs/compat/openbsd_wlan/crypto/
H A Dsha1.h17 u_int64_t count; member in struct:__anon78
/haiku/src/apps/icon-o-matic/shape/commands/
H A DMoveShapesCommand.h29 int32 count,
H A DMoveTransformersCommand.h29 int32 count,
H A DAddTransformersCommand.h29 int32 count,

Completed in 140 milliseconds

1234567891011>>