/system/core/libsparse/ |
simg2simg.c | 50 struct sparse_file **out_s; local 79 out_s = calloc(sizeof(struct sparse_file *), files); 80 if (!out_s) { 85 files = sparse_file_resparse(s, max_size, out_s, files); 104 ret = sparse_file_write(out_s[i], out, false, true, false);
|
sparse.c | 357 struct sparse_file **out_s, int out_s_count) 375 out_s[c] = s;
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicBlend.cpp | 155 short4 out_s = convert_short4(*out); local 156 in_s = in_s + ((out_s * (short4)(255 - in_s.w)) >> (short4)8); 174 short4 out_s = convert_short4(*out); local 175 in_s = out_s + ((in_s * (short4)(255 - out_s.w)) >> (short4)8); 210 short4 out_s = convert_short4(*out); local 211 out_s = (out_s * in->w) >> (short4)8; 212 *out = convert_uchar4(out_s); 246 short4 out_s = convert_short4(*out) local 265 short4 out_s = convert_short4(*out); local 285 short4 out_s = convert_short4(*out); local [all...] |
/system/core/libsparse/include/sparse/ |
sparse.h | 278 * @out_s - array of sparse file cookies 279 * @out_s_count - size of out_s array 283 * that would have been written to out_s if out_s were big enough. 286 struct sparse_file **out_s, int out_s_count);
|
/external/antlr/antlr-3.4/runtime/Python/ |
xmlrunner.py | 188 out_s = sys.stdout.getvalue() 190 out_s = "" 200 result.print_report(stream, time_taken, out_s, err_s)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
stropmodule.c | 1095 char *out_s;
local 1114 out_s = (char *)PyMem_MALLOC(1);
1115 if (out_s == NULL)
1117 out_s[0] = '\0';
1124 out_s = new_s;
1147 return out_s;
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
stropmodule.c | 1093 char *out_s;
local 1112 out_s = (char *)PyMem_MALLOC(1);
1113 if (out_s == NULL)
1115 out_s[0] = '\0';
1122 out_s = new_s;
1145 return out_s;
[all...] |
/external/python/cpython2/Modules/ |
stropmodule.c | 1095 char *out_s; local 1121 out_s = (char *)PyMem_MALLOC(1); 1122 if (out_s == NULL) 1124 out_s[0] = '\0'; 1131 out_s = new_s; 1154 return out_s; [all...] |
/system/core/fastboot/ |
fastboot.cpp | 753 sparse_file** out_s = reinterpret_cast<sparse_file**>(calloc(sizeof(struct sparse_file *), files + 1)); local 754 if (!out_s) { 758 files = sparse_file_resparse(s, max_size, out_s, files); 763 return out_s; [all...] |
/art/compiler/optimizing/ |
code_generator_arm_vixl.cc | 4275 vixl32::SRegister out_s = LowSRegisterFrom(out); local [all...] |