HomeSort by relevance Sort by last modified time
    Searched full:sizeof (Results 526 - 550 of 23619) sorted by null

<<21222324252627282930>>

  /system/security/keystore/
keyblob_utils.cpp 42 return sizeof(SOFT_KEY_MAGIC);
46 if (key_blob_length < sizeof(SOFT_KEY_MAGIC)) {
50 memcpy(key_blob, SOFT_KEY_MAGIC, sizeof(SOFT_KEY_MAGIC));
52 return key_blob + sizeof(SOFT_KEY_MAGIC);
56 if (key_blob_length < sizeof(SOFT_KEY_MAGIC)) {
60 return !memcmp(key_blob, SOFT_KEY_MAGIC, sizeof(SOFT_KEY_MAGIC));
  /external/chromium_org/third_party/icu/source/test/cintltst/
nccbtst.c 31 #define ARRAY_LENGTH(array) (sizeof(array)/sizeof((array)[0]))
184 if(!testConvertFromUnicode(sampleText, sizeof(sampleText)/sizeof(sampleText[0]),
185 expskipIBM_949, sizeof(expskipIBM_949), "ibm-949",
188 if(!testConvertFromUnicode(sampleText2, sizeof(sampleText2)/sizeof(sampleText2[0]),
189 expskipIBM_943, sizeof(expskipIBM_943), "ibm-943",
200 if(!testConvertFromUnicode(fromU, sizeof(fromU)/U_SIZEOF_UCHAR,
201 fromUBytes, sizeof(fromUBytes)
    [all...]
  /external/icu4c/test/cintltst/
nccbtst.c 33 #define ARRAY_LENGTH(array) (sizeof(array)/sizeof((array)[0]))
190 if(!testConvertFromUnicode(sampleText, sizeof(sampleText)/sizeof(sampleText[0]),
191 expskipIBM_949, sizeof(expskipIBM_949), "ibm-949",
194 if(!testConvertFromUnicode(sampleText2, sizeof(sampleText2)/sizeof(sampleText2[0]),
195 expskipIBM_943, sizeof(expskipIBM_943), "ibm-943",
206 if(!testConvertFromUnicode(fromU, sizeof(fromU)/U_SIZEOF_UCHAR,
207 fromUBytes, sizeof(fromUBytes)
    [all...]
  /bionic/libc/unistd/
charclass.h 29 #define NCCLASSES (sizeof(cclasses) / sizeof(cclasses[0]) - 1)
  /development/ndk/platforms/android-3/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl_ftable.h 37 static int renderControl_num_funcs = sizeof(renderControl_funcs_by_name) / sizeof(struct _renderControl_funcs_by_name);
  /external/chromium_org/content/test/plugin/
plugin_get_javascript_url2_test.cc 47 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
75 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
97 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
112 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(data),
  /external/chromium_org/mojo/public/bindings/lib/
message_builder.cc 13 : buf_(sizeof(MessageHeader) + payload_size) {
15 static_cast<MessageHeader*>(buf_.Allocate(sizeof(MessageHeader)));
  /external/chromium_org/net/base/
zap.cc 15 ZapBuf(&(*s)[0], s->length() * sizeof(char));
20 ZapBuf(&(*s)[0], s->length() * sizeof(base::char16));
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
m_wp.c 36 sizeof(EVP_MD *)+sizeof(WHIRLPOOL_CTX),
  /external/chromium_org/third_party/skia/src/core/
SkBuffer.cpp 92 return (char*)buffer + sizeof(int32_t);
100 memcpy((int32_t*)buffer, values, count * sizeof(int32_t));
101 return (char*)buffer + count * sizeof(int32_t);
109 return (const char*)buffer + sizeof(int32_t);
118 memcpy(values, (const int32_t*)buffer, count * sizeof(int32_t));
119 return (const char*)buffer + count * sizeof(int32_t);
126 return (char*)buffer + sizeof(void*);
134 return (const char*)buffer + sizeof(void*);
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p7.cpp 7 static_assert(alignof(X<char, int, sizeof(int)>) == alignof(int), "");
15 static_assert(alignof(Y<char, int, sizeof(int)>) == alignof(int), "");
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p4-0x.cpp 7 int arr[sizeof(this)]; // expected-error {{invalid use of 'this' outside of a non-static member function}}
8 int sz = sizeof(this); // ok
  /external/clang/test/CodeGen/
2009-02-13-zerosize-union-field-ppc.c 10 printf("%ld\n", sizeof(a));
12 printf("%ld\n", sizeof(b));
  /external/clang/test/CodeGenCXX/
predefined-expr-sizeof.cpp 9 int size = sizeof(__PRETTY_FUNCTION__);
17 int size = sizeof(__PRETTY_FUNCTION__);
  /external/clang/test/Sema/
complex-promotion.c 12 int f[sizeof(e) == 2 * sizeof(double) ? 1 : -1];
decl-type-merging.c 5 int testx[(sizeof(x) == sizeof(int) * 10) ? 1 : -1];
memset-invalid-1.c 12 memset(query, 0, sizeof(query)); // expected-warning {{'memset' call operates on objects of type 'struct __incomplete' while the size is based on a different type 'incomplete'}} \
13 // expected-note {{did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)?}}
ms_wide_predefined_expr.cpp 9 static int arr[sizeof(STR2WSTR(__FUNCTION__))==12*sizeof(wchar_t) ? 1 : -1];
varargs_unreachable.c 6 #define VA_ARG_RDAR12322000(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN_RDAR12322000)) ? (TYPE)(__builtin_va_arg (Marker, UINTN_RDAR12322000)) : (TYPE)(__builtin_va_arg (Marker, TYPE)))
  /external/dropbear/libtomcrypt/testprof/
base64_test.c 10 l1 = sizeof(out);
12 l2 = sizeof(tmp);
  /external/dropbear/libtommath/mtest/
mpi-types.h 8 #define MP_DIGIT_BIT (CHAR_BIT*sizeof(mp_digit))
10 #define MP_WORD_BIT (CHAR_BIT*sizeof(mp_word))
  /external/kernel-headers/original/sound/
tlv.h 29 * .... data aligned to sizeof(unsigned int), use
30 * block_length = (length + (sizeof(unsigned int) - 1)) &
31 * ~(sizeof(unsigned int) - 1)) ....
44 SNDRV_CTL_TLVT_DB_SCALE, 2 * sizeof(unsigned int), \
51 SNDRV_CTL_TLVT_DB_MINMAX, 2 * sizeof(unsigned int), \
54 SNDRV_CTL_TLVT_DB_MINMAX_MUTE, 2 * sizeof(unsigned int), \
63 SNDRV_CTL_TLVT_DB_LINEAR, 2 * sizeof(unsigned int), \
72 SNDRV_CTL_TLVT_DB_RANGE, 6 * (num) * sizeof(unsigned int)
  /external/libselinux/src/
setenforce.c 23 snprintf(path, sizeof path, "%s/enforce", selinux_mnt);
28 snprintf(buf, sizeof buf, "%d", value);
  /external/libvpx/libvpx/vp9/common/
vp9_common.h 33 assert(sizeof(dest) == sizeof(src)); \
34 vpx_memcpy(dest, src, sizeof(src)); \
39 assert(sizeof(*dest) == sizeof(*src)); \
40 vpx_memcpy(dest, src, n * sizeof(*src)); \
43 #define vp9_zero(dest) vpx_memset(&dest, 0, sizeof(dest))
44 #define vp9_zero_array(dest, n) vpx_memset(dest, 0, n * sizeof(*dest))

Completed in 555 milliseconds

<<21222324252627282930>>