OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_red
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/bintrees/bintrees/
rbtree.py
71
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
(sibling[1 - last])) and (not is_red(sibling[last]))
[
all
...]
ctrees.c
250
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
(s->link[!last]) &
[
all
...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_receiver_video.h
31
bool
is_red
,
rtp_receiver_audio.h
58
bool
is_red
,
109
bool
is_red
);
rtp_receiver_audio.cc
185
bool
is_red
,
206
is_red
);
293
bool
is_red
) {
381
if (
is_red
&& !(payload_data[0] & 0x80)) {
rtp_receiver_strategy.h
44
bool
is_red
,
rtp_receiver_impl.cc
176
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;
rtp_receiver_impl.h
77
bool&
is_red
,
rtp_receiver_video.cc
52
bool
is_red
,
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_isac.h
100
bool
is_red
);
acm_isac.cc
100
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);
Completed in 5963 milliseconds