/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/ |
inv_sysfs_utils.h | 58 int inv_sysfs_read(char *filename, long num_bytes, char *data);
|
inv_sysfs_utils.c | 44 * @num_bytes: Number of bytes to read. 48 int inv_sysfs_read(char *filename, long num_bytes, char *data) 58 count = fread(data, 1, num_bytes, fp);
|
/art/runtime/gc/collector/ |
garbage_collector.h | 47 ObjectBytePair(uint64_t num_objects = 0, int64_t num_bytes = 0) 48 : objects(num_objects), bytes(num_bytes) {}
|
/art/runtime/gc/space/ |
large_object_space.h | 134 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated, 168 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
|
space.h | 202 // Allocate num_bytes without allowing growth. If the allocation 204 // actually allocated bytes which is >= num_bytes. 215 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated, 219 virtual mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated, 223 return Alloc(self, num_bytes, bytes_allocated, usable_size, bytes_tl_bulk_allocated);
|
/device/asus/fugu/power/ |
power.c | 65 static ssize_t sysfs_read(char *path, char *s, int num_bytes) 77 if ((count = read(fd, s, (num_bytes - 1))) < 0) {
|
/external/libnfc-nci/src/adaptation/ |
libmain.c | 45 extern void *nfa_mem_co_alloc(UINT32 num_bytes) 47 return malloc(num_bytes);
|
/external/webrtc/webrtc/common_audio/ |
wav_file.cc | 33 virtual size_t Read(void* buf, size_t num_bytes) { 34 return fread(buf, 1, num_bytes, file_);
|
/system/tpm/attestation/common/ |
crypto_utility_impl_test.cc | 79 size_t num_bytes = -1; local 81 EXPECT_FALSE(crypto_utility_->GetRandom(num_bytes, &buffer));
|
crypto_utility_impl.cc | 71 bool CryptoUtilityImpl::GetRandom(size_t num_bytes, 74 if (num_bytes > static_cast<size_t>(std::numeric_limits<int>::max())) { 77 random_data->resize(num_bytes); 79 return (RAND_bytes(buffer, num_bytes) == 1);
|
crypto_utility_impl.h | 38 bool GetRandom(size_t num_bytes, std::string* random_data) const override;
|
/hardware/ti/omap4-aah/camera/ |
Decoder_libjpeg.cpp | 98 static void libjpeg_skip_input_data(j_decompress_ptr cinfo, long num_bytes) { 101 if (num_bytes > (long)src->bytes_in_buffer) { 102 CAMHAL_LOGEA("\n\n\n libjpeg_skip_input_data - num_bytes > (long)src->bytes_in_buffer \n\n\n"); 104 src->next_input_byte += num_bytes; 105 src->bytes_in_buffer -= num_bytes;
|
/external/valgrind/coregrind/ |
m_machine.c | 623 SizeT num_bytes, file_buf_size; local 636 num_bytes = 0; 643 num_bytes += n; 647 if (n < 0) num_bytes = 0; /* read error; ignore contents */ 649 if (num_bytes > file_buf_size) { 652 file_buf = VG_(malloc)( "cpuinfo", num_bytes + 1 ); 653 n = VG_(read)( fh, file_buf, num_bytes ); 654 if (n < 0) num_bytes = 0; 657 file_buf[num_bytes] = '\0'; 712 SizeT num_bytes, file_buf_size local [all...] |
/hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/ |
inv_sysfs_utils.c | 50 * @num_bytes: Number of bytes to read. 54 int inv_sysfs_read(char *filename, long num_bytes, char *data) 64 count = fread(data, 1, num_bytes, fp);
|
/external/freetype/src/cache/ |
ftcmanag.h | 120 /* its `num_bytes' field is greater than its `max_bytes' field. It */
|
/external/harfbuzz_ng/util/ |
helper-cairo.cc | 509 l->clusters[cluster].num_bytes = end - start; 515 l->clusters[cluster].num_bytes = l->utf8 + text_len - start; 524 l->clusters[cluster].num_bytes = end - start; 530 l->clusters[cluster].num_bytes = l->utf8 + text_len - start;
|
/external/libchrome/base/message_loop/ |
message_pump_glib.cc | 241 const int num_bytes = HANDLE_EINTR(read(wakeup_pipe_read_, msg, 2)); local 242 if (num_bytes < 1) { 245 DCHECK((num_bytes == 1 && msg[0] == '!') || 246 (num_bytes == 2 && msg[0] == '!' && msg[1] == '!'));
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cache/ |
ftcmanag.h | 120 /* its `num_bytes' field is greater than its `max_bytes' field. It */
|
/external/srtp/crypto/test/ |
rand_gen.c | 60 printf("usage: %s -n <num_bytes> [-l][ -d debug_module ]*\n"
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/ |
viddec_pm_utils_bstream.c | 122 static inline void viddec_pm_utils_bstream_scratch_copyto(viddec_pm_utils_bstream_scratch_cxt_t *cxt, uint8_t *data, uint32_t num_bytes) 125 for(i=0; i<num_bytes;i++) 148 uint32_t num_bytes,/* requested number of bytes*/ 157 while(valid_bytes_read < num_bytes)
|
/device/google/marlin/power/ |
utils.c | 113 int sysfs_read(char *path, char *s, int num_bytes) 127 if ((count = read(fd, s, num_bytes - 1)) < 0) {
|
/device/huawei/angler/power/ |
utils.c | 102 int sysfs_read(char *path, char *s, int num_bytes) 116 if ((count = read(fd, s, num_bytes - 1)) < 0) {
|
/device/lge/bullhead/power/ |
utils.c | 102 int sysfs_read(char *path, char *s, int num_bytes) 116 if ((count = read(fd, s, num_bytes - 1)) < 0) {
|
/external/libweave/third_party/libuweave/src/ |
macaroon.c | 215 macaroon->caveats[i]->bytes, macaroon->caveats[i]->num_bytes, 298 &(caveat_structs[i].num_bytes))) {
|
/system/connectivity/shill/net/ |
netlink_message.h | 117 size_t num_bytes); 140 size_t num_bytes);
|