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

<<21222324252627282930>>

  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
if_fc.h 16 #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_win32.py 10 if sys.platform == "win32" and sizeof(c_void_p) == sizeof(c_int):
53 self.assertEqual(sizeof(wintypes.HWND), sizeof(c_void_p))
57 self.assertEqual(sizeof(wintypes.WPARAM),
58 sizeof(c_void_p))
59 self.assertEqual(sizeof(wintypes.LPARAM),
60 sizeof(c_void_p))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_win32.py 10 if sys.platform == "win32" and sizeof(c_void_p) == sizeof(c_int):
53 self.assertEqual(sizeof(wintypes.HWND), sizeof(c_void_p))
57 self.assertEqual(sizeof(wintypes.WPARAM),
58 sizeof(c_void_p))
59 self.assertEqual(sizeof(wintypes.LPARAM),
60 sizeof(c_void_p))
  /system/extras/tests/ext4/
corrupt_gdt_free_blocks.c 39 if (read(fd, &sb, sizeof(sb)) != sizeof(sb)) {
58 if (sb.s_desc_size != sizeof(struct ext2_group_desc)) {
75 if (read(fd, &gd, sizeof(gd)) != sizeof(gd)) {
86 if (lseek(fd, -sizeof(gd), SEEK_CUR) == -1) {
91 if (write(fd, &gd, sizeof(gd)) != sizeof(gd)) {
  /external/chromium_org/third_party/opus/src/celt/
stack_alloc.h 101 # define ALLOC(var, size, type) var = ((type*)_alloca(sizeof(type)*(size)))
103 # define ALLOC(var, size, type) var = ((type*)alloca(sizeof(type)*(size)))
129 #define PUSH(stack, size, type) (VALGRIND_MAKE_MEM_NOACCESS(stack, global_stack_top-stack),ALIGN((stack),sizeof(type)/sizeof(char)),VALGRIND_MAKE_MEM_UNDEFINED(stack, ((size)*sizeof(type)/sizeof(char))),(stack)+=(2*(size)*sizeof(type)/sizeof(char)),(type*)((stack)-(2*(size)*sizeof(type)/sizeof(char)))
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkScriptDecompile.cpp 88 static size_t gOpNamesSize = sizeof(gOpNames) / sizeof(gOpNames[0]);
104 static size_t gOperandNamesSize = sizeof(gOperandNames) / sizeof(gOperandNames[0]);
134 memcpy(&index, opCode, sizeof(index));
135 opCode += sizeof(index);
142 memcpy(&ref, opCode, sizeof(ref));
143 opCode += sizeof(ref);
149 memcpy(&integer, opCode, sizeof(integer));
150 opCode += sizeof(int32_t)
    [all...]
  /external/skia/src/animator/
SkScriptDecompile.cpp 88 static size_t gOpNamesSize = sizeof(gOpNames) / sizeof(gOpNames[0]);
104 static size_t gOperandNamesSize = sizeof(gOperandNames) / sizeof(gOperandNames[0]);
134 memcpy(&index, opCode, sizeof(index));
135 opCode += sizeof(index);
142 memcpy(&ref, opCode, sizeof(ref));
143 opCode += sizeof(ref);
149 memcpy(&integer, opCode, sizeof(integer));
150 opCode += sizeof(int32_t)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/
__scan_keyword.pass.cpp 51 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1,
52 keys, keys+sizeof(keys)/sizeof(keys[0]),
63 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1,
64 keys, keys+sizeof(keys)/sizeof(keys[0]),
75 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1,
76 keys, keys+sizeof(keys)/sizeof(keys[0]),
87 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/
get_time_wide.pass.cpp 44 I i = f.get_time(I(in), I(in+sizeof(in)/sizeof(in[0])-1), ios, err, &t);
45 assert(i.base() == in+sizeof(in)/sizeof(in[0])-1);
55 I i = f.get_time(I(in), I(in+sizeof(in)/sizeof(in[0])-1), ios, err, &t);
56 assert(i.base() == in+sizeof(in)/sizeof(in[0])-1);
66 I i = f.get_time(I(in), I(in+sizeof(in)/sizeof(in[0])-1), ios, err, &t)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.members/
cshift.pass.cpp 25 const unsigned N1 = sizeof(a1)/sizeof(a1[0]);
36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]);
47 const unsigned N1 = sizeof(a1)/sizeof(a1[0]);
58 const unsigned N1 = sizeof(a1)/sizeof(a1[0]);
69 const unsigned N1 = sizeof(a1)/sizeof(a1[0])
    [all...]
shift.pass.cpp 25 const unsigned N1 = sizeof(a1)/sizeof(a1[0]);
36 const unsigned N1 = sizeof(a1)/sizeof(a1[0]);
47 const unsigned N1 = sizeof(a1)/sizeof(a1[0]);
58 const unsigned N1 = sizeof(a1)/sizeof(a1[0]);
69 const unsigned N1 = sizeof(a1)/sizeof(a1[0])
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
ncnvfbts.c 181 realBufferSize = (sizeof(junkout)/sizeof(junkout[0]));
264 if(uprv_memcmp(junokout,expectOffsets,(targ-junkout) * sizeof(int32_t) )){
339 realBufferSize = (sizeof(junkout)/sizeof(junkout[0]));
417 if(memcmp(junokout,expectOffsets,(targ-junkout) * sizeof(int32_t)))
545 for(i=0; i<sizeof(nativeCodePage)/sizeof(nativeCodePage[0]); i++){
547 if(!testConvertFromUnicode(SBCSText, sizeof(SBCSText)/sizeof(SBCSText[0])
    [all...]
  /external/icu4c/test/cintltst/
ncnvfbts.c 181 realBufferSize = (sizeof(junkout)/sizeof(junkout[0]));
264 if(uprv_memcmp(junokout,expectOffsets,(targ-junkout) * sizeof(int32_t) )){
339 realBufferSize = (sizeof(junkout)/sizeof(junkout[0]));
417 if(memcmp(junokout,expectOffsets,(targ-junkout) * sizeof(int32_t)))
545 for(i=0; i<sizeof(nativeCodePage)/sizeof(nativeCodePage[0]); i++){
547 if(!testConvertFromUnicode(SBCSText, sizeof(SBCSText)/sizeof(SBCSText[0])
    [all...]
  /external/tcpdump/
print-decnet.c 76 if (length < sizeof(struct shorthdr)) {
81 TCHECK2(*ap, sizeof(short));
83 if (pktlen < sizeof(struct shorthdr)) {
93 rhp = (const union routehdr *)&(ap[sizeof(short)]);
106 TCHECK2(ap[sizeof(short)], padlen);
110 rhp = (const union routehdr *)&(ap[sizeof(short)]);
129 if (length < sizeof(struct longhdr)) {
139 nspp = &(ap[sizeof(short) + sizeof(struct longhdr)]);
140 nsplen = length - sizeof(struct longhdr)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_long.pass.cpp 56 input_iterator<const char*>(str+sizeof(str)),
69 input_iterator<const char*>(str+sizeof(str)),
81 input_iterator<const char*>(str+sizeof(str)),
93 input_iterator<const char*>(str+sizeof(str)),
105 input_iterator<const char*>(str+sizeof(str)),
107 assert(iter.base() == str+sizeof(str)-1);
117 input_iterator<const char*>(str+sizeof(str)),
119 assert(iter.base() == str+sizeof(str)-1);
129 input_iterator<const char*>(str+sizeof(str)),
131 assert(iter.base() == str+sizeof(str)-1)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
asyncstuntcpsocket_unittest.cc 152 sizeof(kStunMessageWithZeroLength)));
155 sizeof(kStunMessageWithZeroLength)));
161 sizeof(kStunMessageWithZeroLength)));
163 sizeof(kStunMessageWithZeroLength)));
165 sizeof(kStunMessageWithZeroLength)));
167 sizeof(kStunMessageWithZeroLength)));
174 sizeof(kTurnChannelDataMessageWithZeroLength)));
177 sizeof(kTurnChannelDataMessageWithZeroLength)));
183 sizeof(kTurnChannelDataMessage)));
186 sizeof(kTurnChannelDataMessage)))
    [all...]
  /external/dhcpcd/
if-linux.c 81 snprintf(path, sizeof(path),
100 snprintf(path, sizeof(path),
107 if (fgets(buf, sizeof(buf), fp) != NULL && buf[0] == '0')
121 if (bind(fd, (struct sockaddr *)nl, sizeof(*nl)) == -1)
143 memset(&snl, 0, sizeof(snl));
216 l = nlm->nlmsg_len - sizeof(*nlm);
217 if ((size_t)l < sizeof(*err)) {
240 len = nlm->nlmsg_len - sizeof(*nlm);
241 if ((size_t)len < sizeof(*rtm)) {
251 rta = (struct rtattr *) ((char *)rtm + NLMSG_ALIGN(sizeof(*rtm)))
    [all...]

Completed in 404 milliseconds

<<21222324252627282930>>