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

1 2

  /external/icu/icu4c/source/layout/
ThaiShaping.cpp 146 LEUnicode errorChar, LEUnicode *outputBuffer, LEGlyphStorage &glyphStorage, le_int32 &outputIndex)
152 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
153 outputBuffer[outputIndex++] = currChar;
157 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
158 outputBuffer[outputIndex++] = currChar;
162 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
163 outputBuffer[outputIndex++] = leftAboveVowel(currChar, glyphSet);
167 glyphStorage.setCharIndex(outputIndex, inputIndex, success);
168 outputBuffer[outputIndex++] = lowerRightTone(currChar, glyphSet);
172 glyphStorage.setCharIndex(outputIndex, inputIndex, success)
    [all...]
ThaiShaping.h 83 LEUnicode errorChar, LEUnicode *outputBuffer, LEGlyphStorage &glyphStorage, le_int32 &outputIndex);
86 le_uint8 &charClass, LEUnicode *output, LEGlyphStorage &glyphStorage, le_int32 &outputIndex);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBasicInspectorNode.h 43 virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&) OVERRIDE FINAL;
44 virtual void disconnect(unsigned outputIndex, ExceptionState&) OVERRIDE FINAL;
AudioBasicInspectorNode.cpp 54 void AudioBasicInspectorNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& exceptionState)
60 AudioNode::connect(destination, outputIndex, inputIndex, exceptionState);
64 void AudioBasicInspectorNode::disconnect(unsigned outputIndex, ExceptionState& exceptionState)
70 AudioNode::disconnect(outputIndex, exceptionState);
AudioNode.cpp 183 void AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& exceptionState)
196 if (outputIndex >= numberOfOutputs()) {
199 "output index (" + String::number(outputIndex) + ") exceeds number of outputs (" + String::number(numberOfOutputs()) + ").");
218 input->connect(*output(outputIndex));
224 void AudioNode::connect(AudioParam* param, unsigned outputIndex, ExceptionState& exceptionState)
236 if (outputIndex >= numberOfOutputs()) {
239 "output index (" + String::number(outputIndex) + ") exceeds number of outputs (" + String::number(numberOfOutputs()) + ").");
250 param->connect(*output(outputIndex));
253 void AudioNode::disconnect(unsigned outputIndex, ExceptionState& exceptionState)
259 if (outputIndex >= numberOfOutputs())
    [all...]
AudioNode.h 132 virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&);
133 void connect(AudioParam*, unsigned outputIndex, ExceptionState&);
134 virtual void disconnect(unsigned outputIndex, ExceptionState&);
  /libcore/luni/src/main/java/javax/crypto/
CipherInputStream.java 41 private int outputIndex; // index of the first byte to return from outputBuffer
90 outputIndex = 0;
130 if (outputIndex == outputLength && !fillBuffer()) {
133 return outputBuffer[outputIndex++] & 0xFF;
155 if (outputIndex == outputLength && !fillBuffer()) {
158 int available = outputLength - outputIndex;
163 System.arraycopy(outputBuffer, outputIndex, buf, off, len);
165 outputIndex += len;
176 return outputLength - outputIndex;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
suggestion_results.cpp 27 int outputIndex = 0;
31 const int start = outputIndex * MAX_WORD_LENGTH;
35 JniDataUtils::putIntToArray(env, outScoresArray, outputIndex, suggestedWord.getScore());
36 JniDataUtils::putIntToArray(env, outSpaceIndicesArray, outputIndex,
38 JniDataUtils::putIntToArray(env, outTypesArray, outputIndex, suggestedWord.getType());
43 ++outputIndex;
46 JniDataUtils::putIntToArray(env, outSuggestionCount, 0 /* index */, outputIndex);
  /frameworks/av/services/audioflinger/
AudioResamplerCubic.cpp 61 size_t outputIndex = 0;
76 while (outputIndex < outputSampleCount) {
82 out[outputIndex++] += vl * interp(&left, x);
83 out[outputIndex++] += vr * interp(&right, x);
84 // out[outputIndex++] += vr * in[inputIndex*2];
100 calculateOutputPTS(outputIndex / 2));
129 size_t outputIndex = 0;
144 while (outputIndex < outputSampleCount) {
151 out[outputIndex++] += vl * sample;
152 out[outputIndex++] += vr * sample
    [all...]
AudioResampler.cpp 63 size_t &outputIndex, int32_t* out, size_t &inputIndex, int32_t vl, int32_t vr,
66 size_t &outputIndex, int32_t* out, size_t &inputIndex, int32_t vl, int32_t vr,
361 size_t outputIndex = 0;
368 while (outputIndex < outputSampleCount) {
374 calculateOutputPTS(outputIndex / 2));
394 out[outputIndex++] += vl * Interp(mX0L, in[0], phaseFraction);
395 out[outputIndex++] += vr * Interp(mX0R, in[1], phaseFraction);
397 if (outputIndex == outputSampleCount) {
412 AsmStereo16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr,
417 while (outputIndex < outputSampleCount && inputIndex < mBuffer.frameCount)
    [all...]
AudioResamplerDyn.cpp 499 size_t outputIndex = 0;
518 while (outputIndex < outputSampleCount) {
519 //ALOGV("LOOP: inFrameCount:%d outputIndex:%d outFrameCount:%d"
521 // inFrameCount, outputIndex, outFrameCount, phaseFraction, phaseWrapLimit);
531 calculateOutputPTS(outputIndex / OUTPUT_CHANNELS));
563 while (CC_LIKELY(outputIndex < outputSampleCount)) {
570 //ALOGV("LOOP2: inFrameCount:%d outputIndex:%d outFrameCount:%d"
572 // inFrameCount, outputIndex, outFrameCount, phaseFraction, phaseWrapLimit);
575 &out[outputIndex],
580 outputIndex += OUTPUT_CHANNELS
    [all...]
  /hardware/intel/img/hwcomposer/common/base/
Drm.cpp 78 int outputIndex = getOutputIndex(device);
79 if (outputIndex < 0 ) {
83 resetOutput(outputIndex);
93 DrmOutput *output = &mOutputs[outputIndex];
208 if (outputIndex == OUTPUT_PRIMARY) {
220 if (output->connector == NULL && outputIndex != OUTPUT_PRIMARY) {
226 resetOutput(outputIndex);
259 int outputIndex = getOutputIndex(device);
260 if (outputIndex < 0 ) {
265 DrmOutput *output= &mOutputs[outputIndex];
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
BackDropperFilter.java     [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
DynamicHLSL.h 53 size_t outputIndex;
ProgramD3D.cpp 67 stream->readInt(&mPixelShaderKey[pixelShaderKeyIndex].outputIndex);
89 stream->writeInt(variable.outputIndex);
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
OMX_G729Decoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
OMX_WbAmrDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
OMX_AacDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
OMX_Mp3Decoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/
OMX_G722Decoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
OMX_G726Decoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/src/
OMX_G729Encoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
OMX_AmrDecoder.c     [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
ProgramBinary.cpp 117 defaultPixelOutput[0] = GL_COLOR_ATTACHMENT0 + shaderOutputVars[0].outputIndex;
    [all...]

Completed in 1329 milliseconds

1 2