Searched defs:is_red (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/bintrees/bintrees/
H A Drbtree.py71 def is_red(node): function
173 elif is_red(node.left) and is_red(node.right): # Color flip
179 if is_red(node) and is_red(parent):
231 if not is_red(node) and not is_red(node[direction]):
232 if is_red(node[1 - direction]):
235 elif not is_red(node[1 - direction]):
238 if (not is_red(siblin
[all...]
H A Dctrees.c250 is_red (node_t *node) function
320 else if (is_red(q->link[0]) && is_red(q->link[1])) {
327 if (is_red(q) && is_red(p)) {
411 if (!is_red(q) && !is_red(q->link[dir])) {
412 if (is_red(q->link[!dir]))
414 else if (!is_red(q->link[!dir])) {
418 if (!is_red(
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_receiver_video.cc52 bool is_red,
50 ParseRtpPacket(WebRtcRTPHeader* rtp_header, const PayloadUnion& specific_payload, bool is_red, const uint8_t* payload, uint16_t payload_length, int64_t timestamp_ms, bool is_first_packet) argument
H A Drtp_receiver_audio.cc185 bool is_red,
206 is_red);
293 bool is_red) {
381 if (is_red && !(payload_data[0] & 0x80)) {
183 ParseRtpPacket(WebRtcRTPHeader* rtp_header, const PayloadUnion& specific_payload, bool is_red, const uint8_t* payload, uint16_t payload_length, int64_t timestamp_ms, bool is_first_packet) argument
288 ParseAudioCodecSpecific( WebRtcRTPHeader* rtp_header, const uint8_t* payload_data, uint16_t payload_length, const AudioPayload& audio_specific, bool is_red) argument
H A Drtp_receiver_impl.cc176 bool is_red = false; local
181 is_red,
216 &webrtc_rtp_header, payload_specific, is_red, payload, payload_length,
339 bool& is_red,
358 is_red = true;
381 is_red = false;
414 is_red = false;
336 CheckPayloadChanged( const RTPHeader& rtp_header, const int8_t first_payload_byte, bool& is_red, PayloadUnion* specific_payload, bool* should_reset_statistics) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_isac.cc100 bool /* is_red */) {
215 bool is_red) {
216 if (is_red) {
430 bool is_red) {
440 reinterpret_cast<int16_t*>(bitstream), (is_red) ? 1 : 0);
210 ACMISACFixGetNewBitstream(ACM_ISAC_STRUCT* inst, int16_t bwe_index, int16_t , int32_t rate, int16_t* bitstream, bool is_red) argument
426 Transcode(uint8_t* bitstream, int16_t* bitstream_len_byte, int16_t q_bwe, int32_t rate, bool is_red) argument

Completed in 182 milliseconds