Searched refs:block (Results 1 - 25 of 638) sorted by path

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bzip2/
H A Dblocksort.c9 lossless, block-sorting data compression.
195 ((UChar*)eclass) [0 .. nblock-1] holds block
199 ((UChar*)eclass) [0 .. nblock-1] holds block
253 /*-- set sentinel bits for block-end detection --*/
316 Reconstruct the original block in
321 VPrintf0 ( " reconstructing block ...\n" );
349 UChar* block,
360 c1 = block[i1]; c2 = block[i2];
364 c1 = block[i
347 mainGtU( UInt32 i1, UInt32 i2, UChar* block, UInt16* quadrant, UInt32 nblock, Int32* budget ) argument
485 mainSimpleSort( UInt32* ptr, UChar* block, UInt16* quadrant, Int32 nblock, Int32 lo, Int32 hi, Int32 d, Int32* budget ) argument
621 mainQSort3( UInt32* ptr, UChar* block, UInt16* quadrant, Int32 nblock, Int32 loSt, Int32 hiSt, Int32 dSt, Int32* budget ) argument
751 mainSort( UInt32* ptr, UChar* block, UInt16* quadrant, UInt32* ftab, Int32 nblock, Int32 verb, Int32* budget ) argument
1034 UChar* block = s->block; local
[all...]
H A Dbzlib.c9 lossless, block-sorting data compression.
198 s->block = (UChar*)s->arr2;
226 s->block[s->nblock] = (UChar)ch; s->nblock++;
229 s->block[s->nblock] = (UChar)ch; s->nblock++;
230 s->block[s->nblock] = (UChar)ch; s->nblock++;
233 s->block[s->nblock] = (UChar)ch; s->nblock++;
234 s->block[s->nblock] = (UChar)ch; s->nblock++;
235 s->block[s->nblock] = (UChar)ch; s->nblock++;
239 s->block[s->nblock] = (UChar)ch; s->nblock++;
240 s->block[
[all...]
H A Dbzlib_private.h9 lossless, block-sorting data compression.
209 /* for doing the block sorting */
217 UChar* block; member in struct:__anon9
235 /* map of bytes used in block */
244 /* block and combined CRCs */
393 /* map of bytes used in block */
H A Dcompress.c3 /*--- Compression machinery (not incl block sorting) ---*/
9 lossless, block-sorting data compression.
133 holds the original block data.
139 than block values, ptr values in this area are overwritten
151 UChar* block = s->block; local
167 ll_i = s->unseqToSeq[block[j]];
262 VPrintf3( " %d in block, %d after MTF & 1-2 coding, "
544 /*--- And finally, the block data proper ---*/
612 VPrintf4( " block
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dmd4.c103 /* MD4 block update operation. Continues an MD4 message-digest
104 operation, processing another message block, and updating the
174 /* MD4 basic transformation. Transforms state based on block.
176 static void MD4Transform (UINT4 state[4], const unsigned char block[64]) argument
180 Decode (x, block, 64);
H A Dmd5.c183 /* MD5 block update operation. Continues an MD5 message-digest
184 operation, processing another message block, and updating the
188 const unsigned char *input, /* input block */
189 unsigned int inputLen) /* length of input block */
248 /* MD5 basic transformation. Transforms state based on block. */
250 const unsigned char block[64])
254 Decode (x, block, 64);
249 MD5Transform(UINT4 state[4], const unsigned char block[64]) argument
H A Dssh.c633 * blocking and without reaching the end. The data the pointer 'block' points
638 static CURLcode ssh_statemach_act(struct connectdata *conn, bool *block) argument
653 *block = 0; /* we're not blocking by default */
2440 /* we would block, we need to wait for the socket to be ready (in the
2442 *block = TRUE;
2504 static void ssh_block2waitfor(struct connectdata *conn, bool block) argument
2508 if(!block)
2516 /* It didn't block or libssh2 didn't reveal in which direction, put back
2530 bool block; /* we store the status and use that to provide a ssh_getsock() local
2533 result = ssh_statemach_act(conn, &block);
2548 bool block; local
[all...]
H A Dtftp.c75 /* RFC2348 allows the block size to be negotiated */
142 unsigned short block; member in struct:tftp_state_data
228 /* Set per-block timeout to total */
252 /* Set per-block timeout to total */
592 /* Is this the block we expect? */
594 if(NEXT_BLOCKNUM(state->block) != rblock) {
597 "Received unexpected DATA packet block %d, expecting block %d\n",
598 rblock, NEXT_BLOCKNUM(state->block));
601 /* This is the expected block
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/
H A Dip-cref.tex1260 For NAT routes it is the first address of the block of translated IP destinations.
2079 --- The base of the IP address block to translate (for source addresses).
2080 The \verb|ADDRESS| may be either the start of the block of NAT addresses
2148 \verb|map-to| followed by the start of the block of addresses to map.
2847 This command will map a block of 63 addresses 192.203.80.192-255 to
2883 This block of rules causes normal forwarding when
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/
H A Dffplay.c305 static int packet_queue_get(PacketQueue *q, AVPacket *pkt, int block) argument
329 } else if (!block) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A D4xm.c140 DECLARE_ALIGNED_8(DCTELEM, block[6][64]);
155 static void idct(DCTELEM block[64]){ argument
163 tmp10 = block[8*0 + i] + block[8*4 + i];
164 tmp11 = block[8*0 + i] - block[8*4 + i];
166 tmp13 = block[8*2 + i] + block[8*6 + i];
167 tmp12 = MULTIPLY(block[8*2 + i] - block[
411 decode_i_block(FourXContext *f, DCTELEM *block) argument
[all...]
H A Dasv1.c50 DECLARE_ALIGNED_16(DCTELEM, block[6][64]);
183 static inline int asv1_decode_block(ASV1Context *a, DCTELEM block[64]){ argument
186 block[0]= 8*get_bits(&a->gb, 8);
198 if(ccp&8) block[a->scantable.permutated[4*i+0]]= (asv1_get_level(&a->gb) * a->intra_matrix[4*i+0])>>4;
199 if(ccp&4) block[a->scantable.permutated[4*i+1]]= (asv1_get_level(&a->gb) * a->intra_matrix[4*i+1])>>4;
200 if(ccp&2) block[a->scantable.permutated[4*i+2]]= (asv1_get_level(&a->gb) * a->intra_matrix[4*i+2])>>4;
201 if(ccp&1) block[a->scantable.permutated[4*i+3]]= (asv1_get_level(&a->gb) * a->intra_matrix[4*i+3])>>4;
208 static inline int asv2_decode_block(ASV1Context *a, DCTELEM block[64]){ argument
213 block[0]= 8*asv2_get_bits(&a->gb, 8);
217 if(ccp&4) block[
236 asv1_encode_block(ASV1Context *a, DCTELEM block[64]) argument
269 asv2_encode_block(ASV1Context *a, DCTELEM block[64]) argument
308 decode_mb(ASV1Context *a, DCTELEM block[6][64]) argument
327 encode_mb(ASV1Context *a, DCTELEM block[6][64]) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/alpha/
H A Ddsputil_alpha.c25 void ff_simple_idct_axp(DCTELEM *block);
26 void ff_simple_idct_put_axp(uint8_t *dest, int line_size, DCTELEM *block);
27 void ff_simple_idct_add_axp(uint8_t *dest, int line_size, DCTELEM *block);
29 void put_pixels_axp_asm(uint8_t *block, const uint8_t *pixels,
31 void put_pixels_clamped_mvi_asm(const DCTELEM *block, uint8_t *pixels,
33 void add_pixels_clamped_mvi_asm(const DCTELEM *block, uint8_t *pixels,
35 void (*put_pixels_clamped_axp_p)(const DCTELEM *block, uint8_t *pixels,
37 void (*add_pixels_clamped_axp_p)(const DCTELEM *block, uint8_t *pixels,
40 void get_pixels_mvi(DCTELEM *restrict block,
42 void diff_pixels_mvi(DCTELEM *block, cons
283 put_pixels16_axp_asm(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
[all...]
H A Ddsputil_alpha_asm.S46 * void put_pixels_axp_asm(uint8_t *block, const uint8_t *pixels,
143 * void put_pixels_clamped_mvi_asm(const DCTELEM *block, uint8_t *pixels,
198 * void add_pixels_clamped_mvi_asm(const DCTELEM *block, uint8_t *pixels,
270 lda a0, 32(a0) # block += 16;
H A Dmotion_est_alpha.c25 void get_pixels_mvi(DCTELEM *restrict block, argument
34 stq(unpkbw(p), block); local
35 stq(unpkbw(p >> 32), block + 4);
38 block += 8;
42 void diff_pixels_mvi(DCTELEM *block, const uint8_t *s1, const uint8_t *s2, argument
61 stq(unpkbw(d) | (unpkbw(signs) << 8), block);
62 stq(unpkbw(d >> 32) | (unpkbw(signs >> 32) << 8), block + 4);
66 block += 8;
H A Dmpegvideo_alpha.c26 static void dct_unquantize_h263_axp(DCTELEM *block, int n_coeffs, argument
35 for(i = 0; i <= n_coeffs; block += 4, i += 4) {
38 levels = ldq(block);
68 stq(levels, block);
72 static void dct_unquantize_h263_intra_axp(MpegEncContext *s, DCTELEM *block, argument
77 DCTELEM block0 = block[0];
94 dct_unquantize_h263_axp(block, n_coeffs, qscale, qadd);
96 block[0] = block0;
99 static void dct_unquantize_h263_inter_axp(MpegEncContext *s, DCTELEM *block, argument
103 dct_unquantize_h263_axp(block, n_coeff
[all...]
H A Dsimple_idct_alpha.c32 extern void (*put_pixels_clamped_axp_p)(const DCTELEM *block, uint8_t *pixels,
34 extern void (*add_pixels_clamped_axp_p)(const DCTELEM *block, uint8_t *pixels,
258 void ff_simple_idct_axp(DCTELEM *block) argument
266 int sparseness = idct_row(block + 8 * i);
275 idct_col2(block);
277 idct_col(block);
279 uint64_t v = (uint16_t) block[0];
280 uint64_t w = (uint16_t) block[8];
286 stq(v, block + 0 * 4);
287 stq(v, block
298 ff_simple_idct_put_axp(uint8_t *dest, int line_size, DCTELEM *block) argument
304 ff_simple_idct_add_axp(uint8_t *dest, int line_size, DCTELEM *block) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/arm/
H A Ddsputil_arm.c47 static void (*ff_put_pixels_clamped)(const DCTELEM *block, uint8_t *pixels, int line_size);
48 static void (*ff_add_pixels_clamped)(const DCTELEM *block, uint8_t *pixels, int line_size);
50 void put_pixels8_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
51 void put_pixels8_x2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
52 void put_pixels8_y2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
53 void put_pixels8_xy2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
55 void put_no_rnd_pixels8_x2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
56 void put_no_rnd_pixels8_y2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
57 void put_no_rnd_pixels8_xy2_arm(uint8_t *block, const uint8_t *pixels, int line_size, int h);
59 void put_pixels16_arm(uint8_t *block, cons
75 j_rev_dct_ARM_put(uint8_t *dest, int line_size, DCTELEM *block) argument
80 j_rev_dct_ARM_add(uint8_t *dest, int line_size, DCTELEM *block) argument
85 simple_idct_ARM_put(uint8_t *dest, int line_size, DCTELEM *block) argument
90 simple_idct_ARM_add(uint8_t *dest, int line_size, DCTELEM *block) argument
97 simple_idct_ipp(DCTELEM *block) argument
101 simple_idct_ipp_put(uint8_t *dest, int line_size, DCTELEM *block) argument
108 simple_idct_ipp_add(uint8_t *dest, int line_size, DCTELEM *block) argument
[all...]
H A Ddsputil_arm_s.S107 @ void func(uint8_t *block, const uint8_t *pixels, int line_size, int h)
108 @ block = word aligned, pixles = unaligned
159 @ void func(uint8_t *block, const uint8_t *pixels, int line_size, int h)
160 @ block = word aligned, pixles = unaligned
211 @ void func(uint8_t *block, const uint8_t *pixels, int line_size, int h)
212 @ block = word aligned, pixles = unaligned
270 @ void func(uint8_t *block, const uint8_t *pixels, int line_size, int h)
271 @ block = word aligned, pixles = unaligned
331 @ void func(uint8_t *block, const uint8_t *pixels, int line_size, int h)
332 @ block
[all...]
H A Ddsputil_iwmmxt.c61 "wstrd wr6, [%[block]] \n\t" \
62 "add %[block], %[block], %[line_size] \n\t" \
70 "wstrd wr6, [%[block]] \n\t" \
71 "add %[block], %[block], %[line_size] \n\t" \
75 : [block]"+r"(block), [pixels]"+r"(pixels), [h]"+r"(h) \
78 void put_pixels8_y2_iwmmxt(uint8_t *block, const uint8_t *pixels, const int line_size, int h) argument
82 void put_no_rnd_pixels8_y2_iwmmxt(uint8_t *block, cons argument
88 add_pixels_clamped_iwmmxt(const DCTELEM *block, uint8_t *pixels, int line_size) argument
145 nop(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
[all...]
H A Ddsputil_iwmmxt_rnd_template.c22 void DEF(put, pixels8)(uint8_t *block, const uint8_t *pixels, const int line_size, int h)
30 "add r5, %[block], %[line_size] \n\t"
46 "wstrd wr8, [%[block]] \n\t"
47 "add %[block], %[block], %[line_size] \n\t"
51 : [block]"+r"(block), [pixels]"+r"(pixels), [line_size]"+r"(stride), [h]"+r"(h)
56 void DEF(avg, pixels8)(uint8_t *block, const uint8_t *pixels, const int line_size, int h)
64 "add r5, %[block], %[line_size] \n\t"
77 "wldrd wr0, [%[block]] \
[all...]
H A Ddsputil_neon.c137 void ff_h264_idct_add_neon(uint8_t *dst, DCTELEM *block, int stride);
138 void ff_h264_idct_dc_add_neon(uint8_t *dst, DCTELEM *block, int stride);
140 DCTELEM *block, int stride,
143 DCTELEM *block, int stride,
146 DCTELEM *block, int stride,
H A Dmpegvideo_armv5te.c26 void ff_dct_unquantize_h263_armv5te(DCTELEM *block, int qmul, int qadd, int count);
34 static inline void dct_unquantize_h263_helper_c(DCTELEM *block, int qmul, int qadd, int count) argument
38 level = block[i];
45 block[i] = level;
52 DCTELEM *block, int n, int qscale)
63 level = block[0] * s->y_dc_scale;
65 level = block[0] * s->c_dc_scale;
69 level = block[0];
76 ff_dct_unquantize_h263_armv5te(block, qmul, qadd, nCoeffs + 1);
77 block[
51 dct_unquantize_h263_intra_armv5te(MpegEncContext *s, DCTELEM *block, int n, int qscale) argument
80 dct_unquantize_h263_inter_armv5te(MpegEncContext *s, DCTELEM *block, int n, int qscale) argument
[all...]
H A Dmpegvideo_iwmmxt.c26 DCTELEM *block, int n, int qscale)
30 DCTELEM *block_orig = block;
38 level = block[0] * s->y_dc_scale;
40 level = block[0] * s->c_dc_scale;
44 level = block[0];
64 "wldrd wr2, [%[block]] \n\t" /* "movq (%0, %3), %%mm0 \n\t" */
65 "wldrd wr3, [%[block], #8] \n\t" /* "movq 8(%0, %3), %%mm1 \n\t" */
70 "wcmpgtsh wr2, wr4, wr2 \n\t" /* "pcmpgtw %%mm4, %%mm2 \n\t" // block[i] < 0 ? -1 : 0 */
71 "wcmpgtsh wr3, wr4, wr2 \n\t" /* "pcmpgtw %%mm4, %%mm3 \n\t" // block[i] < 0 ? -1 : 0 */
78 "wcmpeqh wr0, wr7, wr0 \n\t" /* "pcmpeqw %%mm7, %%mm0 \n\t" // block[
25 dct_unquantize_h263_intra_iwmmxt(MpegEncContext *s, DCTELEM *block, int n, int qscale) argument
[all...]
H A Dsimple_idct_arm.S60 @@ void simple_idct_ARM(int16_t *block)
62 @@ R0-R3 are scratch regs, so no need to save them, but R0 contains the pointer to block
67 @@ at this point, R0=block, other registers are free.
68 add r14, r0, #112 @ R14=&block[8*7], better start from the last row, and decrease the value until row=0, i.e. R12=block.
72 str r0, [sp, #0] @ save block in sp[0]
75 @@ sp+0 R0 (block)
78 @@ at this point, R0=block, R14=&block[56], R12=__const_ptr_, R1-R11 free
90 @@ at this point, R0=block, R1
[all...]

Completed in 259 milliseconds

1234567891011>>