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

1 2

  /external/chromium_org/chrome/installer/mini_installer/
decompress.h 8 // arraysize borrowed from basictypes.h
11 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
  /external/chromium_org/chrome_frame/
chrome_launcher.h 10 // arraysize macro shamelessly stolen from base\basictypes.h
14 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
  /external/chromium_org/sandbox/linux/seccomp-bpf/
port.h 16 #define arraysize(x) (sizeof(x)/sizeof(*(x))) macro
  /external/ceres-solver/include/ceres/internal/
macros.h 66 // The arraysize(arr) macro returns the # of elements in an array arr.
68 // used in defining new arrays, for example. If you use arraysize on
71 // One caveat is that arraysize() doesn't accept any array of an
73 // cases, you have to use the unsafe ARRAYSIZE() macro below. This is
77 // This template function declaration is used in defining arraysize.
91 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
93 // ARRAYSIZE performs essentially the same calculation as arraysize,
95 // functions. It's less safe than arraysize as it accepts some
96 // (although not all) pointers. Therefore, you should use arraysize
    [all...]
  /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_org/third_party/cld/base/
macros.h 24 // COMPILE_ASSERT(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
107 // The arraysize(arr) macro returns the # of elements in an array arr.
109 // used in defining new arrays, for example. If you use arraysize on
112 // One caveat is that arraysize() doesn't accept any array of an
114 // cases, you have to use the unsafe ARRAYSIZE() macro below. This is
118 // This template function declaration is used in defining arraysize.
132 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
134 // ARRAYSIZE performs essentially the same calculation as arraysize,
136 // functions. It's less safe than arraysize as it accepts som
    [all...]
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/eigen/test/
mapstride.cpp 21 Index arraysize = 3*size; local
23 Scalar* a_array = internal::aligned_new<Scalar>(arraysize+1);
48 internal::aligned_delete(a_array, arraysize+1);
60 Index arraysize = 2*(rows+4)*(cols+4); local
62 Scalar* a_array = internal::aligned_new<Scalar>(arraysize+1);
113 internal::aligned_delete(a_array, arraysize+1);
  /external/chromium_org/cc/animation/
animation.cc 29 arraysize(s_runStateNames), member in namespace:__anon6446
39 arraysize(s_targetPropertyNames), member in namespace:__anon6446
  /external/chromium_org/gpu/command_buffer/common/
types.h 78 // The arraysize(arr) macro returns the # of elements in an array arr.
80 // used in defining new arrays, for example. If you use arraysize on
83 // One caveat is that arraysize() doesn't accept any array of an
89 // This template function declaration is used in defining arraysize.
103 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
  /art/runtime/base/
macros.h 28 // COMPILE_ASSERT(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
62 // The arraysize(arr) macro returns the # of elements in an array arr.
64 // used in defining new arrays, for example. If you use arraysize on
67 // One caveat is that arraysize() doesn't accept any array of an
73 // This template function declaration is used in defining arraysize.
79 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
81 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
83 // functions. It's less safe than arraysize as it accepts some
84 // (although not all) pointers. Therefore, you should use arraysize
  /external/chromium/chrome/common/extensions/
url_pattern.cc 39 COMPILE_ASSERT(arraysize(kValidSchemes) == arraysize(kValidSchemeMasks), member in namespace:__anon5253
64 COMPILE_ASSERT(URLPattern::NUM_PARSE_RESULTS == arraysize(kParseResultMessages),
203 for (size_t i = 0; i < arraysize(kValidSchemes); ++i) {
343 for (size_t i = 0; i < arraysize(kValidSchemes); ++i) {
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
basictypes.h 105 // The arraysize(arr) macro returns the # of elements in an array arr.
107 // used in defining new arrays, for example. If you use arraysize on
110 // One caveat is that arraysize() doesn't accept any array of an
116 // This template function declaration is used in defining arraysize.
130 #if !defined(arraysize)
131 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
134 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
136 // functions. It's less safe than arraysize as it accepts some
137 // (although not all) pointers. Therefore, you should use arraysize
  /external/chromium_org/third_party/ots/src/
ots.h 18 // arraysize borrowed from base/basictypes.h
21 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
  /external/chromium_org/third_party/re2/util/
util.h 92 #define arraysize(array) (sizeof(array)/sizeof((array)[0])) macro
  /external/regex-re2/util/
util.h 91 #define arraysize(array) (sizeof(array)/sizeof((array)[0])) macro
  /external/chromium/base/
basictypes.h 105 // The arraysize(arr) macro returns the # of elements in an array arr.
107 // used in defining new arrays, for example. If you use arraysize on
110 // One caveat is that arraysize() doesn't accept any array of an
116 // This template function declaration is used in defining arraysize.
130 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
132 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
134 // functions. It's less safe than arraysize as it accepts some
135 // (although not all) pointers. Therefore, you should use arraysize
  /external/chromium_org/base/
basictypes.h 112 // The arraysize(arr) macro returns the # of elements in an array arr.
114 // used in defining new arrays, for example. If you use arraysize on
117 // One caveat is that arraysize() doesn't accept any array of an
123 // This template function declaration is used in defining arraysize.
137 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
139 // ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,
141 // functions. It's less safe than arraysize as it accepts some
142 // (although not all) pointers. Therefore, you should use arraysize
  /external/chromium_org/extensions/common/
url_pattern.cc 42 COMPILE_ASSERT(arraysize(kValidSchemes) == arraysize(kValidSchemeMasks), member in namespace:__anon10631
66 COMPILE_ASSERT(URLPattern::NUM_PARSE_RESULTS == arraysize(kParseResultMessages),
287 for (size_t i = 0; i < arraysize(kValidSchemes); ++i) {
512 for (size_t i = 0; i < arraysize(kValidSchemes); ++i) {
  /external/chromium_org/third_party/npapi/npspy/common/
format.cpp 66 // The arraysize(arr) macro returns the # of elements in an array arr.
68 // used in defining new arrays, for example. If you use arraysize on
71 // One caveat is that arraysize() doesn't accept any array of an
77 // This template function declaration is used in defining arraysize.
91 #define arraysize(array) (sizeof(ArraySizeHelper(array))) macro
126 int result = vsnprintf(stack_buf, arraysize(stack_buf), format, ap_copy);
129 if (result >= 0 && result < static_cast<int>(arraysize(stack_buf))) {
136 int mem_length = arraysize(stack_buf);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
basictypes.h 191 #define arraysize(a) (sizeof(a) / sizeof(*(a))) macro
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
basictypes.h 191 #define arraysize(a) (sizeof(a) / sizeof(*(a))) macro
  /external/chromium/chrome/browser/extensions/
extension_webrequest_api.cc 65 arraysize(kResourceTypeStrings) == arraysize(kResourceTypeValues), member in namespace:__anon4581
68 #define ARRAYEND(array) (array + arraysize(array))
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api_helpers.cc 75 arraysize(kResourceTypeStrings) == arraysize(kResourceTypeValues), member in namespace:extension_web_request_api_helpers::__anon7374
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller_interactive_uitest.cc 1574 arraysize(kDragPoints) == arraysize(kDeviceScaleFactorExpectations), member in namespace:__anon8835
    [all...]

Completed in 595 milliseconds

1 2