Searched defs:out (Results 26 - 34 of 34) sorted by path

12

/system/extras/ext4_utils/
H A Dext2simg.c182 const char *out = NULL; local
219 out = argv[optind++];
240 if (strcmp(out, "-")) {
241 outfd = open(out, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
/system/extras/fatblock/
H A Dimport.c95 static int import_file(struct fs *fs, char *path, struct imported *out) argument
111 "out of memory\n", path);
118 WARN("importing %s: couldn't strdup path: out of memory\n",
132 f->size, EXTENT_TYPE_FILE, &out->first_cluster);
138 out->size = f->size;
139 out->dot_dot_dirent = NULL;
194 struct imported *out)
225 "out of memory\n", path);
232 WARN("importing %s: couldn't strdup path: out of memory\n",
256 "out o
193 import_dir(struct fs *fs, char *path, int is_root, struct imported *out) argument
[all...]
H A Dread.c28 static int buffer_read(char *buf, offset_t buf_len, char *out, argument
32 assert(out);
35 memset(out, 0, len);
40 memset(out + (buf_len - off), 0, len - (buf_len - off));
47 memcpy(out, buf + off, len);
/system/extras/libublock/
H A Dublock.c70 void *out, size_t *out_len)
77 assert(out);
87 out_h = (struct ublock_init_out *)out;
106 void *out, size_t *out_len)
112 assert(out);
126 void *out, size_t *out_len)
134 assert(out);
141 out_h = (struct ublock_read_out *)out;
156 void *out, size_t *out_len)
164 assert(out);
68 ublock_handle_init(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
104 ublock_handle_ready(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
124 ublock_handle_read(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
154 ublock_handle_write(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
180 ublock_handle_request(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
[all...]
/system/extras/tests/bionic/libc/other/
H A Dtest_zlib.c51 unsigned char out[CHUNK]; local
75 strm.next_out = out;
78 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
99 static unsigned char out[CHUNK]; local
125 strm.next_out = out;
221 FILE* out = NULL; local
235 out = fopen( tempfile, "wb" );
236 if (out == NULL) {
244 ret = def( f, out, compression_level );
249 fclose( out );
[all...]
/system/media/audio_utils/include/audio_utils/
H A Dprimitives.h26 * Dither and clamp pairs of 32-bit input samples (sums) to 16-bit output samples (out).
30 * and out is an array of interleaved pairs of 16-bit samples per channel.
31 * For mono, c is the number of samples / 2, and out is an array of 16-bit samples.
35 void ditherAndClamp(int32_t* out, const int32_t *sums, size_t c);
84 int32_t out; local
85 asm( "smlabb %[out], %[in], %[v], %[a] \n"
86 : [out]"=r"(out)
89 return out;
102 int32_t out; local
120 int32_t out; local
149 int32_t out; local
[all...]
/system/media/audio_utils/
H A Dprimitives.c19 void ditherAndClamp(int32_t* out, int32_t const *sums, size_t c) argument
29 *out++ = (r<<16) | (l & 0xFFFF);
H A Dresampler.c74 int16_t *out,
79 if (rsmp == NULL || out == NULL || outFrameCount == NULL) {
127 out + framesWr,
133 out + framesWr * rsmp->channel_count,
139 "ReSampler::resample() remaining %d frames in and %d frames out",
155 int16_t *out,
161 out == NULL || outFrameCount == NULL) {
174 out,
180 out,
184 ALOGV("resampler_resample_from_input() DONE in %d out
73 resampler_resample_from_provider(struct resampler_itfe *resampler, int16_t *out, size_t *outFrameCount) argument
152 resampler_resample_from_input(struct resampler_itfe *resampler, int16_t *in, size_t *inFrameCount, int16_t *out, size_t *outFrameCount) argument
[all...]
/system/security/keystore/
H A Dkeystore.cpp136 goto out;
143 goto out;
148 out:
164 static int encode_key(char* out, const Value* key) { argument
167 for (int i = length; i > 0; --i, ++in, ++out) {
169 *out = *in;
171 *out = '+' + (*in >> 6);
172 *++out = '0' + (*in & 0x3F);
176 *out = '\0';
180 static int encode_key_for_uid(char* out, uid_ argument
187 decode_key(uint8_t* out, const char* in, int length) argument
379 int out = open(tmpFileName, O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR); local
[all...]

Completed in 2096 milliseconds

12