HomeSort by relevance Sort by last modified time
    Searched defs:sizeof (Results 76 - 100 of 168) sorted by null

1 2 34 5 6 7

  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
DenseSet.h 55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), member in class:llvm::detail::DenseSetImpl
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
DenseSet.h 55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), member in class:llvm::detail::DenseSetImpl
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
DenseSet.h 55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), member in class:llvm::detail::DenseSetImpl
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
DenseSet.h 55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), member in class:llvm::detail::DenseSetImpl
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
DenseSet.h 55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), member in class:llvm::detail::DenseSetImpl
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
DenseSet.h 55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), member in class:llvm::detail::DenseSetImpl
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
DenseSet.h 55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), member in class:llvm::detail::DenseSetImpl
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
DenseSet.h 55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), member in class:llvm::detail::DenseSetImpl
  /prebuilts/go/darwin-x86/src/encoding/binary/
binary.go 384 if s := sizeof(v.Type().Elem()); s >= 0 {
389 return sizeof(v.Type())
392 // sizeof returns the size >= 0 of variables for the given type or -1 if the type is not acceptable.
393 func sizeof(t reflect.Type) int { func
396 if s := sizeof(t.Elem()); s >= 0 {
403 s := sizeof(t.Field(i).Type)
  /prebuilts/go/linux-x86/src/encoding/binary/
binary.go 384 if s := sizeof(v.Type().Elem()); s >= 0 {
389 return sizeof(v.Type())
392 // sizeof returns the size >= 0 of variables for the given type or -1 if the type is not acceptable.
393 func sizeof(t reflect.Type) int { func
396 if s := sizeof(t.Elem()); s >= 0 {
403 s := sizeof(t.Field(i).Type)
  /system/bt/btcore/src/
device_class.cc 37 static_assert(sizeof(_bt_device_class_t) == sizeof(bt_device_class_t), variable
72 CHECK(len >= sizeof(bt_device_class_t));
73 for (size_t i = 0; i < sizeof(bt_device_class_t); ++i) {
76 return sizeof(bt_device_class_t);
98 return (memcmp(p1, p2, sizeof(bt_device_class_t)) == 0);
104 return (memcpy(dest, src, sizeof(bt_device_class_t)) == dest);
  /art/compiler/linker/
linker_patch.h 271 static_assert(sizeof(method_idx_) == sizeof(cmp1_), "needed by relational operators"); member in union:art::linker::LinkerPatch::__anon12
272 static_assert(sizeof(type_idx_) == sizeof(cmp1_), "needed by relational operators"); member in union:art::linker::LinkerPatch::__anon12
273 static_assert(sizeof(string_idx_) == sizeof(cmp1_), "needed by relational operators"); member in union:art::linker::LinkerPatch::__anon12
274 static_assert(sizeof(baker_custom_value1_) == sizeof(cmp1_), "needed by relational operators"); member in union:art::linker::LinkerPatch::__anon12
284 static_assert(sizeof(pc_insn_offset_) <= sizeof(cmp2_), "needed by relational operators")
    [all...]
  /art/libartbase/base/
atomic.h 32 class PACKED(sizeof(T)) Atomic : public std::atomic<T> {
240 static_assert(sizeof(AtomicInteger) == sizeof(int32_t), "Weird AtomicInteger size"); member in namespace:art
243 static_assert(sizeof(Atomic<int64_t>) == sizeof(int64_t), "Weird Atomic<int64> size"); member in namespace:art
  /art/runtime/jit/
debugger_interface.cc 108 uint32_t sizeof_descriptor = sizeof(JITDescriptor);
109 uint32_t sizeof_entry = sizeof(JITCodeEntry);
116 static_assert(sizeof(std::atomic_uint32_t) == sizeof(uint32_t), "Weird size"); variable
118 static_assert(sizeof(std::atomic<void*>) == sizeof(void*), "Weird size"); variable
221 memset(entry, 0, sizeof(*entry));
273 __jit_debug_mem_usage += sizeof(JITCodeEntry) + entry->symfile_size_;
294 __jit_debug_mem_usage -= sizeof(JITCodeEntry) + symfile_size;
300 return __jit_debug_mem_usage + __jit_debug_entries.size() * 2 * sizeof(void*)
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkShaderToSpirV.cpp 89 DE_STATIC_ASSERT(sizeof(TLimits) == sizeof(LimitsSizeHelper_s)); member in namespace:vk::__anon17597
90 DE_STATIC_ASSERT(sizeof(TBuiltInResource) == sizeof(BuiltInResourceSizeHelper_s)); member in namespace:vk::__anon17597
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmComputeShaderTestUtil.hpp 113 size_t inputSize = m_numInputElements * sizeof(deInt32);
121 size_t outputSize = m_numOutputElements * sizeof(deInt32);
150 return m_numInputElements * sizeof(deInt32);
152 return m_numOutputElements * sizeof(deInt32);
179 const size_t size = m_elements.size() * sizeof(E);
186 return m_elements.size() * sizeof(E);
193 DE_STATIC_ASSERT(sizeof(tcu::Vec4) == 4 * sizeof(float)); member in namespace:vkt::SpirVAssembly
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.cpp 39 DE_STATIC_ASSERT(sizeof(eglw::EGLNativeDisplayType) == sizeof(void*)); variable
40 DE_STATIC_ASSERT(sizeof(eglw::EGLNativePixmapType) == sizeof(struct egl_native_pixmap_t*)); variable
41 DE_STATIC_ASSERT(sizeof(eglw::EGLNativeWindowType) == sizeof(ANativeWindow*)); variable
214 DE_STATIC_ASSERT(sizeof(vk::pt::AndroidNativeWindowPtr) == sizeof(ANativeWindow*)); member in namespace:tcu::Android
284 const size_t fallbackSize = (sizeof(void*) == sizeof(deUint64)) ? 2048*MiB : 1024*MiB
    [all...]
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.cpp 37 DE_STATIC_ASSERT(sizeof(eglw::EGLNativeDisplayType) == sizeof(HDC)); variable
38 DE_STATIC_ASSERT(sizeof(eglw::EGLNativePixmapType) == sizeof(HBITMAP)); variable
39 DE_STATIC_ASSERT(sizeof(eglw::EGLNativeWindowType) == sizeof(HWND)); variable
155 memset(&bitmapInfo, 0, sizeof(bitmapInfo));
160 bitmapInfo.bmiHeader.biSize = sizeof(bitmapInfo);
314 deMemset(&bitmapInfo, 0, sizeof(bitmapInfo));
335 bitmapInfo.biSize = sizeof(BITMAPINFOHEADER)
    [all...]
  /external/deqp/framework/randomshaders/
rsgVariableValue.hpp 57 DE_STATIC_ASSERT(sizeof(Scalar) == sizeof(deUint32)); member in namespace:rsg
  /external/flatbuffers/net/FlatBuffers/
FlatBufferBuilder.cs 145 _bb.PutByte(_space -= sizeof(byte), (byte)(x ? 1 : 0));
150 _bb.PutSbyte(_space -= sizeof(sbyte), x);
155 _bb.PutByte(_space -= sizeof(byte), x);
160 _bb.PutShort(_space -= sizeof(short), x);
165 _bb.PutUshort(_space -= sizeof(ushort), x);
170 _bb.PutInt(_space -= sizeof(int), x);
175 _bb.PutUint(_space -= sizeof(uint), x);
180 _bb.PutLong(_space -= sizeof(long), x);
185 _bb.PutUlong(_space -= sizeof(ulong), x);
190 _bb.PutFloat(_space -= sizeof(float), x)
306 StartVector(sizeof(int), offsets.Length, sizeof(int)); method in struct:FlatBuffers.FlatBufferBuilder.__anon1
    [all...]
  /external/libchrome/base/message_loop/
message_loop.h 548 static_assert(sizeof(MessageLoop) == sizeof(MessageLoopForUI), member in namespace:base
626 static_assert(sizeof(MessageLoop) == sizeof(MessageLoopForIO), member in namespace:base
  /external/libmojo/ipc/
ipc_message_utils.cc 349 sizer->AddBytes(sizeof(param_type));
353 m->WriteBytes(&p, sizeof(param_type));
360 if (!iter->ReadBytes(&data, sizeof(param_type)))
362 memcpy(r, data, sizeof(param_type));
372 sizer->AddBytes(sizeof(param_type));
376 m->WriteBytes(&p, sizeof(param_type));
383 if (!iter->ReadBytes(&data, sizeof(param_type)))
385 memcpy(r, data, sizeof(param_type));
395 sizer->AddBytes(sizeof(param_type));
399 m->WriteBytes(&p, sizeof(param_type))
987 static_assert(sizeof(base::UnguessableToken) == 2 * sizeof(uint64_t), member in namespace:IPC
    [all...]
  /external/libmojo/mojo/public/cpp/system/
handle.h 102 sizeof(static_cast<PassedHandleType*>(static_cast<HandleType*>(0))),
180 static_assert(sizeof(Handle) == sizeof(MojoHandle), "Bad size for C++ Handle"); member in namespace:mojo
184 static_assert(sizeof(ScopedHandle) == sizeof(Handle), member in namespace:mojo
  /external/llvm/include/llvm/ADT/
DenseSet.h 42 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), member in class:llvm::DenseSet
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
cpuinfo.c 50 cpus = malloc(sizeof(*cpus) * ncpus);
53 memset(cpus, 0, sizeof(*cpus) * ncpus);
60 while (fgets(buf, sizeof(buf), fp) != NULL) {
108 if (fgets(buf, sizeof(buf), fp) == NULL) {
144 sizeof(c_relpath)) {
152 if (fgets(buf, sizeof(buf), fp) == NULL) {
221 while (fgets(buf, sizeof(buf), fp) != NULL) {
301 while (fgets(buf, sizeof(buf), fp) != NULL) {
349 sizeof(c_relpath)) { function
403 cpusets = malloc(num_cpusets * sizeof(*cpusets))
    [all...]

Completed in 642 milliseconds

1 2 34 5 6 7