HomeSort by relevance Sort by last modified time
    Searched refs:out_data (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/liblzf/
lzf.h 53 * in_data and write the result to out_data, up to a maximum length
78 void *out_data, unsigned int out_len);
83 * will be stored at out_data up to a maximum of out_len characters.
97 void *out_data, unsigned int out_len);
lzf_d.c 57 void *out_data, unsigned int out_len)
60 u8 *op = (u8 *)out_data;
135 if (ref < (u8 *)out_data)
183 return op - (u8 *)out_data;
  /external/liblzf/src/org/liblzf/
CLZF.java 153 public static int lzf_compress (byte[] in_data, int in_len,byte[] out_data, int out_len)
204 out_data[oidx++] = (byte)(lit - 1);
207 out_data[oidx++] = in_data[iidx+lit];
216 out_data[oidx++] = (byte)((off >> 8) + (len << 5));
220 out_data[oidx++] = (byte)((off >> 8) + ( 7 << 5));
221 out_data[oidx++] = (byte)(len - 7);
224 out_data[oidx++] = (byte)off;
251 out_data[oidx++] = (byte)(MAX_LIT - 1);
254 out_data[oidx++] = in_data[iidx+lit];
264 out_data[oidx++] = (byte)(lit - 1)
    [all...]
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
splitting_filter.c 44 // - out_data : Output data sequence (Q10), length equal to
49 int32_t* out_data, const uint16_t* filter_coefficients,
61 // the out_data state, out_data[-1]. This is repeated for each cascade.
63 // |out_data|. The second will the take the |out_data| as input and make an
66 // filter) and store the output in |out_data|.
70 // First all-pass cascade; filter from in_data to out_data.
80 out_data[0] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[0], diff, filter_state[0]);
86 diff = WebRtcSpl_SubSatW32(in_data[k], out_data[k - 1])
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
splitting_filter.c 42 // - out_data : Output data sequence (Q10), length equal to
47 WebRtc_Word32* out_data, const WebRtc_UWord16* filter_coefficients,
59 // the out_data state, out_data[-1]. This is repeated for each cascade.
61 // |out_data|. The second will the take the |out_data| as input and make an
64 // filter) and store the output in |out_data|.
68 // First all-pass cascade; filter from in_data to out_data.
77 out_data[0] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[0], diff, filter_state[0]);
82 diff = WEBRTC_SPL_SUB_SAT_W32(in_data[k], out_data[k - 1]); // = (x[n] - y_1[n-1]
    [all...]
  /external/webrtc/src/modules/audio_processing/
splitting_filter.cc 27 WebRtc_Word16* out_data,
31 WebRtcSpl_SynthesisQMF(low_band, high_band, out_data, filt_state1, filt_state2);
splitting_filter.h 54 * - out_data : super-wb speech signal
58 WebRtc_Word16* out_data,
  /prebuilts/tools/common/m2/repository/com/android/tools/external/liblzf/1.0/
liblzf-1.0.jar 
  /external/liblzf/cs/
CLZF.cs 153 public int lzf_compress (byte[] in_data, int in_len,byte[] out_data, int out_len)
204 out_data[oidx++] = (byte)(lit - 1);
207 out_data[oidx++] = in_data[iidx+lit];
216 out_data[oidx++] = (byte)((off >> 8) + (len << 5));
220 out_data[oidx++] = (byte)((off >> 8) + ( 7 << 5));
221 out_data[oidx++] = (byte)(len - 7);
224 out_data[oidx++] = (byte)off;
251 out_data[oidx++] = (byte)(MAX_LIT - 1);
254 out_data[oidx++] = in_data[iidx+lit];
264 out_data[oidx++] = (byte)(lit - 1)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
pitch_filter.c 130 * out_data : pointer to a buffer where the filtered signal is written to.
136 double* out_data,
203 out_data[parameters->index] = in_data[parameters->index] - sum;
205 out_data[parameters->index];
255 * out_data : pointer to a buffer where the filtered signal is written to.
262 double* out_data,
333 FilterSegment(in_data, &filter_parameters, out_data, out_dg);
354 FilterSegment(in_data, &filter_parameters, out_data, out_dg);
358 void WebRtcIsac_PitchfilterPre(double* in_data, double* out_data,
361 FilterFrame(in_data, pf_state, lags, gains, kPitchFilterPre, out_data, NULL)
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
pitch_filter.c 130 * out_data : pointer to a buffer where the filtered signal is written to.
136 double* out_data,
203 out_data[parameters->index] = in_data[parameters->index] - sum;
205 out_data[parameters->index];
255 * out_data : pointer to a buffer where the filtered signal is written to.
262 double* out_data,
333 FilterSegment(in_data, &filter_parameters, out_data, out_dg);
354 FilterSegment(in_data, &filter_parameters, out_data, out_dg);
358 void WebRtcIsac_PitchfilterPre(double* in_data, double* out_data,
361 FilterFrame(in_data, pf_state, lags, gains, kPitchFilterPre, out_data, NULL)
    [all...]
  /external/chromium_org/cc/output/
delegating_renderer.cc 85 DelegatedFrameData& out_data = *delegated_frame_data_; local
86 out_data.device_scale_factor = device_scale_factor;
88 out_data.render_pass_list.swap(*render_passes_in_draw_order);
94 for (size_t i = 0; i < out_data.render_pass_list.size(); ++i) {
95 RenderPass* render_pass = out_data.render_pass_list.at(i);
102 resource_provider_->PrepareSendToParent(resources, &out_data.resource_list);
  /external/chromium_org/ui/base/x/
selection_requestor.cc 80 scoped_refptr<base::RefCountedMemory>* out_data,
105 if (out_data)
106 *out_data = CombineRefCountedMemory(request.out_data);
158 scoped_refptr<base::RefCountedMemory> out_data; local
161 &out_data,
165 request->out_data.clear();
166 request->out_data.push_back(out_data);
174 request->out_data.clear()
    [all...]
selection_requestor.h 40 // stored in |out_data|.
41 // |out_data_items| is the length of |out_data| in |out_type| items.
45 scoped_refptr<base::RefCountedMemory>* out_data,
89 std::vector<scoped_refptr<base::RefCountedMemory> > out_data; member in struct:ui::SelectionRequestor::Request
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/
isac_speed_test.cc 31 int16_t* out_data);
84 int16_t* out_data) {
90 encoded_bytes, out_data, &audio_type);
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.c 268 * @out_data: Buffer for output data (must be at least as long as in_data)
269 * @out_len: Set to maximum out_data length by caller; used to return the
280 u8 *out_data, size_t *out_len, u8 *alert)
358 out_data, in_len) < 0) {
364 "data", out_data, plen);
386 os_memmove(out_data, out_data + rl->iv_size,
398 padlen = out_data[plen - 1];
408 if (out_data[i] != padlen) {
412 out_data + plen - padlen
    [all...]
tlsv1_server.h 27 u8 *out_data, size_t out_len);
30 u8 *out_data, size_t out_len);
  /art/runtime/base/
histogram-inl.h 182 inline void Histogram<Value>::CreateHistogram(CumulativeData* out_data) const {
184 out_data->freq_.clear();
185 out_data->perc_.clear();
187 out_data->freq_.push_back(accumulated);
188 out_data->perc_.push_back(0.0);
191 out_data->freq_.push_back(accumulated);
192 out_data->perc_.push_back(static_cast<double>(accumulated) / static_cast<double>(sample_size_));
194 DCHECK_EQ(out_data->freq_.back(), sample_size_);
195 DCHECK_LE(std::abs(out_data->perc_.back() - 1.0), 0.001);
  /external/chromium_org/ui/accessibility/
ax_tree_source.h 56 virtual void SerializeNode(AXNodeSource node, AXNodeData* out_data) const = 0;
ax_serializable_tree.cc 60 const AXNode* node, AXNodeData* out_data) const OVERRIDE {
61 *out_data = node->data();
  /external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
powermetrics_power_monitor.py 120 out_data = powermetrics_output
122 out_data = out_data[k]
124 assert type(out_data) in [int, float], (
125 "Was expecting a number: %s (%s)" % (type(out_data), out_data))
126 return float(out_data)
  /external/chromium_org/components/autofill/core/browser/
autofill_ie_toolbar_import_win.cc 88 std::string out_data; local
89 if (OSCrypt::DecryptString(data, &out_data)) {
91 if (!(out_data.size() & 1) && (out_data.size() > 2) &&
92 !out_data[out_data.size() - 1] && !out_data[out_data.size() - 2]) {
94 reinterpret_cast<const wchar_t *>(out_data.c_str()));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/
opus_speed_test.cc 29 int16_t* out_data);
71 int encoded_bytes, int16_t* out_data) {
76 out_data, &audio_type);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/tools/
audio_codec_speed_test.h 44 // 2. save the decoded audio in |out_data|,
47 int16_t* out_data) = 0;
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.h 104 struct wpabuf **out_data);
124 struct wpabuf **out_data);

Completed in 485 milliseconds

1 2 3 4