HomeSort by relevance Sort by last modified time
    Searched defs:arraysize (Results 1 - 6 of 6) sorted by null

  /external/chromium/googleurl/base/
basictypes.h 13 // The arraysize(arr) macro returns the # of elements in an array arr.
15 // used in defining new arrays, for example. If you use arraysize on
18 // One caveat is that arraysize() doesn't accept any array of an
20 // cases, you have to use the unsafe ARRAYSIZE() macro below. This is
24 // This template function declaration is used in defining arraysize.
38 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
40 // ARRAYSIZE performs essentially the same calculation as arraysize,
42 // functions. It's less safe than arraysize as it accepts some
43 // (although not all) pointers. Therefore, you should use arraysize
    [all...]
  /external/chromium/base/
basictypes.h 97 // The arraysize(arr) macro returns the # of elements in an array arr.
99 // used in defining new arrays, for example. If you use arraysize on
102 // One caveat is that arraysize() doesn't accept any array of an
108 // This template function declaration is used in defining arraysize.
122 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
124 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
126 // functions. It's less safe than arraysize as it accepts some
127 // (although not all) pointers. Therefore, you should use arraysize
  /external/jpeg/
jquant1.c 725 size_t arraysize; local
728 arraysize = (size_t) ((cinfo->output_width + 2) * SIZEOF(FSERROR));
731 (*cinfo->mem->alloc_large)((j_common_ptr) cinfo, JPOOL_IMAGE, arraysize);
744 size_t arraysize; local
782 arraysize = (size_t) ((cinfo->output_width + 2) * SIZEOF(FSERROR));
784 jzero_far((void FAR *) cquantize->fserrors[i], arraysize);
jquant2.c 1199 size_t arraysize = (size_t) ((cinfo->output_width + 2) * local
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/jython/
jython.jar 

Completed in 185 milliseconds