Lines Matching refs:with
7 pages with vmalloc(). This solution not ideal, though. On 32-bit systems,
29 The creation of a flexible array is done with:
43 It is also possible to define flexible arrays at compile time with:
47 This macro will result in a definition of an array with the given name; the
50 Storing data into a flexible array is accomplished with a call to:
76 Getting data back out of the array is done with:
89 Note that, if array elements are allocated with __GFP_ZERO, they will be
92 Individual elements in the array can be cleared with:
99 element does not release the storage associated with it; to reduce the
107 if the array's pages are allocated with __GFP_ZERO.
109 It is possible to remove all elements of an array with a call to:
114 Freeing the entire array is done with:
120 that will probably be fixed when somebody comes up with a need for it.