/external/libdrm/include/drm/ |
amdgpu_drm.h | 23 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 96 struct drm_amdgpu_gem_create_out out; member in union:drm_amdgpu_gem_create 134 struct drm_amdgpu_bo_list_out out; member in union:drm_amdgpu_bo_list 178 union drm_amdgpu_ctx_out out; member in union:drm_amdgpu_ctx 255 struct drm_amdgpu_gem_mmap_out out; member in union:drm_amdgpu_gem_mmap 276 struct drm_amdgpu_gem_wait_idle_out out; member in union:drm_amdgpu_gem_wait_idle 297 struct drm_amdgpu_wait_cs_out out; member in union:drm_amdgpu_wait_cs 379 struct drm_amdgpu_cs_out out; member in union:drm_amdgpu_cs
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/ |
FlameMain.java | 388 //System.out.println("rebuilding active controllers"); [all...] |
/external/libpng/contrib/libtests/ |
pngstest.c | 620 /* Delete function; cleans out all the allocated data and the temporary file in 679 "simpletest: out of memory allocating %lu(+32) byte buffer\n", 770 /* Separate out the gamma+background_rgb_to_gray warning because it may 1159 * OUT: ----- 8-bit ----- ----- 16-bit ----- 1204 gpc_noop(Pixel *out, const Pixel *in, const Background *back) 1207 out->r = in->r; 1208 out->g = in->g; 1209 out->b = in->b; 1210 out->a = in->a; 1215 gpc_nop8(Pixel *out, const Pixel *in, const Background *back 3694 unsigned int out; local 3725 unsigned int out; local 3753 unsigned int out; local [all...] |
/external/libpng/contrib/tools/ |
pngfix.c | 398 uarb_printx(uarb num, int digits, FILE *out) 404 fprintf(out, "0x%x", num[digits]); 407 fprintf(out, "%.4x", num[--digits]); 411 fputs("0x0", out); 415 uarb_print(uarb num, int digits, FILE *out) 426 uarb_printx(num, digits, out); 435 fprintf(out, "%lu", n); 862 FILE * out; /* If a new one is being written */ member in struct:file 916 emit_string(const char *str, FILE *out) 923 putc(*str, out); 1117 putc(type_char(type ), out); local [all...] |
/external/libvpx/libvpx/vpx_dsp/x86/ |
inv_txfm_sse2.c | 3509 tran_low_t out[4 * 4]; local 3625 tran_low_t out[8 * 8]; local 3726 tran_low_t out[8 * 8] = { 0 }; local 3830 tran_low_t out[16 * 16]; local 3944 tran_low_t out[16 * 16] = { 0 }; local [all...] |
/external/libxml2/ |
runtest.c | 99 const char *out; /* output directory */ member in struct:testDesc 331 /* print out the selected text */ 499 channel(data, "%s\n", "out of memory error"); 563 static char *resultFilename(const char *filename, const char *out, 579 if (out == NULL) 580 out = ""; 588 snprintf(res, 499, "%s%s%s", out, base, suffixbuff); 3718 xmlChar **out = NULL; local [all...] |
tree.c | 69 * Handle an out of memory condition 82 * Handle an out of memory condition 1295 goto out; 8345 xmlNodePtr cur, prev = NULL, out = NULL; local [all...] |
/external/opencv/cv/src/ |
cvhaar.cpp | 37 // or tort (including negligence or otherwise) arising in any way out of 179 CvHidHaarClassifierCascade* out = 0; local 268 CV_CALL( out = (CvHidHaarClassifierCascade*)cvAlloc( datasize )); 269 memset( out, 0, sizeof(*out) ); 272 out->count = cascade->count; 273 out->stage_classifier = (CvHidHaarStageClassifier*)(out + 1); 274 haar_classifier_ptr = (CvHidHaarClassifier*)(out->stage_classifier + cascade->count); 277 out->is_stump_based = 1 [all...] |
/external/opencv3/modules/java/src/ |
calib3d.cpp | 3597 Mat& out = *((Mat*)out_nativeObj); local 3621 Mat& out = *((Mat*)out_nativeObj); local [all...] |
/external/opencv3/modules/objdetect/src/ |
haar.cpp | 37 // or tort (including negligence or otherwise) arising in any way out of 185 CvHidHaarClassifierCascade* out = 0; local 270 out = (CvHidHaarClassifierCascade*)cvAlloc( datasize ); 271 memset( out, 0, sizeof(*out) ); 274 out->count = cascade->count; 275 out->stage_classifier = (CvHidHaarStageClassifier*)(out + 1); 276 haar_classifier_ptr = (CvHidHaarClassifier*)(out->stage_classifier + cascade->count); 279 out->isStumpBased = 1 [all...] |
/external/pdfium/xfa/src/fxfa/src/app/ |
xfa_ffwidget.cpp | 904 FX_CHAR* out = NULL;
local 907 out = FX_Alloc(FX_CHAR, ((buf_len * 8 + 5) / 6) + 5);
911 out[j] = g_base64_chars[(limb >> 18) & 63];
912 out[j + 1] = g_base64_chars[(limb >> 12) & 63];
913 out[j + 2] = g_base64_chars[(limb >> 6) & 63];
914 out[j + 3] = g_base64_chars[(limb)&63];
921 out[j++] = g_base64_chars[(limb >> 2) & 63];
922 out[j++] = g_base64_chars[(limb << 4) & 63];
923 out[j++] = '=';
924 out[j++] = '='; [all...] |
/external/toybox/toys/pending/ |
xzcat.c | 81 * @out: Beginning of the output buffer. This may be NULL if and only 87 * Only the contents of the output buffer from out[out_pos] onward, and 95 uint8_t *out; member in struct:xz_buf 121 * system out of memory when decompressing streams from untrusted sources. 139 * contents of the output buffer from b->out[b->out_pos] onward are 194 static uint8_t out[BUFSIZ]; variable 231 b.out = out; 243 if (b.out_pos == sizeof(out)) { 244 if (fwrite(out, 1, b.out_pos, stdout) != b.out_pos) 451 uint8_t *out; member in struct:xz_dec_bcj [all...] |
/external/vulkan-validation-layers/loader/ |
loader.c | 24 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE 288 char *out = NULL; local 312 if (out == NULL) { 313 out = loader_heap_alloc( 315 out[0] = '\0'; 316 } else if (strlen(out) + name_size + 1 > total_size) { 317 out = loader_heap_realloc( 318 inst, out, total_size, total_size * 2, 322 if (out == NULL) { 325 "Out of memory, failed loader_get_registry_files") [all...] |
/external/webp/src/dsp/ |
dec_neon.c | 53 uint8x8x4_t out; local 54 INIT_VECTOR4(out, zero, zero, zero, zero); 55 out = vld4_lane_u8(src + 0 * stride, out, 0); 56 out = vld4_lane_u8(src + 1 * stride, out, 1); 57 out = vld4_lane_u8(src + 2 * stride, out, 2); 58 out = vld4_lane_u8(src + 3 * stride, out, 3) [all...] |
/frameworks/av/services/audioflinger/ |
AudioFlinger.cpp | 153 goto out; 159 goto out; 164 goto out; 168 out: 2029 AudioStreamOut *out = thread->clearOutput(); local [all...] |
/frameworks/base/core/java/android/widget/ |
FastScroller.java | 55 /** Duration of fade-out animation. */ 195 /** Whether decorations should be laid out from right to left. */ 611 * @param out Rectangle into which measured bounds are placed. 613 private void measurePreview(View v, Rect out) { 622 measureFloating(v, margins, out); 624 measureViewToSide(v, mThumbImage, margins, out); 629 * Measures the bounds for a view that should be laid out against the edge 630 * of an adjacent view. If no adjacent view is provided, lays out against 637 * @param out Rectangle into which measured bounds are placed. 639 private void measureViewToSide(View view, View adjacent, Rect margins, Rect out) { [all...] |
ProgressBar.java | 499 final StateListDrawable out = new StateListDrawable(); local 502 out.addState(in.getStateSet(i), tileify(in.getStateDrawable(i), clip)); 505 return out; [all...] |
/frameworks/base/core/jni/ |
android_hardware_camera2_DngCreator.cpp | 860 static status_t convertCFA(uint8_t cfaEnum, /*out*/uint8_t* cfaOut) { 945 /*out*/double* noiseProfile) { 2134 sp<JniOutputStream> out = new JniOutputStream(env, outStream); local 2242 sp<JniOutputStream> out = new JniOutputStream(env, outStream); local [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
BaseShortcutManagerTest.java | 1152 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
WifiConfiguration.java | 2066 DataOutputStream out = new DataOutputStream(baos); local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/ |
vp9_dct_avx2.c | 1081 int16_t *out = intermediate; local [all...] |
vp9_dct_sse2.c | 1182 int16_t *out = intermediate; local [all...] |
/hardware/qcom/audio/hal/ |
audio_hw.c | 260 static void register_out_stream(struct stream_out *out) 262 struct audio_device *adev = out->dev; 263 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) 270 out->handle, 271 out->flags); 276 if (out->realtime) { 278 out->handle, 279 out->pcm, &out->config); 304 static void request_out_focus(struct stream_out *out, long ns 1367 struct stream_out *out = (struct stream_out *) context; local 1792 struct stream_out *out = (struct stream_out *)stream; local 1804 struct stream_out *out = (struct stream_out *)stream; local 1815 struct stream_out *out = (struct stream_out *)stream; local 1822 struct stream_out *out = (struct stream_out *)stream; local 1834 struct stream_out *out = (struct stream_out *)stream; local 1871 struct stream_out *out = (struct stream_out *)stream; local 1893 struct stream_out *out = (struct stream_out *)stream; local 1952 struct stream_out *out = (struct stream_out *)stream; local 2046 struct stream_out *out = (struct stream_out *)stream; local 2086 struct stream_out *out = (struct stream_out *)stream; local 2106 struct stream_out *out = (struct stream_out *)stream; local 2147 struct stream_out *out = (struct stream_out *)stream; local 2181 struct stream_out *out = (struct stream_out *)stream; local 2197 struct stream_out *out = (struct stream_out *)stream; local 2312 struct stream_out *out = (struct stream_out *)stream; local 2351 struct stream_out *out = (struct stream_out *)stream; local 2397 struct stream_out *out = (struct stream_out *)stream; local 2409 struct stream_out *out = (struct stream_out *)stream; local 2425 struct stream_out *out = (struct stream_out *)stream; local 2442 struct stream_out *out = (struct stream_out *)stream; local 2458 struct stream_out *out = (struct stream_out *)stream; local 2832 struct stream_out *out; local 3078 struct stream_out *out = (struct stream_out *)stream; local 3533 struct stream_out out; local [all...] |
/hardware/qcom/msm8960/kernel-headers/linux/ |
msm_vidc_enc.h | 170 void __user *out; member in struct:venc_ioctl_msg
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
msm_vidc_enc.h | 172 void __user *out; member in struct:venc_ioctl_msg
|