Searched refs:edges (Results 1 - 25 of 41) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dintrax8dsp.h30 int *range, int *sum, int edges);
H A Dintrax8.h49 int edges; member in struct:IntraX8Context
H A Dintrax8dsp.c58 * @param edges Informs this routine that the block is on an image border, so it has to interpolate the missing edge pixels.
66 int * range, int * psum, int edges){
73 if((edges&3)==3){
87 if(!(edges&1)){//(mb_x!=0)//there is previous block on this row
103 if(!(edges&2)){ //(mb_y!=0)//there is row above
111 if(edges&4){//last block on the row?
120 if(edges&3){//mb_x==0 || mb_y==0){
122 if(edges&1){ //(mb_x==0) {//implies mb_y!=0
65 x8_setup_spatial_compensation(uint8_t *src, uint8_t *dst, int linesize, int * range, int * psum, int edges) argument
H A Dhevc_filter.c192 int edges[4]; // 0 left 1 top 2 right 3 bottom local
198 // flags indicating unfilterable edges
211 edges[0] = x_ctb == 0;
212 edges[1] = y_ctb == 0;
213 edges[2] = x_ctb == s->sps->ctb_width - 1;
214 edges[3] = y_ctb == s->sps->ctb_height - 1;
217 if (!edges[0]) {
221 if (!edges[2]) {
225 if (!edges[1]) {
229 if (!edges[
[all...]
H A Dintrax8.c308 &range, &sum, w->edges);
330 if( (w->edges&3) == 0){
364 w->edges = 1*( !(s->mb_x>>1) );
365 w->edges|= 2*( !(s->mb_y>>1) );
366 w->edges|= 4*( s->mb_x >= (2*s->mb_width-1) );//mb_x for chroma would always be odd
369 if(w->edges&3){//lut_co[8]={inv,4,8,8, inv,4,8,8}<- =>{1,1,0,0;1,1,0,0} => 0xCC
370 w->chroma_orient=4<<((0xCC>>w->edges)&1);
380 w->edges = 1*( !s->mb_x );
381 w->edges|= 2*( !s->mb_y );
382 w->edges|
[all...]
H A Dh264dsp.h76 int bidir, int edges, int step,
H A Dh264_loopfilter.c359 int edges; local
361 edges = 4;
370 edges = 4 - 3*((mb_type>>3) & !(h->cbp & 15)); //(mb_type & MB_TYPE_16x16) && !(h->cbp & 15) ? 1 : 4;
372 h->list_count==2, edges, step, mask_edge0, mask_edge1, FIELD_PICTURE(h));
394 if( edges == 1 ) {
471 // how often to recheck mv-based bS when iterating between edges
475 const int edges = mask_edge== 3 && !(h->cbp&15) ? 1 : 4; local
614 for( edge = 1; edge < edges; edge++ ) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dintrax8.h44 int edges; member in struct:__anon1929
H A Dintrax8dsp.c57 * @param edges Informs this routine that the block is on an image border, so it has to interpolate the missing edge pixels.
65 int * range, int * psum, int edges){
72 if((edges&3)==3){
86 if(!(edges&1)){//(mb_x!=0)//there is previous block on this row
102 if(!(edges&2)){ //(mb_y!=0)//there is row above
110 if(edges&4){//last block on the row?
119 if(edges&3){//mb_x==0 || mb_y==0){
121 if(edges&1){ //(mb_x==0) {//implies mb_y!=0
64 x8_setup_spatial_compensation(uint8_t *src, uint8_t *dst, int linesize, int * range, int * psum, int edges) argument
H A Dintrax8.c308 &range, &sum, w->edges);
330 if( (w->edges&3) == 0){
364 w->edges = 1*( !(s->mb_x>>1) );
365 w->edges|= 2*( !(s->mb_y>>1) );
366 w->edges|= 4*( s->mb_x >= (2*s->mb_width-1) );//mb_x for chroma would always be odd
369 if(w->edges&3){//lut_co[8]={inv,4,8,8, inv,4,8,8}<- =>{1,1,0,0;1,1,0,0} => 0xCC
370 w->chroma_orient=4<<((0xCC>>w->edges)&1);
380 w->edges = 1*( !s->mb_x );
381 w->edges|= 2*( !s->mb_y );
382 w->edges|
[all...]
H A Dh264dsp.h63 int bidir, int edges, int step, int mask_mv0, int mask_mv1, int field);
H A Dh264_loopfilter.c363 int edges; local
365 edges = 4;
374 edges = 4 - 3*((mb_type>>3) & !(h->cbp & 15)); //(mb_type & MB_TYPE_16x16) && !(h->cbp & 15) ? 1 : 4;
376 h->list_count==2, edges, step, mask_edge0, mask_edge1, FIELD_PICTURE);
398 if( edges == 1 ) {
476 // how often to recheck mv-based bS when iterating between edges
480 const int edges = mask_edge== 3 && !(h->cbp&15) ? 1 : 4; local
619 for( edge = 1; edge < edges; edge++ ) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/ppc/
H A Dfloat_dsp_altivec.c78 vector float d, s0, s1, s2, t0, t1, edges; local
88 edges = vec_perm(t1, t0, mask);
90 t1 = vec_perm(d, edges, align);
91 t0 = vec_perm(edges, d, align);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/ppc/
H A Dfloat_altivec.c74 vector float d, s0, s1, s2, t0, t1, edges; local
84 edges = vec_perm(t1 ,t0, mask);
86 t1 = vec_perm(d, edges, align);
87 t0 = vec_perm(edges, d, align);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/src/
H A Dantlr3collections.c2263 * used to define edges that identify numerical node indexes that depend on other
2296 topo->limit = 1; // No edges added yet
2297 topo->edges = NULL; // No edges added yet
2333 // First see if we have enough room in the edges array to add the edge?
2335 if (topo->edges == NULL)
2337 // We don't have any edges yet, so create an array to hold them
2339 topo->edges = ANTLR3_CALLOC(sizeof(pANTLR3_BITSET) * (maxEdge + 1), 1);
2340 if (topo->edges == NULL)
2351 // WE have some edges bu
2416 pANTLR3_BITSET edges; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/mfd/
H A Ducb1x00.h249 * Which edges of the IRQ do you want to control today?
255 void ucb1x00_enable_irq(struct ucb1x00 *ucb, unsigned int idx, int edges);
256 void ucb1x00_disable_irq(struct ucb1x00 *ucb, unsigned int idx, int edges);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/ppc/
H A Dh264qpel.c199 vec_u8 a, b, d, tmp1, tmp2, mask, mask_, edges, align; local
222 edges = vec_perm(tmp2, tmp1, mask);
226 tmp2 = vec_perm(d, edges, align);
227 tmp1 = vec_perm(edges, d, align);
241 vec_u8 a, b, d, tmp1, tmp2, mask, mask_, edges, align; local
264 edges = vec_perm(tmp2, tmp1, mask);
268 tmp2 = vec_perm(d, edges, align);
269 tmp1 = vec_perm(edges, d, align);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c213 HASH_DESC hash_d[8], edges[8]; local
298 edges[i].ptr = blocks[i].c;
299 edges[i].blocks = 1;
303 sha1_multi_block(ctx, edges, n4x);
316 edges[i].ptr = hash_d[i].ptr;
317 edges[i].blocks = MAXCHUNKSIZE / 64;
321 sha1_multi_block(ctx, edges, n4x);
325 edges[i].ptr = hash_d[i].ptr += MAXCHUNKSIZE;
327 edges[i].blocks = MAXCHUNKSIZE / 64;
358 edges[
[all...]
H A De_aes_cbc_hmac_sha256.c209 HASH_DESC hash_d[8], edges[8]; local
298 edges[i].ptr = blocks[i].c;
299 edges[i].blocks = 1;
303 sha256_multi_block(ctx, edges, n4x);
316 edges[i].ptr = hash_d[i].ptr;
317 edges[i].blocks = MAXCHUNKSIZE / 64;
321 sha256_multi_block(ctx, edges, n4x);
325 edges[i].ptr = hash_d[i].ptr += MAXCHUNKSIZE;
327 edges[i].blocks = MAXCHUNKSIZE / 64;
358 edges[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/evp/
H A De_aes_cbc_hmac_sha1.c213 HASH_DESC hash_d[8], edges[8]; local
298 edges[i].ptr = blocks[i].c;
299 edges[i].blocks = 1;
303 sha1_multi_block(ctx, edges, n4x);
316 edges[i].ptr = hash_d[i].ptr;
317 edges[i].blocks = MAXCHUNKSIZE / 64;
321 sha1_multi_block(ctx, edges, n4x);
325 edges[i].ptr = hash_d[i].ptr += MAXCHUNKSIZE;
327 edges[i].blocks = MAXCHUNKSIZE / 64;
358 edges[
[all...]
H A De_aes_cbc_hmac_sha256.c209 HASH_DESC hash_d[8], edges[8]; local
298 edges[i].ptr = blocks[i].c;
299 edges[i].blocks = 1;
303 sha256_multi_block(ctx, edges, n4x);
316 edges[i].ptr = hash_d[i].ptr;
317 edges[i].blocks = MAXCHUNKSIZE / 64;
321 sha256_multi_block(ctx, edges, n4x);
325 edges[i].ptr = hash_d[i].ptr += MAXCHUNKSIZE;
327 edges[i].blocks = MAXCHUNKSIZE / 64;
358 edges[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/x86/
H A Dh264dsp_mmx.c91 #define h264_loop_filter_strength_iteration_mmx2(bS, nz, ref, mv, bidir, edges, step, mask_mv, dir, d_idx, mask_dir) \
95 for( b_idx=0; b_idx<edges; b_idx+=step ) { \
206 int bidir, int edges, int step, int mask_mv0, int mask_mv1, int field ) {
222 // could do a special case for dir==0 && edges==1, but it only reduces the
225 edges <<= 3;
226 h264_loop_filter_strength_iteration_mmx2(bS, nnz, ref, mv, bidir, edges, step, mask_mv1, 1, -8, 0);
205 h264_loop_filter_strength_mmx2( int16_t bS[2][4][4], uint8_t nnz[40], int8_t ref[2][40], int16_t mv[2][40][2], int bidir, int edges, int step, int mask_mv0, int mask_mv1, int field ) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtconstr.tex56 This object contains a constraint for each of the window edges, two for the centre point,
74 edges and dimensions remain unconstrained. For a given window,
77 evaluating them. For unconstrained edges and dimensions, it
79 an unconstrained {\it width} may be calculated from the {\it left} and {\it right edges}, if
80 both are currently known. For edges and dimensions with user-supplied constraints, these
83 The algorithm stops when all child edges and dimension are known (success), or
84 there are unknown edges or dimensions but there has been no change in this cycle (failure).
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mfd/
H A Ducb1x00-core.c322 * @edges: interrupt edges to enable
325 * %UCB_FALLING or both edges. The interrupt should have been
328 void ucb1x00_enable_irq(struct ucb1x00 *ucb, unsigned int idx, int edges) argument
336 if (edges & UCB_RISING) {
340 if (edges & UCB_FALLING) {
352 * @edges: interrupt edges to disable
355 * (%UCB_RISING, %UCB_FALLING or both) edges.
357 void ucb1x00_disable_irq(struct ucb1x00 *ucb, unsigned int idx, int edges) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/ath/ar9170/
H A Dphy.c1089 /* check if we hit one of the edges */
1232 struct ar9170_calctl_edges edges[],
1244 if (edges[i].channel == 0xff)
1246 if (f == edges[i].channel) {
1248 rc = edges[i].power_flags & ~AR9170_CALCTL_EDGE_FLAGS;
1251 if (i > 0 && f < edges[i].channel) {
1252 if (f > edges[i - 1].channel &&
1253 edges[i - 1].power_flags &
1256 rc = edges[i - 1].power_flags &
1264 if (f > edges[
1231 ar9170_get_max_edge_power(struct ar9170 *ar, struct ar9170_calctl_edges edges[], u32 freq) argument
1274 ar9170_get_heavy_clip(struct ar9170 *ar, struct ar9170_calctl_edges edges[], u32 freq, enum ar9170_bw bw) argument
[all...]

Completed in 357 milliseconds

12