Searched refs:offset (Results 51 - 63 of 63) sorted by last modified time

123

/system/extras/libpagemap/include/pagemap/
H A Dpagemap.h72 unsigned long offset; member in struct:pm_map
132 #define _BITS(x, offset, bits) (((x) >> offset) & ((1LL << (bits)) - 1))
150 /* Get the name, flags, start/end address, or offset of a map. */
158 #define pm_map_offset(map) ((map)->offset)
/system/extras/libpagemap/
H A Dpm_process.c265 &map->start, &map->end, perms, &map->offset, name);
/system/extras/libublock/include/ublock/
H A Dublock.h28 int (*read)(char *buf, uint64_t length, uint64_t offset);
29 int (*write)(const char *buf, uint64_t length, uint64_t offset);
/system/extras/libublock/
H A Dublock.c144 out_h->status = (ub_ctx->ops->read)(out_buf, in_h->length, in_h->offset);
175 out_h->status = (ub_ctx->ops->write)(in_buf, in_h->length, in_h->offset);
/system/extras/tests/bionic/libstdc++/
H A Dtest_cstddef.cpp42 // Dummy struct used to calculate offset of some of its fields.
81 volatile size_t offset = offsetof(struct Foo, field2); local
82 return offset == 1;
/system/extras/tests/framebuffer/
H A Dmdp_test.c298 req->src.offset = 0;
308 req->dst.offset = 0;
H A Drefresh.c96 info.red.offset, info.red.length,
97 info.green.offset, info.green.length,
98 info.blue.offset, info.blue.length
/system/extras/tests/include/
H A DtestUtil.h61 void testXDumpSetOffset(uint64_t offset);
/system/extras/tests/lib/testUtil/
H A DtestUtil.c313 * to offset the displayed address by an amount set by calling
369 // Set the hex dump address offset amount
371 testXDumpSetOffset(uint64_t offset) argument
373 xDumpOffset = offset;
376 // Get the current hex dump address offset amount
/system/extras/tests/memtest/
H A Dmemtest.cpp191 for (int offset=0 ; offset<=2 ; offset +=2 ) {
196 MEMCPY(ddd, sss+offset, size);
362 printf("*** memset(%p,%02x,%zd) failed at offset %zd\n",d,(int)c,size, i);
448 for (int offset=0 ; offset<=2 ; offset +=2 ) {
449 memcpy(ddd, sss+offset, size); // just make sure to load the caches I/D
453 c = memcmp(ddd, sss+offset, siz
[all...]
/system/media/audio_utils/
H A Decho_reference.c392 int offset = er->frames_in - previousFrameIn; local
407 if (offset > 0) {
409 0, offset * er->rd_frame_size);
410 ALOGV("echo_reference_read(): pushing ref buffer by [%d]", offset);
414 offset = -offset;
415 if (offset > 0) {
416 memcpy(er->buffer, (char *)er->buffer + (offset * er->rd_frame_size),
/system/media/camera/src/
H A Dcamera_metadata.c30 * data.offset.
36 size_t offset; member in union:camera_metadata_buffer_entry::__anon568
45 * its values stored at an offset in data.
266 entry->data.offset += dst->data_count;
331 entry->data.offset = dst->data_count;
332 memcpy(dst->data + entry->data.offset, data, data_bytes);
392 entry->data.u8 = src->data + buffer_entry->data.offset;
450 uint8_t *start = dst->data + entry->data.offset;
452 size_t length = dst->data_count - entry->data.offset - data_bytes;
461 e->data.offset > entr
[all...]
/system/netd/
H A Dndc.c144 int offset = 0; local
152 strncpy(tmp, buffer + offset, 3);
156 printf("%s\n", buffer + offset);
161 offset = i + 1;

Completed in 61 milliseconds

123