/external/libvpx/libvpx/vp8/common/ |
H A D | reconintra4x4.c | 41 unsigned char top_left) 51 Above[-1] = top_left; 37 vp8_intra4x4_predict(unsigned char *above, unsigned char *yleft, int left_stride, B_PREDICTION_MODE b_mode, unsigned char *dst, int dst_stride, unsigned char top_left) argument
|
/external/clang/test/FixIt/ |
H A D | typo.c | 12 struct Point top_left, // expected-note{{'top_left' declared here}} member in struct:Rectangle 27 topleft.x = 3.14, // expected-error{{field designator 'topleft' does not refer to any field in type 'struct Rectangle'; did you mean 'top_left'?}} 28 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:3-[[@LINE-1]]:10}:"top_left" 35 r1.top_left.x = 0; 41 r2->top_left.y = 0;
|
/external/libvpx/libvpx/vp8/encoder/ |
H A D | encodeintra.c | 62 unsigned char top_left = Above[-1]; local 65 b->predictor, 16, top_left);
|
H A D | pickinter.c | 253 unsigned char top_left = Above[-1]; local 262 b->predictor, 16, top_left);
|
H A D | rdopt.c | 662 unsigned char top_left = Above[-1]; local 672 b->predictor, 16, top_left);
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
H A D | intrapred4_dspr2.c | 90 int32_t top_left; local 101 "lbu %[top_left], -1(%[above]) \n\t" 111 "replv.ph %[top_left], %[top_left] \n\t" 114 "subu.ph %[resl], %[resl], %[top_left] \n\t" 117 "subu.ph %[resr], %[resr], %[top_left] \n\t" 136 "subu.ph %[resl], %[resl], %[top_left] \n\t" 139 "subu.ph %[resr], %[resr], %[top_left] \n\t" 163 "subu.ph %[resl], %[resl], %[top_left] \n\t" 166 "subu.ph %[resr], %[resr], %[top_left] \ [all...] |
H A D | intrapred8_dspr2.c | 160 int32_t top_left; local 165 "ulw %[top_left], 4(%[above]) \n\t" 171 "preceu.ph.qbl %[abovel_1], %[top_left] \n\t" 172 "preceu.ph.qbr %[abover_1], %[top_left] \n\t" 174 "lbu %[top_left], -1(%[above]) \n\t" 177 "replv.ph %[top_left], %[top_left] \n\t" 180 "subu.ph %[reshw], %[reshw], %[top_left] \n\t" 187 "subu.ph %[reshw], %[reshw], %[top_left] \n\t" 204 "subu.ph %[reshw], %[reshw], %[top_left] \ [all...] |
H A D | intrapred_msa.c | 387 uint8_t top_left = src_top_ptr[-1]; local 392 src_top_left = (v8u16)__msa_fill_h(top_left); 415 uint8_t top_left = src_top_ptr[-1]; local 423 src_top_left = (v8u16)__msa_fill_h(top_left); 447 uint8_t top_left = src_top_ptr[-1]; local 453 src_top_left = (v8u16)__msa_fill_h(top_left); 496 uint8_t top_left = src_top[-1]; local 502 src_top_left = (v8u16)__msa_fill_h(top_left);
|
/external/webrtc/webrtc/modules/desktop_capture/ |
H A D | desktop_geometry.h | 108 DesktopVector top_left() const { return DesktopVector(left_, top_); } function in class:webrtc::DesktopRect
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/ |
H A D | PictureParameterSet.java | 75 public int[] top_left; field in class:PictureParameterSet 101 pps.top_left = new int[pps.num_slice_groups_minus1 + 1]; 110 pps.top_left[iGroup] = reader.readUE("PPS: top_left"); 200 int[] top_left = new int[1]; 209 writer.writeUE(top_left[iGroup], "PPS: "); 311 result = prime * result + Arrays.hashCode(top_left); 369 if (!Arrays.equals(top_left, other.top_left)) 398 ",\n top_left [all...] |
/external/opencv3/samples/cpp/ |
H A D | image_alignment.cpp | 133 Point2f top_left, top_right, bottom_left, bottom_right; local 149 GET_HOMO_VALUES(U, top_left.x, top_left.y); 167 line(image, top_left, top_right, Scalar(255,0,255)); 170 line(image, bottom_left, top_left, Scalar(255,0,255));
|
/external/libvpx/libvpx/vp8/decoder/ |
H A D | threading.c | 196 unsigned char top_left; local 216 top_left = *(xd->recon_left[0] + i - 1); 218 top_left = Above[-1]; 221 b_mode, dst, dst_stride, top_left);
|
H A D | decodeframe.c | 201 unsigned char top_left = Above[-1]; local 204 dst, dst_stride, top_left);
|
/external/clang/test/Sema/ |
H A D | designated-initializers.c | 57 struct point top_left; member in struct:rect 61 struct rect window = { .top_left.x = 1.0 }; 64 [2].top_left = { 1.0, 2.0 }, 67 [3] = { .top_left = { 1.1, 2.2 }, .bottom_right = { .y = 1.1 } } 73 [2].top_left = { { .x = 1.1 } }, // expected-error{{designator in initializer for scalar type}} 74 [1].top_left = { .x = 1.1 } 82 [5].windows[3].top_left.x = { 7.0 } // expected-warning{{braces around scalar initializer}} 90 .window = { .top_left = { 1.0, 2.0 } },
|
/external/opencv/cv/src/ |
H A D | cvdistransform.cpp | 829 CvPoint top_left = {0,0}, bottom_right = {size.width-1,size.height-1}; local 845 cvRectangle( src_copy, top_left, bottom_right, cvScalarAll(255), 1, 8 );
|
/external/libhevc/decoder/ |
H A D | ihevcd_iquant_itrans_recon_ctb.c | 354 UWORD8 top_right, top, top_left, left, bot_left; local 390 top_left = 0; 474 top_left = (*pu1_nbr_intra_flag >> intra_pos) & 1; 488 top_left = 0x1; 519 nbr_flags = (top_left << 16) | (gau4_ihevcd_4_bit_reverse[top_right] << 12) | (gau4_ihevcd_4_bit_reverse[top] << 8) | (gau4_ihevcd_4_bit_reverse[left] << 4) 522 nbr_flags = (top_left << 16) | (top_right << 12) | (top << 8) | (gau4_ihevcd_4_bit_reverse[left] << 4) 550 /* 1st bit points to neighbor (left/top_left/bot_left) */
|