Searched refs:slabAllocatorNew (Results 1 – 10 of 10) sorted by relevance
/device/google/contexthub/firmware/inc/ |
D | slab.h | 28 struct SlabAllocator* slabAllocatorNew(uint32_t itemSz, uint32_t itemAlign, uint32_t numItems);
|
/device/google/contexthub/firmware/src/ |
D | slab.c | 29 struct SlabAllocator* slabAllocatorNew(uint32_t itemSz, uint32_t itemAlign, uint32_t numItems) in slabAllocatorNew() function
|
D | eventQ.c | 49 …struct SlabAllocator *slab = slabAllocatorNew(sizeof(struct EvtRecord), alignof(struct EvtRecord),… in evtQueueAlloc()
|
D | timer.c | 239 …mInternalEvents = slabAllocatorNew(sizeof(struct TimerEvent), alignof(struct TimerEvent), MAX_INTE… in timInit()
|
D | sensors.c | 96 …mInternalEvents = slabAllocatorNew(sizeof(struct SensorsInternalEvent), alignof(struct SensorsInte… in sensorsInit() 100 …mCliSensMatrix = slabAllocatorNew(sizeof(struct SensorsClientRequest), alignof(struct SensorsClien… in sensorsInit()
|
D | osApi.c | 233 *retValP = (uintptr_t)slabAllocatorNew(itemSz, itemAlign, numItems); in osExpApiSlabNew()
|
D | seos.c | 407 …mMiscInternalThingsSlab = slabAllocatorNew(sizeof(union InternalThing), alignof(union InternalThin… in osInit()
|
D | nanohubCommand.c | 115 mEventSlab = slabAllocatorNew(NANOHUB_PACKET_PAYLOAD_MAX-sizeof(__le32), 4, 2); in nanohubInitCommand()
|
/device/google/contexthub/firmware/src/drivers/orientation/ |
D | orientation.c | 782 …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/ |
D | bosch_bmi160.c | 3060 T(mDataSlab) = slabAllocatorNew(slabSize, 4, 20); in startTask()
|