Searched refs:fArray (Results 1 - 15 of 15) sorted by relevance

/haiku/src/bin/bfs_tools/lib/
H A DStack.h20 fArray(NULL),
28 if (fArray)
29 free(fArray);
37 fArray = (T *)realloc(fArray,fMax * sizeof(T));
38 if (fArray == NULL)
41 fArray[fUsed++] = value;
50 *value = fArray[--fUsed];
55 T *fArray; member in class:Stack
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPArray.cpp13 fArray(NULL),
22 if (fArray != NULL) {
24 delete fArray[i];
25 delete[] fArray;
26 fArray = NULL;
36 fArray = new PointerType[size];
37 if (fArray == NULL)
42 fArray[i] = NULL;
59 ASSERT(fArray != NULL);
60 ASSERT(fArray[fSiz
[all...]
H A DGPArray.h28 TYPE** fArray; member in class:GPArray
/haiku/headers/private/media/
H A DTStack.h15 fArray(NULL),
23 if (fArray)
24 free(fArray);
31 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
35 fArray = newArray;
37 fArray[fUsed++] = value;
46 *value = fArray[--fUsed];
56 T *fArray; member in class:Stack
/haiku/headers/private/fs_shell/
H A DStack.h21 fArray(NULL),
29 free(fArray);
47 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
51 fArray = newArray;
53 fArray[fUsed++] = value;
62 *value = fArray[--fUsed];
68 return fArray;
77 T *fArray; member in class:FSShell::Stack
/haiku/src/apps/sudoku/
H A DStack.h18 fArray(NULL),
26 free(fArray);
44 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
48 fArray = newArray;
50 fArray[fUsed++] = value;
59 *value = fArray[--fUsed];
65 return fArray;
74 T *fArray; member in class:Stack
/haiku/src/add-ons/translators/rtf/
H A DStack.h19 fArray(NULL),
27 free(fArray);
45 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
49 fArray = newArray;
51 fArray[fUsed++] = value;
60 *value = fArray[--fUsed];
65 T *fArray; member in class:Stack
/haiku/headers/private/kernel/util/
H A DStack.h20 fArray(NULL),
28 free(fArray);
46 T *newArray = (T *)realloc(fArray, fMax * sizeof(T));
50 fArray = newArray;
52 fArray[fUsed++] = value;
61 *value = fArray[--fUsed];
67 return fArray;
76 T *fArray; member in class:Stack
/haiku/src/tests/kits/app/bmessenger/
H A DHelpers.h42 : fObject(object), fArray(array) {}
45 if (fArray)
53 bool fArray; member in class:AutoDeleter
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DPhysicalMemoryAllocator.cpp46 fArray = (uint8 **)malloc(size);
62 fArray[i] = (uint8 *)malloc(size);
63 memset(fArray[i], 0, fArrayLength[i]);
104 free(fArray[i]);
106 free(fArray);
166 uint8 *targetArray = fArray[arrayToUse];
180 memset(&fArray[j][arrayIndex], 1, fillSize);
188 fArray[j][arrayIndex]++;
189 if (fArray[j][arrayIndex] > 1)
268 if (fArray[arrayToUs
[all...]
H A DPhysicalMemoryAllocator.h57 uint8 **fArray; member in class:PhysicalMemoryAllocator
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDReportItem.h24 bool Array() { return fArray; };
54 bool fArray; member in class:HIDReportItem
H A DHIDReportItem.cpp27 fArray(isArray),
187 TRACE_ALWAYS("%s\tarray: %s\n", indent, fArray ? "yes" : "no");
/haiku/src/apps/mail/
H A DContent.h298 text_run_array &Array() { return *fArray; }
302 text_run_array *fArray; member in class:TextRunArray
H A DContent.cpp569 fArray = (text_run_array *)malloc(sizeof(int32) + sizeof(text_run) * entries);
570 if (fArray != NULL)
571 fArray->count = 0;
577 free(fArray);

Completed in 118 milliseconds