HomeSort by relevance Sort by last modified time
    Searched refs:slabAllocatorNew (Results 1 - 17 of 17) sorted by null

  /device/google/contexthub/firmware/os/inc/
slab.h 28 struct SlabAllocator* slabAllocatorNew(uint32_t itemSz, uint32_t itemAlign, uint32_t numItems);
  /device/google/contexthub/firmware/os/core/
slab.c 29 struct SlabAllocator* slabAllocatorNew(uint32_t itemSz, uint32_t itemAlign, uint32_t numItems)
eventQ.c 66 struct SlabAllocator *slab = slabAllocatorNew(sizeof(struct EvtRecord),
timer.c 299 mInternalEvents = slabAllocatorNew(sizeof(struct TimerEvent), alignof(struct TimerEvent), MAX_INTERNAL_EVENTS);
sensors.c 51 mInternalEvents = slabAllocatorNew(sizeof(struct SensorsInternalEvent), alignof(struct SensorsInternalEvent), MAX_INTERNAL_EVENTS);
55 mCliSensMatrix = slabAllocatorNew(sizeof(struct SensorsClientRequest), alignof(struct SensorsClientRequest), MAX_CLI_SENS_MATRIX_SZ);
osApi.c 249 *retValP = (uintptr_t)slabAllocatorNew(itemSz, itemAlign, numItems);
seos.c 443 mMiscInternalThingsSlab = slabAllocatorNew(sizeof(union SeosInternalSlabData), alignof(union SeosInternalSlabData), 64 /* for now? */);
    [all...]
nanohubCommand.c 120 mEventSlab = slabAllocatorNew(NANOHUB_PACKET_PAYLOAD_MAX-sizeof(__le32), 4, 2);
    [all...]
  /device/google/contexthub/firmware/os/drivers/vsync/
vsync.c 208 mTask.evtSlab = slabAllocatorNew(sizeof(struct SingleAxisDataEvent) + sizeof(struct SingleAxisDataPoint), 4, MAX_VSYNC_EVENTS);
210 ERROR_PRINT("slabAllocatorNew() failed\n");
  /device/google/contexthub/firmware/os/drivers/bosch_bmp280/
bosch_bmp280.c 773 mTask.evtSlab = slabAllocatorNew(sizeof(struct SingleAxisDataEvent) + sizeof(struct SingleAxisDataPoint), 4, MAX_BARO_EVENTS);
775 osLog(LOG_ERROR, "[BMP280] slabAllocatorNew() failed\n");
  /device/google/contexthub/firmware/os/drivers/st_acc44/
st_acc44.c 810 mTask.accDataSlab = slabAllocatorNew(slabSize, 4, ST_ACC44_MAX_ACC_EVENTS);
  /device/google/contexthub/firmware/os/drivers/st_lps22hb/
lps22hb.c 713 mTask.baroSlab = slabAllocatorNew(slabSize, 4, LPS22HB_MAX_BARO_EVENTS);
  /device/google/contexthub/firmware/os/drivers/orientation/
orientation.c 865 mDataSlab = slabAllocatorNew(slabSize, 4, 6 * (NUM_COMMS_EVENTS_IN_FIFO + 1));
867 osLog(LOG_ERROR, "ORIENTATION: slabAllocatorNew() FAILED\n");
  /device/google/contexthub/firmware/os/drivers/st_mag40/
st_mag40.c 1012 mTask.magDataSlab = slabAllocatorNew(slabSize, 4, ST_MAG40_MAX_MAG_EVENTS);
  /device/google/contexthub/firmware/os/drivers/st_lsm6dsm/
st_lsm6dsm.c     [all...]
  /device/google/contexthub/firmware/os/drivers/bosch_bmi160/
bosch_bmi160.c     [all...]
  /device/google/contexthub/firmware/os/drivers/invensense_icm40600/
invensense_icm40600.c     [all...]

Completed in 375 milliseconds