HomeSort by relevance Sort by last modified time
    Searched defs:streamval (Results 1 - 5 of 5) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
arith_routines_hist.c 53 streamdata->streamval += W_lower;
56 if (streamdata->streamval < W_lower)
63 /* renormalize interval, store most significant byte of streamval and update streamval */
67 *stream_ptr++ = (uint8_t) (streamdata->streamval >> 24);
68 streamdata->streamval <<= 8;
94 uint32_t streamval; local
110 streamval = *stream_ptr << 24;
111 streamval |= *++stream_ptr << 16;
112 streamval |= *++stream_ptr << 8
202 uint32_t streamval; local
    [all...]
arith_routines_logist.c 138 streamdata->streamval += W_lower;
141 if (streamdata->streamval < W_lower)
148 /* renormalize interval, store most significant byte of streamval and update streamval */
152 *stream_ptr++ = (uint8_t) (streamdata->streamval >> 24);
158 streamdata->streamval <<= 8;
182 uint32_t streamval; local
193 streamval = *stream_ptr << 24;
194 streamval |= *++stream_ptr << 16;
195 streamval |= *++stream_ptr << 8
    [all...]
structs.h 30 uint32_t streamval; member in struct:Bitstreamstruct
428 uint32_t streamval; member in struct:__anon49784
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routines_hist.c 78 streamData->streamval += W_lower;
81 if (streamData->streamval < W_lower)
100 /* renormalize interval, store most significant byte of streamval and update streamval
106 *streamPtr++ += (uint16_t)(streamData->streamval >> 24);
109 *streamPtr = (uint16_t)((streamData->streamval >> 24) << 8);
116 streamData->streamval <<= 8;
158 uint32_t streamval; local
177 streamval = (uint32_t)*streamPtr++ << 16;
178 streamval |= *streamPtr++
293 uint32_t streamval; local
    [all...]
structs.h 32 uint32_t streamval; member in struct:Bitstreamstruct_dec
45 uint32_t streamval; member in struct:Bitstreamstruct_enc
371 uint32_t streamval; member in struct:__anon49761

Completed in 286 milliseconds