Searched refs:obj (Results 1 – 4 of 4) sorted by relevance
/lk-master/lib/norfs/test/ |
A D | norfs_test.c | 421 unsigned char obj[obj_len]; in test_deletion_objects_retained_during_gc() local 425 memset(obj, 7, obj_len); in test_deletion_objects_retained_during_gc() 431 status = norfs_put_obj(key, obj, obj_len, 0); in test_deletion_objects_retained_during_gc() 438 status = norfs_read_obj(key, obj, obj_len, &bytes_read, 0); in test_deletion_objects_retained_during_gc() 443 status = norfs_read_obj(key, obj, obj_len, &bytes_read, 0); in test_deletion_objects_retained_during_gc() 447 status = norfs_put_obj(key, obj, obj_len, 0); in test_deletion_objects_retained_during_gc() 601 unsigned char obj = 0b01010101; in test_overflow_filesystem() local 603 status = norfs_put_obj(i, &obj, sizeof(obj), 0); in test_overflow_filesystem() 606 EXPECT_LE(sizeof(obj) + NORFS_OBJ_HEADER_SIZE, total_remaining_space, in test_overflow_filesystem() 618 if (total_remaining_space >= sizeof(obj) + NORFS_OBJ_HEADER_SIZE) { in test_overflow_filesystem() [all …]
|
/lk-master/lib/norfs/include/lib/ |
A D | norfs.h | 40 status_t norfs_put_obj(uint32_t key, unsigned char *obj, uint16_t obj_len,
|
/lk-master/lib/norfs/ |
A D | norfs.c | 416 status_t norfs_put_obj(uint32_t key, unsigned char *obj, uint16_t len, in norfs_put_obj() argument 425 struct iovec const vec[1] = {{obj, len}}; in norfs_put_obj()
|
/lk-master/external/lib/miniz/ |
A D | miniz.c | 184 #define MZ_CLEAR_OBJ(obj) memset(&(obj), 0, sizeof(obj)) argument
|
Completed in 28 milliseconds