Searched refs:value (Results 1 - 25 of 16071) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zlib/src/as400/
H A Dzlib.inc117 D sourceLen 10u 0 value Source length
123 D sourceLen 10U 0 value Source length
124 D level 10I 0 value Compression level
127 D sourceLen 10U 0 value
133 D sourceLen 10U 0 value Source length
138 D path * value options(*string) File pathname
139 D mode * value options(*string) Open mode
143 D path * value options(*string) File pathname
144 D mode * value options(*string) Open mode
148 D path * value option
[all...]
/external/zlib/src/contrib/delphi/
H A DZLib.pas40 adler: Longint; // adler32 value of the uncompressed data
/external/zlib/src/contrib/iostream2/
H A Dzstream.h44 size_t value() const { return val.word; } function in class:zstringlen
77 * and deallocates all the (de)compression state. The return value is
140 ::gzread(zs.fp(), x, len.value());
141 x[len.value()] = '\0';
147 char* x = new char[len.value()+1];
148 ::gzread(zs.fp(), x, len.value());
149 x[len.value()] = '\0';
195 * and deallocates all the (de)compression state. The return value is
213 * _flush is as in the deflate() function. The return value is the zlib
288 ::gzwrite(zs.fp(), (voidp) x, len.value());
[all...]
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm45 ; value of zlib1222add later)
117 ; Note : these value are good with a 8 bytes boundary pack structure
249 ;;; value, which it will always accompany.
400 ;;; Store the current value of chainlen.
/external/zlib/src/contrib/masmx86/
H A Dmatch686.asm82 ; Note : these value are good with a 8 bytes boundary pack structure
235 ;;; value, which it will always accompany.
339 ;;; Store the current value of chainlen.
/external/zlib/src/contrib/pascal/
H A Dexample.pas35 var dictId: LongInt; (* Adler32 value of the dictionary *)
H A Dzlibpas.pas45 adler: LongInt; (* adler32 value of the uncompressed data *)
124 function deflatePrime(var strm: z_stream; bits, value: Integer): Integer;
133 function inflatePrime(var strm: z_stream; bits, value: Integer): Integer;
/external/zlib/src/
H A Ddeflate.c162 * Update a hash value with the given input byte
464 int ZEXPORT deflatePrime (strm, bits, value)
467 int value;
480 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
483 value >>= put;
554 * value for 15 and 8 only works for those exact settings.
557 * the value returned is a conservative worst case for the maximum expansion
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
669 int old_flush; /* value of flush param for previous deflate call */
1446 * its value wil
[all...]
H A Dinflate.c230 int ZEXPORT inflatePrime(strm, bits, value)
233 int value;
245 value &= (1L << bits) - 1;
246 state->hold += value << state->bits;
586 update the check value, and determine whether any progress has been made
1225 Return from inflate(), updating the total counts and the check value.
1348 return value is how many bytes were read including the last byte of the
1350 yet and the return value is len. In the latter case, syncsearch() can be
H A Dmake_vms.com377 $! 0.02 20040229 Save/set value of decc$no_rooted_search_lists
602 $! 0.02 20031022 Added logic for defines with value
H A Dtrees.c152 local unsigned bi_reverse OF((unsigned value, int length));
182 * Send a value on a given number of bits.
183 * IN assertion: length <= 16 and value fits in length bits.
186 local void send_bits OF((deflate_state *s, int value, int length));
188 local void send_bits(s, value, length)
190 int value; /* value to send */
193 Tracevv((stderr," l %2d v %4x ", length, value));
198 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
199 * unused bits in value
[all...]
H A Dzlib.h102 uLong adler; /* adler32 value of the uncompressed data */
138 The opaque value provided by the application will be passed as the first
141 opaque value.
314 with the same value of the flush parameter and more output space (updated
330 value returned by deflateBound (see below). Then deflate is guaranteed to
373 exact value depends on the compression method), inflateInit determines the
448 256 is added to the value of strm->data_type when inflate() returns
470 on the return value of inflate() as noted below, when inflate() returns early
497 value), Z_STREAM_ERROR if the stream structure was inconsistent (for example
544 compression at the expense of memory usage. The default value i
[all...]
/external/zlib/
H A Dzlib.h102 uLong adler; /* adler32 value of the uncompressed data */
138 The opaque value provided by the application will be passed as the first
141 opaque value.
314 with the same value of the flush parameter and more output space (updated
330 value returned by deflateBound (see below). Then deflate is guaranteed to
373 exact value depends on the compression method), inflateInit determines the
448 256 is added to the value of strm->data_type when inflate() returns
470 on the return value of inflate() as noted below, when inflate() returns early
497 value), Z_STREAM_ERROR if the stream structure was inconsistent (for example
544 compression at the expense of memory usage. The default value i
[all...]
/external/zopfli/src/zopfli/
H A Dblocksplitter.c59 #define NUM 9 /* Good value: 9. */
132 static void AddSorted(size_t value, size_t** out, size_t* outsize) { argument
134 ZOPFLI_APPEND_DATA(value, out, outsize);
136 if ((*out)[i] > value) {
141 (*out)[i] = value;
H A Dutil.h73 limit the max hash chain hits for this hash value. This has an effect only
74 on files where the hash value is the same very often. On these files, this
75 gives worse compression (the value should ideally be 32768, which is the
78 Good value: e.g. 8192.
128 /* Gets value of the extra bits for the given length, cfr. the DEFLATE spec. */
137 /* Gets value of the extra bits for the given dist, cfr. the DEFLATE spec. */
141 Appends value to dynamically allocated memory, doubling its allocation size
144 value: the value to append, type T
152 #define ZOPFLI_APPEND_DATA(/* T */ value, /*
[all...]
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp88 Often in case of an error a value is assigned to a variable and then it breaks
161 /*resize and give all new elements the value*/
162 static unsigned uivector_resizev(uivector* p, size_t size, unsigned value) argument
166 for(i = oldsize; i < size; i++) p->data[i] = value;
241 /*resize and give all new elements the value*/
242 static unsigned ucvector_resizev(ucvector* p, size_t size, unsigned char value) argument
246 for(i = oldsize; i < size; i++) p->data[i] = value;
326 static void lodepng_set32bitInt(unsigned char* buffer, unsigned value) argument
328 buffer[0] = (unsigned char)((value >> 24) & 0xff);
329 buffer[1] = (unsigned char)((value >> 1
336 lodepng_add32bitInt(ucvector* buffer, unsigned value) argument
407 addBitsToStream(size_t* bitpointer, ucvector* bitstream, unsigned value, size_t nbits) argument
413 addBitsToStreamReversed(size_t* bitpointer, ucvector* bitstream, unsigned value, size_t nbits) argument
1001 unsigned value; /*set value to the previous code*/ local
1295 searchCodeIndex(const unsigned* array, size_t array_size, size_t value) argument
3124 unsigned value = readBitsFromReversedStream(&j, in, mode->bitdepth); local
3244 unsigned value = readBitsFromReversedStream(&j, in, mode->bitdepth); local
3543 getValueRequiredBits(unsigned short value) argument
[all...]
H A Dlodepng_util.cpp343 else treepos = tree2d[2 * treepos + bit] - numcodes; //subtract numcodes from address to get address value
396 //decode a single symbol from given list of bits with given code tree. return value is the symbol
435 unsigned long value; //set value to the previous code local
436 if((i - 1) < HLIT) value = bitlen[i - 1];
437 else value = bitlenD[i - HLIT - 1];
438 for(size_t n = 0; n < replength; n++) //repeat this value in the next lengths
441 if(i < HLIT) bitlen[i++] = value; else bitlenD[i++ - HLIT] = value;
449 for(size_t n = 0; n < replength; n++) //repeat this value i
[all...]
/external/zopfli/src/zopflipng/
H A Dzopflipng_bin.cc77 " If --prefix is specified without value, 'zopfli_' is used.\n"
181 std::string value = eq >= arg.size() - 1 ? "" : arg.substr(eq + 1); local
182 int num = atoi(value.c_str());
197 for (size_t j = 0; j < value.size(); j++) {
199 char f = value[j];
221 if ((value.size() + 1) % 5 != 0) correct = false;
222 for (size_t i = 0; i + 4 <= value.size() && correct; i += 5) {
223 png_options.keepchunks.push_back(value.substr(i, 4));
224 if (i > 4 && value[i - 1] != ',') correct = false;
233 if (!value
[all...]
/external/webrtc/src/common_audio/signal_processing/include/
H A Dsignal_processing_library.h35 #define WEBRTC_SPL_MIN(A, B) (A < B ? A : B) // Get min value
36 #define WEBRTC_SPL_MAX(A, B) (A > B ? A : B) // Get max value
353 WebRtc_Word32 WebRtcSpl_Sqrt(WebRtc_Word32 value);
354 WebRtc_Word32 WebRtcSpl_SqrtFloor(WebRtc_Word32 value);
611 // Return value : Added and saturated value
625 // Returned value : Subtracted and saturated value
632 // specified by the |value| parameter.
635 // - value
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dspl_sqrt.c71 WebRtc_Word32 WebRtcSpl_Sqrt(WebRtc_Word32 value) argument
82 with in=73632 and ut=271 (even shift value case):
140 A = value;
165 { // Even shift value case
H A Dspl_sqrt_floor.c18 * contains the MSB information (a non-sign value). Do with caution
21 * If the input value is negative, it returns 0.
26 if (value >= try1 << (N)) \
28 value -= try1 << (N); \
32 int32_t WebRtcSpl_SqrtFloor(int32_t value) argument
/external/webrtc/src/common_audio/vad/
H A Dvad_unittest.cc165 // Input value at mean.
219 int16_t value = 500 * (i + 1); local
221 // Use values both above and below initialized value.
222 EXPECT_EQ(kReferenceMin[i], WebRtcVad_FindMinimum(handle, value, j));
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dlpc_masking_model_neon.S161 @ Calculate the value for q_val_residual_energy.
169 add r3, r12, r3 @ value for q_val_residual_energy.
H A Dpitch_filter_armv6.S48 str r4, [r6] @ Store return value to index2.
102 asr r7, #12 @ Get the value for inputState[0].

Completed in 3754 milliseconds

1234567891011>>