HomeSort by relevance Sort by last modified time
    Searched defs:chan (Results 126 - 150 of 169) sorted by null

1 2 3 4 56 7

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
emux_synth.h 185 struct snd_midi_channel *chan; /* Midi channel for this note */ member in struct:snd_emux_voice
opl3.h 260 struct snd_midi_channel *chan; /* Midi channel for this note */ member in struct:snd_opl3_voice
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_llvm.c 463 unsigned chan, attrib; local
469 for (chan = 0; chan < TGSI_NUM_CHANNELS; ++chan) {
470 if (outputs[attrib][chan]) {
475 out = LLVMBuildLoad(builder, outputs[attrib][chan], "");
477 LLVMBuildStore(builder, out, outputs[attrib][chan]);
481 if (chan == 1 || chan == 2)
482 LLVMBuildStore(builder, bld.zero, outputs[attrib][chan]);
673 unsigned chan, attrib, i; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_sample_soa.c 182 int chan; local
183 for (chan = 0; chan < 4; chan++) {
186 lp_build_const_int32(bld->gallivm, chan));
189 texel_out[chan] = lp_build_select(&bld->texel_bld, use_border,
190 border_chan_vec, texel_out[chan]);
695 int chan; local
768 for (chan = 0; chan < 4; chan++)
882 unsigned chan; local
1102 unsigned chan; local
1173 const unsigned chan = 0; local
1217 unsigned chan; local
    [all...]
lp_bld_tgsi_action.c 94 emit_data->output[emit_data->chan] = LLVMBuildFAdd(
107 emit_data->output[emit_data->chan] = LLVMBuildFPToSI(bld_base->base.gallivm->builder, tmp,
122 emit_data->output[emit_data->chan] = lp_build_emit_llvm_binary(bld_base,
134 unsigned chan, src; local
136 for (chan = 0; chan < dp_components; chan++) {
137 emit_data->args[(src * dp_components) + chan] =
138 lp_build_emit_fetch(bld_base, emit_data->inst, src, chan);
166 emit_data->output[emit_data->chan] = lp_build_emit_llvm_binary(bld_base
    [all...]
lp_bld_tgsi_soa.c 384 * \param chan which channel of the temp register.
389 unsigned chan)
392 assert(chan < 4);
394 LLVMValueRef lindex = lp_build_const_int32(bld->bld_base.base.gallivm, index * 4 + chan);
398 return bld->temps[index][chan];
406 * \param chan which channel of the output register.
411 unsigned chan)
414 assert(chan < 4);
417 index * 4 + chan);
421 return bld->outputs[index][chan];
866 unsigned chan; local
1517 int chan; local
2002 unsigned index, chan; local
2040 unsigned index, chan; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_fs.c 247 unsigned chan; local
297 for(chan = 0; chan < TGSI_NUM_CHANNELS; ++chan) {
298 color[cbuf][chan] = lp_build_alloca(gallivm, vec_type, "color");
417 for(chan = 0; chan < TGSI_NUM_CHANNELS; ++chan) {
418 if(outputs[attrib][chan]) {
422 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], "");
475 unsigned chan; local
712 unsigned chan; local
800 unsigned chan; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_asm.c 607 unsigned i, chan, trans; local
614 chan = alu->dst.chan;
621 else if (assignment[chan])
633 if (assignment[chan]) {
634 assert(0); /* ALU.chan has already been allocated. */
637 assignment[chan] = alu;
681 static int reserve_gpr(struct alu_bank_swizzle *bs, unsigned sel, unsigned chan, unsigned cycle)
683 if (bs->hw_gpr[cycle][chan] == -1)
684 bs->hw_gpr[cycle][chan] = sel
897 int gpr[5], chan[5]; local
    [all...]
r600_asm.h 33 unsigned chan; member in struct:r600_bytecode_alu_src
43 unsigned chan; member in struct:r600_bytecode_alu_dst
r600_shader.c 280 alu->src[src_idx].chan = bytes[bytes_read++];
305 alu.dst.chan = bytes[bytes_read++];
329 alu.src[1].chan = 0;
635 alu.dst.chan = i % 4;
638 alu.src[0].chan = (base_chan - (i % 2));
665 alu.dst.chan = i;
668 alu.src[0].chan = i;
776 alu.dst.chan = i;
777 alu.src[1].chan = i;
778 alu.src[2].chan = i
2259 int chan; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.c 463 unsigned chan, attrib; local
469 for (chan = 0; chan < TGSI_NUM_CHANNELS; ++chan) {
470 if (outputs[attrib][chan]) {
475 out = LLVMBuildLoad(builder, outputs[attrib][chan], "");
477 LLVMBuildStore(builder, out, outputs[attrib][chan]);
481 if (chan == 1 || chan == 2)
482 LLVMBuildStore(builder, bld.zero, outputs[attrib][chan]);
673 unsigned chan, attrib, i; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_sample_soa.c 182 int chan; local
183 for (chan = 0; chan < 4; chan++) {
186 lp_build_const_int32(bld->gallivm, chan));
189 texel_out[chan] = lp_build_select(&bld->texel_bld, use_border,
190 border_chan_vec, texel_out[chan]);
695 int chan; local
768 for (chan = 0; chan < 4; chan++)
882 unsigned chan; local
1102 unsigned chan; local
1173 const unsigned chan = 0; local
1217 unsigned chan; local
    [all...]
lp_bld_tgsi_action.c 94 emit_data->output[emit_data->chan] = LLVMBuildFAdd(
107 emit_data->output[emit_data->chan] = LLVMBuildFPToSI(bld_base->base.gallivm->builder, tmp,
122 emit_data->output[emit_data->chan] = lp_build_emit_llvm_binary(bld_base,
134 unsigned chan, src; local
136 for (chan = 0; chan < dp_components; chan++) {
137 emit_data->args[(src * dp_components) + chan] =
138 lp_build_emit_fetch(bld_base, emit_data->inst, src, chan);
166 emit_data->output[emit_data->chan] = lp_build_emit_llvm_binary(bld_base
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.c 247 unsigned chan; local
297 for(chan = 0; chan < TGSI_NUM_CHANNELS; ++chan) {
298 color[cbuf][chan] = lp_build_alloca(gallivm, vec_type, "color");
417 for(chan = 0; chan < TGSI_NUM_CHANNELS; ++chan) {
418 if(outputs[attrib][chan]) {
422 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], "");
475 unsigned chan; local
712 unsigned chan; local
800 unsigned chan; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_asm.c 607 unsigned i, chan, trans; local
614 chan = alu->dst.chan;
621 else if (assignment[chan])
633 if (assignment[chan]) {
634 assert(0); /* ALU.chan has already been allocated. */
637 assignment[chan] = alu;
681 static int reserve_gpr(struct alu_bank_swizzle *bs, unsigned sel, unsigned chan, unsigned cycle)
683 if (bs->hw_gpr[cycle][chan] == -1)
684 bs->hw_gpr[cycle][chan] = sel
897 int gpr[5], chan[5]; local
    [all...]
r600_asm.h 33 unsigned chan; member in struct:r600_bytecode_alu_src
43 unsigned chan; member in struct:r600_bytecode_alu_dst
  /external/speex/libspeex/
mdf.c 694 int i,j, chan, speak; local
722 for (chan = 0; chan < C; chan++)
725 filter_dc_notch16(in+chan, st->notch_radius, st->input+chan*st->frame_size, st->frame_size, st->notch_mem+2*chan, C);
732 tmp32 = SUB32(EXTEND32(st->input[chan*st->frame_size+i]), EXTEND32(MULT16_16_P15(st->preemph, st->memD[chan])));
747 st->memD[chan] = st->input[chan*st->frame_size+i]
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p.h 240 u8 chan; member in struct:p2p_channel
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wps_supplicant.c 2158 u16 chan = wpa_s->wps_ap_channel; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldSocketChannelTest.java 99 MockSocketChannel chan = new MockSocketChannel( local
101 assertTrue(chan.isConstructorCalled);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
HealthService.java 199 HealthChannel chan = (HealthChannel) msg.obj; local
200 byte[] devAddr = Utils.getByteAddress(chan.mDevice);
201 int appId = (mApps.get(chan.mConfig)).mAppId;
202 chan.mChannelId = connectChannelNative(devAddr, appId);
203 if (chan.mChannelId == -1) {
204 callHealthChannelCallback(chan.mConfig, chan.mDevice,
207 chan.mChannelFd, chan.mChannelId);
208 callHealthChannelCallback(chan.mConfig, chan.mDevice
217 HealthChannel chan = (HealthChannel) msg.obj; local
249 HealthChannel chan = findChannelById(channelStateEvent.mChannelId); local
440 HealthChannel chan = findChannelById(channelId); local
579 HealthChannel chan = new HealthChannel(device, config, channelType); local
648 List<HealthChannel> chan; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
opl3.h 260 struct snd_midi_channel *chan; /* Midi channel for this note */ member in struct:snd_opl3_voice
  /bionic/libc/kernel/arch-mips/asm/ip32/
mace.h 152 } chan[3]; member in struct:mace_audio
  /development/ndk/platforms/android-9/arch-mips/include/asm/ip32/
mace.h 152 } chan[3]; member in struct:mace_audio
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
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...]

Completed in 795 milliseconds

1 2 3 4 56 7