Home
last modified time | relevance | path

Searched refs:SIZE (Results 1 – 7 of 7) sorted by relevance

/system/extras/f2fs_utils/
Dmkf2fsuserimg.sh31 SIZE=$2
36 MKFS_OPTS+=" -S $SIZE"
125 if [ -z $SIZE ]; then
136 TRUNCATE_CMD="truncate -s $SIZE $OUTPUT_FILE"
165 SIZE=$(((MB_SIZE + 6) * 1024 * 1024))
174 MKFS_OPTS+=" -S $SIZE"
/system/bt/gd/os/
Drand.h26 template <size_t SIZE>
27 std::array<uint8_t, SIZE> GenerateRandom() { in GenerateRandom()
28 std::array<uint8_t, SIZE> ret; in GenerateRandom()
/system/netd/libnetdutils/
DMemBlockTest.cpp103 constexpr unsigned SIZE = 10; in TEST() local
110 MemBlock block2 = makeArbitraryMemBlock(SIZE); in TEST()
111 EXPECT_EQ(SIZE, block2.get().size()); in TEST()
113 for (unsigned i = 0; i < SIZE; i++) { in TEST()
119 EXPECT_EQ(SIZE, block.get().size()); in TEST()
120 for (unsigned i = 0; i < SIZE; i++) { in TEST()
/system/bt/gd/security/
Decdh_keys.cc35 template <size_t SIZE>
36 static std::array<uint8_t, SIZE> GenerateRandom() { in GenerateRandom()
44 std::array<uint8_t, SIZE> r; in GenerateRandom()
45 for (size_t i = 0; i < SIZE; i++) r[i] = std::rand(); in GenerateRandom()
/system/bt/gd/packet/parser/
Dlanguage_y.yy67 %token SIZE "size"
271 DEBUG() << "STRUCT FIELD LIST SIZE: " << field_definition_list.size();
286 DEBUG() << "STRUCT FIELD LIST SIZE: " << field_definition_list.size() << "\n";
347 DEBUG() << "PACKET FIELD LIST SIZE: " << field_definition_list.size();
362 DEBUG() << "PACKET FIELD LIST SIZE: " << field_definition_list.size() << "\n";
387 DEBUG() << "PACKET FIELD LIST SIZE: " << field_definition_list.size() << "\n";
388 DEBUG() << "CONSTRAINT LIST SIZE: " << constraints.size() << "\n";
660 : SIZE '(' IDENTIFIER ')' ':' INTEGER
666 | SIZE '(' PAYLOAD ')' ':' INTEGER
671 | SIZE '(' BODY ')' ':' INTEGER
Dlanguage_l.ll63 "_size_" { return(token::SIZE); }
/system/security/keystore2/src/
Dlegacy_blob.rs148 const SIZE: usize = std::mem::size_of::<bool>(); in read_bool() constant
149 let mut buffer: [u8; SIZE] = [0; SIZE]; in read_bool()
154 const SIZE: usize = std::mem::size_of::<u32>(); in read_ne_u32() constant
155 let mut buffer: [u8; SIZE] = [0; SIZE]; in read_ne_u32()
160 const SIZE: usize = std::mem::size_of::<i32>(); in read_ne_i32() constant
161 let mut buffer: [u8; SIZE] = [0; SIZE]; in read_ne_i32()
166 const SIZE: usize = std::mem::size_of::<i64>(); in read_ne_i64() constant
167 let mut buffer: [u8; SIZE] = [0; SIZE]; in read_ne_i64()