/hardware/qcom/display/msm8084/liboverlay/pipes/ |
overlay3DPipe.h | 45 * CHAN = 0,1 it's either Channel 1 or channel 2 needed for 47 template <int CHAN> 75 * CHAN = 0,1 it's either Channel 1 or channel 2 needed for 77 template <int CHAN> 105 * CHAN = 0,1 it's either Channel 1 or channel 2 needed for 107 template <int CHAN> 135 * CHAN = 0,1 it's either Channel 1 or channel 2 needed for 137 template <int CHAN> 167 template <int CHAN> 168 inline M3DExtPipe<CHAN>::M3DExtPipe() : mM3Dfmt(0) { [all...] |
/hardware/qcom/display/msm8960/liboverlay/pipes/ |
overlay3DPipe.h | 45 * CHAN = 0,1 it's either Channel 1 or channel 2 needed for 47 template <int CHAN> 75 * CHAN = 0,1 it's either Channel 1 or channel 2 needed for 77 template <int CHAN> 105 * CHAN = 0,1 it's either Channel 1 or channel 2 needed for 107 template <int CHAN> 135 * CHAN = 0,1 it's either Channel 1 or channel 2 needed for 137 template <int CHAN> 167 template <int CHAN> 168 inline M3DExtPipe<CHAN>::M3DExtPipe() : mM3Dfmt(0) { [all...] |
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
s_tmp3dec_file.h | 91 tmp3dec_chan perChan[CHAN]; 92 mp3ScaleFactors scaleFactors[CHAN];
|
pvmp3_dec_defs.h | 64 #define CHAN 2
|
pvmp3_framedecoder.cpp | 167 tmp3dec_chan *pChVars[CHAN]; 767 tmp3dec_chan *pChVars[CHAN];
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_exec.h | 48 #define TGSI_FOR_EACH_CHANNEL( CHAN )\ 49 for (CHAN = 0; CHAN < TGSI_NUM_CHANNELS; CHAN++) 51 #define TGSI_IS_DST0_CHANNEL_ENABLED( INST, CHAN )\ 52 ((INST)->Dst[0].Register.WriteMask & (1 << (CHAN))) 54 #define TGSI_IF_IS_DST0_CHANNEL_ENABLED( INST, CHAN )\ 55 if (TGSI_IS_DST0_CHANNEL_ENABLED( INST, CHAN )) 57 #define TGSI_FOR_EACH_DST0_ENABLED_CHANNEL( INST, CHAN )\ 58 TGSI_FOR_EACH_CHANNEL( CHAN )\ [all...] |
tgsi_info.c | 35 #define CHAN TGSI_OUTPUT_CHAN_DEPENDENT 42 { 1, 1, 0, 0, 0, 0, CHAN, "LIT", TGSI_OPCODE_LIT }, 45 { 1, 1, 0, 0, 0, 0, CHAN, "EXP", TGSI_OPCODE_EXP }, 46 { 1, 1, 0, 0, 0, 0, CHAN, "LOG", TGSI_OPCODE_LOG }, 51 { 1, 2, 0, 0, 0, 0, CHAN, "DST", TGSI_OPCODE_DST }, 107 { 1, 1, 0, 0, 0, 0, CHAN, "SCS", TGSI_OPCODE_SCS },
|
tgsi_exec.c | 509 * Assert that none of the float values in 'chan' are infinite or NaN. 515 check_inf_or_nan(const union tgsi_exec_channel *chan) 517 assert(!util_is_inf_or_nan((chan)->f[0])); 518 assert(!util_is_inf_or_nan((chan)->f[1])); 519 assert(!util_is_inf_or_nan((chan)->f[2])); 520 assert(!util_is_inf_or_nan((chan)->f[3])); 526 print_chan(const char *msg, const union tgsi_exec_channel *chan) 529 msg, chan->f[0], chan->f[1], chan->f[2], chan->f[3]) 583 uint i, chan; local 1757 uint chan; local 1920 uint chan; local 2002 uint chan; local 2073 uint chan; local 2105 uint chan; local 2213 uint chan; local 2421 unsigned int chan; local 2443 unsigned int chan; local 2463 unsigned int chan; local 2492 unsigned int chan; local 2513 unsigned int chan; local 2544 unsigned int chan; local 2568 unsigned int chan; local 2592 unsigned int chan; local 2616 unsigned int chan; local 2641 unsigned int chan; local 2670 unsigned int chan; local 2692 unsigned int chan; local 2722 unsigned int chan; local [all...] |
/hardware/qcom/display/msm8084/liboverlay/ |
overlayUtils.h | 151 template <int CHAN> 154 template <int CHAN> 581 template <int CHAN> 626 template <int CHAN> 628 out = getPositionS3DImpl<CHAN>(whf); 632 template <int CHAN> 672 template <int CHAN> 675 out = getCropS3DImpl<CHAN>(in, fmt);
|
/hardware/qcom/display/msm8960/liboverlay/ |
overlayUtils.h | 147 template <int CHAN> 150 template <int CHAN> 583 template <int CHAN> 628 template <int CHAN> 630 out = getPositionS3DImpl<CHAN>(whf); 634 template <int CHAN> 674 template <int CHAN> 677 out = getCropS3DImpl<CHAN>(in, fmt);
|
/prebuilts/go/darwin-x86/src/go/token/ |
token.go | 96 CHAN 197 CHAN: "chan",
|
/prebuilts/go/linux-x86/src/go/token/ |
token.go | 96 CHAN 197 CHAN: "chan",
|
/prebuilts/go/darwin-x86/src/go/printer/ |
nodes.go | 878 p.print(token.CHAN) 880 p.print(token.ARROW, token.CHAN) // x.Arrow and x.Pos() are the same 882 p.print(token.CHAN, x.Arrow, token.ARROW) 1102 p.expr0(s.Chan, depth) [all...] |
/prebuilts/go/linux-x86/src/go/printer/ |
nodes.go | 878 p.print(token.CHAN) 880 p.print(token.ARROW, token.CHAN) // x.Arrow and x.Pos() are the same 882 p.print(token.CHAN, x.Arrow, token.ARROW) 1102 p.expr0(s.Chan, depth) [all...] |
/prebuilts/go/darwin-x86/src/go/printer/testdata/ |
parser.go | 825 if p.tok == token.CHAN { 833 p.expect(token.CHAN) 859 case token.CHAN, token.ARROW: 1310 if p.tok == token.CHAN { [all...] |
/prebuilts/go/linux-x86/src/go/printer/testdata/ |
parser.go | 825 if p.tok == token.CHAN { 833 p.expect(token.CHAN) 859 case token.CHAN, token.ARROW: 1310 if p.tok == token.CHAN { [all...] |
/prebuilts/go/darwin-x86/src/go/parser/ |
parser.go | 999 if p.tok == token.CHAN { 1008 p.expect(token.CHAN) 1034 case token.CHAN, token.ARROW: [all...] |
/prebuilts/go/linux-x86/src/go/parser/ |
parser.go | 999 if p.tok == token.CHAN { 1008 p.expect(token.CHAN) 1034 case token.CHAN, token.ARROW: [all...] |
/prebuilts/go/darwin-x86/src/go/scanner/ |
scanner_test.go | 154 {token.CHAN, "chan", keyword}, 416 "chan\n",
|
/prebuilts/go/linux-x86/src/go/scanner/ |
scanner_test.go | 154 {token.CHAN, "chan", keyword}, 416 "chan\n",
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
fmt.go | 396 TCHAN: "CHAN", 564 switch t.Chan { 566 return fmt.Sprintf("<-chan %v", t.Type) 569 return fmt.Sprintf("chan<- %v", t.Type) 572 if t.Type != nil && t.Type.Etype == TCHAN && t.Type.Sym == nil && t.Type.Chan == Crecv { 573 return fmt.Sprintf("chan (%v)", t.Type) 575 return fmt.Sprintf("chan %v", t.Type) 1124 if Isptr[n.Type.Etype] || (n.Type.Etype == TCHAN && n.Type.Chan == Crecv) { 1179 return fmt.Sprintf("<-chan %v", n.Left) 1182 return fmt.Sprintf("chan<- %v", n.Left [all...] |
lex.go | [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
fmt.go | 393 TCHAN: "CHAN", 561 switch t.Chan { 563 return fmt.Sprintf("<-chan %v", t.Type) 566 return fmt.Sprintf("chan<- %v", t.Type) 569 if t.Type != nil && t.Type.Etype == TCHAN && t.Type.Sym == nil && t.Type.Chan == Crecv { 570 return fmt.Sprintf("chan (%v)", t.Type) 572 return fmt.Sprintf("chan %v", t.Type) 1121 if Isptr[n.Type.Etype] || (n.Type.Etype == TCHAN && n.Type.Chan == Crecv) { 1176 return fmt.Sprintf("<-chan %v", n.Left) 1179 return fmt.Sprintf("chan<- %v", n.Left [all...] |
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
fmt.go | 396 TCHAN: "CHAN", 564 switch t.Chan { 566 return fmt.Sprintf("<-chan %v", t.Type) 569 return fmt.Sprintf("chan<- %v", t.Type) 572 if t.Type != nil && t.Type.Etype == TCHAN && t.Type.Sym == nil && t.Type.Chan == Crecv { 573 return fmt.Sprintf("chan (%v)", t.Type) 575 return fmt.Sprintf("chan %v", t.Type) 1124 if Isptr[n.Type.Etype] || (n.Type.Etype == TCHAN && n.Type.Chan == Crecv) { 1179 return fmt.Sprintf("<-chan %v", n.Left) 1182 return fmt.Sprintf("chan<- %v", n.Left [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
fmt.go | 393 TCHAN: "CHAN", 561 switch t.Chan { 563 return fmt.Sprintf("<-chan %v", t.Type) 566 return fmt.Sprintf("chan<- %v", t.Type) 569 if t.Type != nil && t.Type.Etype == TCHAN && t.Type.Sym == nil && t.Type.Chan == Crecv { 570 return fmt.Sprintf("chan (%v)", t.Type) 572 return fmt.Sprintf("chan %v", t.Type) 1121 if Isptr[n.Type.Etype] || (n.Type.Etype == TCHAN && n.Type.Chan == Crecv) { 1176 return fmt.Sprintf("<-chan %v", n.Left) 1179 return fmt.Sprintf("chan<- %v", n.Left [all...] |