OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:buff_offset
(Results
1 - 3
of
3
) sorted by null
/device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_mpo_composer.c
88
* @
buff_offset
: offset in the buffer
100
void mm_jpeg_mpo_write_long_little_endian(uint8_t *buff_addr, uint32_t
buff_offset
,
103
if (
buff_offset
+ 3 >= buffer_size) {
108
buff_addr[
buff_offset
+ 3] = (uint8_t)((value >> 24) & 0xFF);
109
buff_addr[
buff_offset
+ 2] = (uint8_t)((value >> 16) & 0xFF);
110
buff_addr[
buff_offset
+ 1] = (uint8_t)((value >> 8) & 0xFF);
111
buff_addr[
buff_offset
] = (uint8_t)(value & 0xFF);
119
* @
buff_offset
: offset in the buffer
131
void mm_jpeg_mpo_write_long(uint8_t *buff_addr, uint32_t
buff_offset
,
134
if ((
buff_offset
+ 3) >= buffer_size)
[
all
...]
/external/pcre/dist2/src/
pcre2_substitute.c
207
memcpy(buffer +
buff_offset
, from, CU2BYTES(length)); \
208
buff_offset
+= length; \
237
PCRE2_SIZE
buff_offset
, buff_length, lengthleft, fraglength;
local
240
buff_offset
= 0;
826
*blength =
buff_offset
- 1;
/system/vold/
cryptfs.cpp
825
size_t
buff_offset
;
local
843
buff_offset
= crypt_params - buffer;
844
snprintf(crypt_params, sizeof(buffer) -
buff_offset
, "%s %s 0 %s 0 %s",
[
all
...]
Completed in 897 milliseconds