Home
last modified time | relevance | path

Searched refs:alignof (Results 1 – 8 of 8) sorted by relevance

/device/google/contexthub/firmware/os/platform/stm32/inc/plat/
Dplat.h72 #if defined(__GNUC__) && !defined(alignof)
73 #define alignof(type) ((__alignof__(type) > 4) ? 4 : __alignof__(type)) macro
/device/google/contexthub/firmware/os/inc/
Dutil.h29 #ifndef alignof
30 #define alignof(type) offsetof(struct { char x; type field; }, field) macro
/device/google/trout/hal/vehicle/2.0/
DGarageModeServerSideHandler.cpp155 alignas(alignof(struct inotify_event)) char inotifyEventBuffer[4096] = {0}; in PowerStateWatcher()
/device/google/contexthub/firmware/os/core/
DeventQ.c67 alignof(struct EvtRecord), size); in evtQueueAlloc()
Dtimer.c299 …mInternalEvents = slabAllocatorNew(sizeof(struct TimerEvent), alignof(struct TimerEvent), MAX_INTE… in timInit()
Dsensors.c51 …mInternalEvents = slabAllocatorNew(sizeof(struct SensorsInternalEvent), alignof(struct SensorsInte… in sensorsInit()
55 …mCliSensMatrix = slabAllocatorNew(sizeof(struct SensorsClientRequest), alignof(struct SensorsClien… in sensorsInit()
Dseos.c443 …mMiscInternalThingsSlab = slabAllocatorNew(sizeof(union SeosInternalSlabData), alignof(union SeosI… in osInit()
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
Dcdefs.h230 #define _Alignof(e) alignof(e)