HomeSort by relevance Sort by last modified time
    Searched full:pointer (Results 1 - 25 of 6327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Macintosh/
alloca.h 7 typedef void *pointer; typedef
9 pointer alloca(unsigned size);
  /external/bluetooth/glib/gio/
gio-marshal.list 3 VOID:BOOLEAN,POINTER
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_RESTORE_STATE.S 6 add r0, r0, rGLUE @ pointer to heapArgSpace.coreRegs[0]
7 add r0, #64 @ pointer to heapArgSpace.fpRegs[0]
9 sub r0, #64 @ pointer to heapArgSpace.coreRegs[0]
  /external/clearsilver/man/man3/
cgi_cs_init.3 25 cgi - a pointer a CGI struct allocated with cgi_init
27 cs - a pointer to a CS struct pointer
hdf_init.3 25 hdf - pointer to an HDF pointer
29 pointer to the top node in the data set.
cgi_destroy.3 25 cgi - a pointer to a pointer to a CGI struct
33 only exist because of the open file pointer)
cgi_filehandle.3 14 cgi_filehandle - return a file pointer to an uploaded file
25 cgi - a pointer to a CGI struct allocated with cgi_init
34 cgi_filehandle will return the stdio FILE pointer
36 multipart/form-data. The FILE pointer is positioned at
nerr_handle.3 25 err - pointer to a pointer NEOERR
wdb_keys.3 32 primary_key - pointer to the primary key
34 data - pointer to a ULIST of the columns.
  /external/webkit/WebKit/gtk/
webkitmarshal.list 7 BOOLEAN:OBJECT,STRING,POINTER
13 OBJECT:STRING,STRING,POINTER
17 VOID:OBJECT,POINTER,POINTER
  /system/core/libacc/tests/data/
pointers.c 7 printf("Pointer difference: %d %d\n", pb - pa, ((int) pb) - ((int) pa));
9 printf("Pointer addition: %d\n", c);
10 printf("Pointer comparison to zero: %d %d %d\n", pa == 0, pb == 0, pc == 0);
11 printf("Pointer comparison: %d %d %d %d %d\n", pa < pb, pa == pb, pa > pb, ! pb, ! pc);
b2071670.c 6 // The following line used to incorrectly error: "Incompatible pointer or array types"
  /frameworks/base/core/java/android/view/
VelocityTracker.java 59 private static Pointer sRecycledPointerListHead;
62 private static final class Pointer {
63 public Pointer next;
76 private Pointer mPointerListHead; // sorted by id in increasing order
149 // Update pointer data.
150 Pointer previousPointer = null;
154 // Find the pointer data for this pointer id.
155 // This loop is optimized for the common case where pointer ids in the event
158 Pointer nextPointer
166 final Pointer pointer; local
337 Pointer pointer = getPointer(0); local
348 Pointer pointer = getPointer(0); local
360 Pointer pointer = getPointer(id); local
372 Pointer pointer = getPointer(id); local
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
arrays_pointer.sgml 2 Pointer Arrays
10 Pointer Arrays are similar to Arrays but are used only for storing pointers.
22 To create a pointer array, use g_ptr_array_new().
25 To add elements to a pointer array, use g_ptr_array_add().
28 To remove elements from a pointer array, use g_ptr_array_remove(),
32 To access an element of a pointer array, use g_ptr_array_index().
35 To set the size of a pointer array, use g_ptr_array_set_size().
38 To free a pointer array, use g_ptr_array_free().
68 Contains the public fields of a pointer array.
96 Adds a pointer to the end of the pointer array
    [all...]
type_conversion.sgml 5 portably storing integers in pointer variables
10 data" to a callback, in the form of a void pointer. From time to time
11 you want to pass an integer instead of a pointer. You could allocate
23 in a pointer value. Naively, you might try this, but it's incorrect:
62 Stuffs an integer into a pointer type.
71 @i: integer to stuff into a pointer.
76 Extracts an integer from a pointer. The integer must have
77 been stored in the pointer with GINT_TO_POINTER().
86 @p: pointer containing an integer.
91 Stuffs an unsigned integer into a pointer type
    [all...]
  /external/tcpdump/tests/
isakmp2.sh 3 uudecode isakmp-pointer-loop.puu
6 if (../tcpdump -t -n -r isakmp-pointer-loop.pcap | diff - isakmp2.out)
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java 37 * Gets the pointer to the parser. We need this so we can get to the
43 * Gets the pointer to the underlying attribute array. Can be 0 if the
84 int pointer = getPointer(); local
85 if (pointer == 0) {
88 return getIndex(pointer, uri, localName);
95 int pointer = getPointer(); local
96 if (pointer == 0) {
99 return getIndexForQName(pointer, qName);
123 int pointer = getPointer(); local
124 if (pointer == 0)
134 int pointer = getPointer(); local
    [all...]
  /system/core/include/cutils/
array.h 18 * A pointer array which intelligently expands its capacity ad needed.
39 /** Adds a pointer. Returns 0 is successful, < 0 otherwise. */
40 int arrayAdd(Array* array, void* pointer);
42 /** Gets the pointer at the specified index. */
45 /** Removes the pointer at the given index and returns it. */
48 /** Sets pointer at the given index. Returns old pointer. */
49 void* arraySet(Array* array, int index, void* pointer);
58 * Returns a pointer to a C-style array which will be valid until this array
  /external/webkit/WebCore/manual-tests/
pointer-events.html 6 <title>Test for 'pointer-events' property in HTML</title>
9 pointer-events: auto;
18 pointer-events: none;
27 pointer-events: auto;
32 pointer-events: none;
41 pointer-events: none;
46 pointer-events: auto;
57 pointer-events: none;
62 pointer-events: auto;
80 pointer-events: auto
    [all...]
  /frameworks/base/core/jni/
android_nio_utils.h 25 * Given an nio.Buffer, return a pointer to it, beginning at its current
26 * position. The returned pointer is only valid for the current JNI stack-frame.
35 * and the returned pointer when the caller is through with it.
38 * @return The pointer to the memory in the buffer object
44 * Pass that array and the returned pointer when you are done accessing the
45 * pointer. If called (i.e. array is non-null), it must be called in the same
50 * @param pointer The pointer returned by android_nio_getPointer
51 * @param commit JNI_FALSE if the pointer was just read, and JNI_TRUE if
52 * the pointer was written to
62 void* pointer() const { return fPointer; } function in class:android::AutoBufferPointer
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
radiotap_iter.h 11 * @rtheader: pointer to the radiotap header we are walking through
14 * @this_arg: pointer to current radiotap arg
16 * @arg: internal next argument pointer
17 * @next_bitmap: internal pointer to next present u32
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
avcenc_lib.h 41 \param "encvid" "Pointer to AVCEncObject."
43 \param "cur" "Pointer to the reconstructed block."
44 \param "org" "Pointer to the original block."
45 \param "coef_cost" "Pointer to the coefficient cost to be filled in and returned."
52 \param "video" "Pointer to AVCCommonObj."
53 \param "curL" "Pointer to the origin of the macroblock on the current frame."
54 \param "currMB" "Pointer to the AVCMacroblock structure."
63 \param "encvid" "Pointer to AVCEncObject."
64 \param "curL" "Pointer to the reconstructed MB."
65 \param "orgL" "Pointer to the original MB.
    [all...]
  /external/icu4c/common/unicode/
localpointer.h 30 * - Smart pointer owns the object and releases it when it goes out of scope.
33 * - Need to be able to orphan/release the pointer and its ownership.
46 * "Smart pointer" base class; do not use directly: use LocalPointer etc.
48 * Base class for smart pointer classes that do not throw exceptions.
50 * Do not use this base class directly, since it does not delete its pointer.
51 * A subclass must implement methods that delete the pointer:
56 * (with transfer of ownership and NULLing of the pointer).
68 * @param p simple pointer to an object that is adopted
91 * Comparison with a simple pointer, so that existing code
93 * @param other simple pointer for compariso
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
avcdec_lib.h 32 \param "nal_unit" "(I/O) Pointer to the input buffer."
33 \param "size" "(I/O) Pointer to the size of the input/output buffer."
42 \param "video" "Pointer to AVCCommonObj."
72 \param "video" "Pointer to AVCCommonObj."
79 \param "ref" "Pointer to the origin of a reference luma."
84 \param "pred" "Pointer to the output predicted block."
102 \param "ref" "Pointer to the origin of a reference luma."
109 \param "curr" "Pointer to the current partition in the current picture."
110 \param "residue" "Pointer to the current partition for the residue block."
193 \param "video" "Pointer to AVCDecObject.
    [all...]
  /external/v8/src/
smart-pointer.h 35 // A 'scoped array pointer' that calls DeleteArray on its pointer when the
41 // Default constructor. Construct an empty scoped pointer.
45 // Construct a scoped pointer from a plain one.
46 explicit inline SmartPointer(T* pointer) : p(pointer) {}
49 // Copy constructor removes the pointer from the original to avoid double
56 // When the destructor of the scoped pointer is executed the plain pointer
62 // You can get the underlying pointer out with the * operator
    [all...]

Completed in 492 milliseconds

1 2 3 4 5 6 7 8 91011>>