Searched refs:vector (Results 1 - 25 of 11757) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jar ... util.Hashtable hints private final java.util.Vector readers public void " href="/5.1.0_r1/s ...
/external/zlib/src/examples/
H A Denough.c113 size_t len; /* length of bit vector in char's */
114 char *vec; /* allocated bit vector */
157 vector is of a variable size, and grows as needed to accommodate the visited
255 bit vector to indicate visiting this state. Each (syms,len,left) state
256 has a variable size bit vector indexed by (mem,rem). The bit vector is
260 size_t index; /* index for this state's bit vector */
261 size_t offset; /* offset in this state's bit vector */
263 size_t length; /* length of the bit vector in bytes */
264 char *vector; /* ne local
[all...]
/external/zlib/src/
H A Dmake_vms.com719 $! Analyze the project map file and create the symbol vector for a shareable
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp127 /*dynamic vector of unsigned ints*/
198 /*dynamic vector of unsigned chars*/
253 /*you can both convert from vector to buffer&size and vica versa. If you use
366 /*read contents of the file into the vector*/
661 /*argument c is void* so that this dtor can be given as function pointer to the vector resize function*/
1316 /*values in encoded vector are those used by deflate:
4711 /*maximum final image length is already reserved in the vector's length - this is not really necessary*/
5848 /*instead of cleaning the vector up, give it to the output*/
6041 void load_file(std::vector<unsigned char>& buffer, const std::string& filename)
6050 /*read contents of the file into the vector*/
[all...]
H A Dlodepng.h32 #include <vector>
198 /*Same as lodepng_decode_memory, but decodes to an std::vector.*/
199 unsigned decode(std::vector<unsigned char>& out, unsigned& w, unsigned& h,
202 unsigned decode(std::vector<unsigned char>& out, unsigned& w, unsigned& h,
203 const std::vector<unsigned char>& in,
210 unsigned decode(std::vector<unsigned char>& out, unsigned& w, unsigned& h,
217 /*Same as lodepng_encode_memory, but encodes to an std::vector.*/
218 unsigned encode(std::vector<unsigned char>& out,
221 unsigned encode(std::vector<unsigned char>& out,
222 const std::vector<unsigne
[all...]
H A Dlodepng_util.cpp32 LodePNGInfo getPNGHeaderInfo(const std::vector<unsigned char>& png)
40 unsigned getChunkInfo(std::vector<std::string>& names, std::vector<size_t>& sizes,
41 const std::vector<unsigned char>& png)
62 unsigned getChunks(std::vector<std::string> names[3],
63 std::vector<std::vector<unsigned char> > chunks[3],
64 const std::vector<unsigned char>& png)
96 chunks[location].push_back(std::vector<unsigned char>(chunk, next));
105 unsigned insertChunks(std::vector<unsigne
[all...]
H A Dlodepng_util.h31 #include <vector>
45 LodePNGInfo getPNGHeaderInfo(const std::vector<unsigned char>& png);
51 unsigned getChunkInfo(std::vector<std::string>& names, std::vector<size_t>& sizes,
52 const std::vector<unsigned char>& png);
61 unsigned getChunks(std::vector<std::string> names[3],
62 std::vector<std::vector<unsigned char> > chunks[3],
63 const std::vector<unsigned char>& png);
73 unsigned insertChunks(std::vector<unsigne
[all...]
/external/zopfli/src/zopflipng/
H A Dzopflipng_bin.cc153 std::vector<std::string> files;
154 std::vector<char> options;
283 std::vector<unsigned char> image;
285 std::vector<unsigned char> origpng;
288 std::vector<unsigned char> resultpng;
H A Dzopflipng_lib.cc24 #include <vector>
156 std::vector<unsigned char> palette_out;
177 const std::vector<unsigned char>& image, unsigned w, unsigned h,
179 const std::vector<unsigned char>& origfile,
182 std::vector<unsigned char>* out) {
204 std::vector<unsigned char> filters;
245 std::vector<unsigned char> temp;
249 std::vector<unsigned char> out2;
277 unsigned AutoChooseFilterStrategy(const std::vector<unsigned char>& image,
280 const std::vector<unsigne
[all...]
H A Dzopflipng_lib.h26 #include <vector>
50 std::vector<ZopfliPNGFilterStrategy> filter_strategies;
57 std::vector<std::string> keepchunks;
74 int ZopfliPNGOptimize(const std::vector<unsigned char>& origpng,
77 std::vector<unsigned char>* resultpng);
/external/webrtc/
H A Dandroid-webrtc.mk32 -flax-vector-conversions
/external/webrtc/src/common_audio/signal_processing/
H A Dcopy_set_operations.c70 // Copy the last <samples> of the input vector to vector_out
76 WebRtc_Word16 WebRtcSpl_ZerosArrayW16(WebRtc_Word16 *vector, WebRtc_Word16 length) argument
78 WebRtcSpl_MemSetW16(vector, 0, length);
82 WebRtc_Word16 WebRtcSpl_ZerosArrayW32(WebRtc_Word32 *vector, WebRtc_Word16 length) argument
84 WebRtcSpl_MemSetW32(vector, 0, length);
88 WebRtc_Word16 WebRtcSpl_OnesArrayW16(WebRtc_Word16 *vector, WebRtc_Word16 length) argument
91 WebRtc_Word16 *tmpvec = vector;
99 WebRtc_Word16 WebRtcSpl_OnesArrayW32(WebRtc_Word32 *vector, WebRtc_Word16 length) argument
102 WebRtc_Word32 *tmpvec = vector;
H A Denergy.c20 WebRtc_Word32 WebRtcSpl_Energy(WebRtc_Word16* vector, int vector_length, int* scale_factor) argument
24 int scaling = WebRtcSpl_GetScalingSquare(vector, vector_length, vector_length);
26 WebRtc_Word16 *vectorptr = vector;
H A Dmin_max_operations.c33 // Maximum absolute value of word16 vector.
34 WebRtc_Word16 WebRtcSpl_MaxAbsValueW16(const WebRtc_Word16 *vector, WebRtc_Word16 length) argument
40 G_CONST WebRtc_Word16 *tmpvector = vector;
57 // Index of maximum absolute value in a word16 vector.
58 WebRtc_Word16 WebRtcSpl_MaxAbsIndexW16(G_CONST WebRtc_Word16* vector, WebRtc_Word16 length) argument
64 G_CONST WebRtc_Word16 *tmpvector = vector;
81 // Maximum absolute value of word32 vector.
82 WebRtc_Word32 WebRtcSpl_MaxAbsValueW32(G_CONST WebRtc_Word32 *vector, WebRtc_Word16 length) argument
88 G_CONST WebRtc_Word32 *tmpvector = vector;
103 // Maximum value of word16 vector
105 WebRtcSpl_MaxValueW16(G_CONST WebRtc_Word16* vector, WebRtc_Word16 length) argument
124 WebRtcSpl_MaxIndexW16(G_CONST WebRtc_Word16 *vector, WebRtc_Word16 length) argument
145 WebRtcSpl_MaxValueW32(G_CONST WebRtc_Word32* vector, WebRtc_Word16 length) argument
164 WebRtcSpl_MaxIndexW32(G_CONST WebRtc_Word32* vector, WebRtc_Word16 length) argument
184 WebRtcSpl_MinValueW16(G_CONST WebRtc_Word16 *vector, WebRtc_Word16 length) argument
202 WebRtcSpl_MinIndexW16(G_CONST WebRtc_Word16* vector, WebRtc_Word16 length) argument
226 WebRtcSpl_MinValueW32(G_CONST WebRtc_Word32 *vector, WebRtc_Word16 length) argument
244 WebRtcSpl_MinIndexW32(G_CONST WebRtc_Word32* vector, WebRtc_Word16 length) argument
[all...]
H A Dmin_max_operations_neon.c17 // Maximum absolute value of word16 vector.
18 WebRtc_Word16 WebRtcSpl_MaxAbsValueW16(const WebRtc_Word16* vector, argument
28 __asm__("vld1.16 {d26, d27}, [%0]" : : "r"(&vector[i]) : "q13");
38 abs_val = WEBRTC_SPL_ABS_W32((vector[i]));
H A Drandomization_functions.c109 WebRtc_Word16 WebRtcSpl_RandUArray(WebRtc_Word16* vector, argument
116 vector[i] = WebRtcSpl_RandU(seed);
/external/webrtc/src/common_audio/signal_processing/include/
H A Dsignal_processing_library.h190 void WebRtcSpl_MemSetW16(WebRtc_Word16* vector,
193 void WebRtcSpl_MemSetW32(WebRtc_Word32* vector,
203 WebRtc_Word16 WebRtcSpl_ZerosArrayW16(WebRtc_Word16* vector,
205 WebRtc_Word16 WebRtcSpl_ZerosArrayW32(WebRtc_Word32* vector,
207 WebRtc_Word16 WebRtcSpl_OnesArrayW16(WebRtc_Word16* vector,
209 WebRtc_Word16 WebRtcSpl_OnesArrayW32(WebRtc_Word32* vector,
215 WebRtc_Word16 WebRtcSpl_MaxAbsValueW16(const WebRtc_Word16* vector,
217 WebRtc_Word32 WebRtcSpl_MaxAbsValueW32(G_CONST WebRtc_Word32* vector,
219 WebRtc_Word16 WebRtcSpl_MinValueW16(G_CONST WebRtc_Word16* vector,
221 WebRtc_Word32 WebRtcSpl_MinValueW32(G_CONST WebRtc_Word32* vector,
[all...]
/external/webrtc/src/common_audio/vad/
H A Dvad_filterbank.c226 void WebRtcVad_LogOfEnergy(int16_t* vector, argument
234 int32_t energy = WebRtcSpl_Energy(vector, vector_length, &shfts);
H A Dvad_filterbank.h30 * - in_vector_length : Length of input and output vector
54 * - vector_length : Length of input and output vector
78 * - in_vector_length : Length of input vector
128 * - vector : Input speech samples for one frequency band
130 * - vector_length : Length of input vector
138 void WebRtcVad_LogOfEnergy(int16_t* vector,
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A DAndroid.mk109 -flax-vector-conversions
/external/webrtc/src/modules/audio_processing/aecm/
H A DAndroid.mk78 -flax-vector-conversions
/external/webrtc/src/modules/audio_processing/
H A Dgain_control_impl.h14 #include <vector>
73 std::vector<int> capture_levels_;
H A Dprocessing_component.h14 #include <vector>
47 std::vector<void*> handles_;
/external/webrtc/src/modules/audio_processing/ns/
H A DAndroid.mk80 -flax-vector-conversions
/external/webrtc/src/modules/audio_processing/test/testsupport/metrics/
H A Dvideo_metrics.cc59 std::vector<FrameResult>::iterator iter;

Completed in 1499 milliseconds

1234567891011>>