Home
last modified time | relevance | path

Searched refs:slabAllocatorNew (Results 1 – 10 of 10) sorted by relevance

/device/google/contexthub/firmware/inc/
Dslab.h28 struct SlabAllocator* slabAllocatorNew(uint32_t itemSz, uint32_t itemAlign, uint32_t numItems);
/device/google/contexthub/firmware/src/
Dslab.c29 struct SlabAllocator* slabAllocatorNew(uint32_t itemSz, uint32_t itemAlign, uint32_t numItems) in slabAllocatorNew() function
DeventQ.c49 …struct SlabAllocator *slab = slabAllocatorNew(sizeof(struct EvtRecord), alignof(struct EvtRecord),… in evtQueueAlloc()
Dtimer.c239 …mInternalEvents = slabAllocatorNew(sizeof(struct TimerEvent), alignof(struct TimerEvent), MAX_INTE… in timInit()
Dsensors.c96 …mInternalEvents = slabAllocatorNew(sizeof(struct SensorsInternalEvent), alignof(struct SensorsInte… in sensorsInit()
100 …mCliSensMatrix = slabAllocatorNew(sizeof(struct SensorsClientRequest), alignof(struct SensorsClien… in sensorsInit()
DosApi.c233 *retValP = (uintptr_t)slabAllocatorNew(itemSz, itemAlign, numItems); in osExpApiSlabNew()
Dseos.c407 …mMiscInternalThingsSlab = slabAllocatorNew(sizeof(union InternalThing), alignof(union InternalThin… in osInit()
DnanohubCommand.c115 mEventSlab = slabAllocatorNew(NANOHUB_PACKET_PAYLOAD_MAX-sizeof(__le32), 4, 2); in nanohubInitCommand()
/device/google/contexthub/firmware/src/drivers/orientation/
Dorientation.c782 …mDataSlab = slabAllocatorNew(slabSize, 4, 6 * (NUM_COMMS_EVENTS_IN_FIFO + 1)); // worst case 6 out… in fusionStart()
/device/google/contexthub/firmware/src/drivers/bosch_bmi160/
Dbosch_bmi160.c3060 T(mDataSlab) = slabAllocatorNew(slabSize, 4, 20); in startTask()