Searched refs:actual (Results 1 - 5 of 5) sorted by relevance

/system/core/libpixelflinger/tests/gglmul/
H A Dgglmul_test.cpp123 GGLfixed actual, expected; local
131 actual = gglMulx(test->x, test->y, test->shift);
134 if(actual == expected)
138 actual, expected);
166 GGLfixed actual, expected; local
174 actual = gglMulAddx(test->x, test->y,test->a, test->shift);
177 if(actual == expected)
181 actual, expected);
209 GGLfixed actual, expected; local
217 actual
251 int64_t actual, expected; local
[all...]
/system/media/audio_utils/
H A Dtinysndfile.c78 size_t actual; local
79 actual = fread(wav, sizeof(char), sizeof(wav), stream);
80 if (actual < 12) {
81 fprintf(stderr, "actual %zu < 44\n", actual);
102 actual = fread(chunk, sizeof(char), sizeof(chunk), stream);
103 if (actual != sizeof(chunk)) {
104 fprintf(stderr, "actual %zu != %zu\n", actual, sizeof(chunk));
123 actual
[all...]
/system/core/libziparchive/
H A Dzip_archive.cc252 // if the actual uncompressed length or crc32 do not match their declared
354 ssize_t actual = TEMP_FAILURE_RETRY(read(fd, buf, get_size)); local
356 if (actual != get_size) {
357 ALOGW("CopyFileToFile: copy read failed (" ZD " vs " ZD ")", actual, get_size);
459 ssize_t actual = TEMP_FAILURE_RETRY( local
461 if (actual != static_cast<ssize_t>(read_amount)) {
718 ssize_t actual = TEMP_FAILURE_RETRY(read(fd, ddBuf, sizeof(ddBuf))); local
719 if (actual != sizeof(ddBuf)) {
796 // actual file data will begin after the local header and the name /
805 ssize_t actual local
847 ssize_t actual = ReadAtOffset(archive->fd, name_buf, nameLen, local
1020 const ZD_TYPE actual = TEMP_FAILURE_RETRY(read(fd, read_buf, getSize)); local
[all...]
/system/core/debuggerd/
H A Dtombstone.cpp471 ssize_t actual = android_logger_list_read(logger_list, &log_entry); local
474 if (actual < 0) {
475 if (actual == -EINTR) {
478 } else if (actual == -EAGAIN) {
483 strerror(-actual));
486 } else if (actual == 0) {
/system/core/sdcard/
H A Dsdcard.c349 * Populates 'buf' with the path and returns the actual name (within 'buf') on success,
358 char* actual; local
366 actual = buf + pathlen + 1;
367 memcpy(actual, name, namelen + 1);
374 return actual;
379 memcpy(actual, entry->d_name, namelen);
385 return actual;
723 * places user_id at the top directory level, with the actual roots

Completed in 307 milliseconds