Searched refs:indices (Results 1 - 25 of 76) sorted by relevance

1234

/haiku-fatelf/src/bin/bash/lib/glob/
H A Dxmbsrtowcs.c145 char **indices; /* Buffer for indices. */ local
168 indices = NULL;
171 indices = (char **) malloc (wsbuf_size * sizeof(char *));
172 if (indices == NULL)
208 FREE (indices);
227 FREE (indices);
235 idxtmp = (char **) realloc (indices, wsbuf_size * sizeof (char **));
239 free (indices);
243 indices
[all...]
/haiku-fatelf/src/apps/mediaplayer/playlist/
H A DPlaylistListView.h36 virtual void MoveItems(const BList& indices, int32 toIndex);
37 virtual void CopyItems(const BList& indices, int32 toIndex);
38 virtual void RemoveItemList(const BList& indices);
50 void RemoveItemList(const BList& indices,
H A DPlaylistListView.cpp371 PlaylistListView::MoveItems(const BList& indices, int32 toIndex) argument
374 (int32*)indices.Items(), indices.CountItems(), toIndex));
379 PlaylistListView::CopyItems(const BList& indices, int32 toIndex) argument
382 (int32*)indices.Items(), indices.CountItems(), toIndex));
387 PlaylistListView::RemoveItemList(const BList& indices) argument
389 RemoveItemList(indices, false);
420 BList indices;
428 if (!indices
451 BList indices; local
460 BList indices; local
467 RemoveItemList(const BList& indices, bool intoTrash) argument
[all...]
H A DCopyPLItemsCommand.h15 const int32* indices,
H A DCopyPLItemsCommand.cpp25 const int32* indices, int32 count, int32 toIndex)
34 if (!indices || !fPlaylist || !fItems) {
45 PlaylistItem* item = fPlaylist->ItemAt(indices[i]);
24 CopyPLItemsCommand(Playlist* playlist, const int32* indices, int32 count, int32 toIndex) argument
H A DMovePLItemsCommand.h15 const int32* indices,
H A DRandomizePLItemsCommand.h15 const int32* indices,
H A DRemovePLItemsCommand.h15 const int32* indices,
H A DMovePLItemsCommand.cpp26 const int32* indices, int32 count, int32 toIndex)
35 if (!indices || !fPlaylist || !fItems || !fIndices) {
43 memcpy(fIndices, indices, fCount * sizeof(int32));
45 // init original entry indices and
89 // moved item, a change only occures if the indices of the
159 // add ref to playlist at remembered indices
25 MovePLItemsCommand(Playlist* playlist, const int32* indices, int32 count, int32 toIndex) argument
H A DRandomizePLItemsCommand.cpp27 const int32* indices, int32 count)
36 if (!indices || !fPlaylist || !fItems || !fListIndices
44 memcpy(fListIndices, indices, fCount * sizeof(int32));
47 // put the available indices into a "set"
59 // remove the indices from the set in random order
120 // add refs to playlist at the randomized indices
26 RandomizePLItemsCommand(Playlist* playlist, const int32* indices, int32 count) argument
/haiku-fatelf/src/apps/icon-o-matic/shape/commands/
H A DFlipPointsCommand.h19 const int32* indices,
H A DPathCommand.cpp51 PathCommand::_Select(const int32* indices, int32 count, argument
H A DPathCommand.h32 void _Select(const int32* indices, int32 count,
H A DNudgePointsCommand.cpp28 const int32* indices,
45 if (fCount > 0 && indices) {
47 memcpy(fIndices, indices, fCount * sizeof(int32));
27 NudgePointsCommand(VectorPath* path, const int32* indices, const control_point* points, int32 count) argument
H A DFlipPointsCommand.cpp28 const int32* indices,
34 if (indices && count > 0) {
42 memcpy(fIndex, indices, count * sizeof(int32));
27 FlipPointsCommand(VectorPath* path, const int32* indices, int32 count) argument
H A DTransformPointsCommand.cpp24 const int32* indices,
45 fIndices(indices && count > 0 ?
54 memcpy(fIndices, indices, fCount * sizeof(int32));
20 TransformPointsCommand( TransformBox* box, VectorPath* path, const int32* indices, const control_point* points, int32 count, BPoint pivot, BPoint translation, double rotation, double xScale, double yScale, const char* name, int32 nameIndex) argument
H A DNudgePointsCommand.h30 const int32* indices,
H A DRemoveShapesCommand.h28 int32* const indices,
H A DRemoveTransformersCommand.h30 const int32* indices,
H A DSplitPointsCommand.h19 const int32* indices,
H A DSplitPointsCommand.cpp30 const int32* indices,
40 if (indices && count > 0) {
52 memcpy(fIndex, indices, count * sizeof(int32));
29 SplitPointsCommand(VectorPath* path, const int32* indices, int32 count) argument
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/bfs_shell/
H A Dadditional_commands.c18 fs_off_t files = 0, directories = 0, indices = 0, attributeDirectories = 0, attributes = 0; local
62 indices++;
83 files, directories, attributes, attributeDirectories, indices);
/haiku-fatelf/src/apps/icon-o-matic/transformable/
H A DTransformPointsBox.h33 const int32* indices,
/haiku-fatelf/src/bin/
H A Dlsindex.cpp25 " --mkindex\t outputs mkindex commands to recreate all the indices\n"
59 // even though they don't all apply to attribute indices
154 DIR *indices = NULL; local
183 indices = fs_open_index_dir(device);
184 if (indices == NULL) {
195 dirent *index = fs_read_index_dir(indices);
222 fs_close_index_dir(indices);
/haiku-fatelf/src/tools/bfs_shell/
H A Dcommand_checkfs.cpp50 uint64 files = 0, directories = 0, indices = 0; local
81 indices++;
115 attributeDirectories, indices);

Completed in 174 milliseconds

1234