HomeSort by relevance Sort by last modified time
    Searched refs:hw (Results 26 - 50 of 680) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/suite/audio_quality/lib/src/task/
TaskOutput.cpp 48 android::sp<AudioHardware> hw = AudioHardware::createAudioHw(localDevice, true, getTestCase()); local
49 if (hw.get() == NULL) {
50 LOGE("cannot create Audio HW");
53 if (!hw->prepare(AudioHardware::ESampleRate_44100, mVolume, mMode)) {
64 if (!hw->startPlaybackOrRecord(buffer)) {
73 AudioRemotePlayback* remote = reinterpret_cast<AudioRemotePlayback*>(hw.get());
79 mHw = hw;
TaskInput.cpp 52 android::sp<AudioHardware> hw = AudioHardware::createAudioHw(localDevice, false, local
54 if (hw.get() == NULL) {
69 if (!hw->prepare(AudioHardware::ESampleRate_44100, mVolume, mMode)) {
73 if (!hw->startPlaybackOrRecord(buffer)) {
78 mHw = hw;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_context.c 52 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
64 fahrenheit = hw->eng3dm;
66 fahrenheit = hw->eng3d;
80 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
82 struct nv04_fifo *fifo = hw->chan->data;
85 PUSH_DATA (push, hw->surf3d->handle);
87 PUSH_DATA (push, hw->ntfy->handle);
92 PUSH_DATA (push, hw->eng3d->handle)
146 struct nouveau_hw_state *hw; local
    [all...]
nv04_surface.c 204 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
205 struct nouveau_object *swzsurf = hw->swzsurf;
206 struct nv04_fifo *fifo = hw->chan->data;
207 /* Max width & height may not be the same on all HW, but must be POT */
269 PUSH_DATA (push, hw->surf3d->handle);
285 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
286 struct nv04_fifo *fifo = hw->chan->data;
433 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw local
466 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
482 struct nouveau_hw_state *hw = &to_nouveau_context(ctx)->hw; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state.c 73 int pp_misc = rmesa->hw.ctx.cmd[CTX_PP_MISC];
110 rmesa->hw.ctx.cmd[CTX_PP_MISC] = pp_misc;
122 rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCOLOR] = radeonPackColor( 4, color[0], color[1], color[2], color[3] );
208 GLuint cntl = rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &
221 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] = cntl | R200_ROP_ENABLE;
222 rmesa->hw.ctx.cmd[CTX_RB3D_ABLENDCNTL] = eqn | func;
223 rmesa->hw.ctx.cmd[CTX_RB3D_CBLENDCNTL] = eqn | func;
226 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] = cntl | R200_ALPHA_BLEND_ENABLE | R200_SEPARATE_ALPHA_ENABLE;
229 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] = cntl;
230 rmesa->hw.ctx.cmd[CTX_RB3D_ABLENDCNTL] = eqn | func
    [all...]
r200_ioctl.h 85 rmesa->hw.ATOM.dirty = GL_TRUE; \
86 rmesa->radeon.hw.is_dirty = GL_TRUE; \
93 if (__dword != (rmesa)->hw.ATOM.cmd[__index]) { \
95 (rmesa)->hw.ATOM.cmd[__index] = __dword; \
100 memcpy( rmesa->hw.ATOM.lastcmd, rmesa->hw.ATOM.cmd, \
101 rmesa->hw.ATOM.cmd_size * 4)
111 rmesa->radeon.hw.is_dirty = GL_TRUE;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_state_init.c 517 rmesa->radeon.hw.max_state_size = 0;
521 rmesa->hw.ATOM.cmd_size = SZ; \
522 rmesa->hw.ATOM.cmd = (GLuint *) calloc(SZ, sizeof(int)); \
523 rmesa->hw.ATOM.lastcmd = (GLuint *) calloc(SZ, sizeof(int)); \
524 rmesa->hw.ATOM.name = NM; \
525 rmesa->hw.ATOM.is_tcl = FLAG; \
526 rmesa->hw.ATOM.check = check_##CHK; \
527 rmesa->hw.ATOM.dirty = GL_TRUE; \
528 rmesa->hw.ATOM.idx = IDX; \
529 rmesa->radeon.hw.max_state_size += SZ * sizeof(int);
    [all...]
radeon_state.c 73 int pp_misc = rmesa->hw.ctx.cmd[CTX_PP_MISC];
110 rmesa->hw.ctx.cmd[CTX_PP_MISC] = pp_misc;
117 GLuint b = rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCNTL] & ~RADEON_COMB_FCN_MASK;
143 rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCNTL] = b;
146 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= RADEON_ROP_ENABLE;
148 rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~RADEON_ROP_ENABLE;
158 GLuint b = rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCNTL] &
256 rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCNTL] = b;
270 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] &= ~RADEON_Z_TEST_MASK;
274 rmesa->hw.ctx.cmd[CTX_RB3D_ZSTENCILCNTL] |= RADEON_Z_TEST_NEVER
    [all...]
radeon_ioctl.h 104 rmesa->hw.ATOM.dirty = GL_TRUE; \
105 rmesa->radeon.hw.is_dirty = GL_TRUE; \
109 memcpy( rmesa->hw.ATOM.lastcmd, rmesa->hw.ATOM.cmd, \
110 rmesa->hw.ATOM.cmd_size * 4)
119 rmesa->radeon.hw.is_dirty = GL_TRUE;
  /prebuilts/go/darwin-x86/src/runtime/
softfloat64_test.go 87 // 64 -hw-> 32 -hw-> 64
92 // 64 -sw->32 -hw-> 64
97 // 64 -hw->32 -sw-> 64
102 // float64 -hw-> int64 -hw-> float64
107 // float64 -hw-> int32 -hw-> float64
112 // float64 -sw-> int64 -hw-> float64
123 // float64 -hw-> int64 -sw-> float6
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
softfloat64_test.go 87 // 64 -hw-> 32 -hw-> 64
92 // 64 -sw->32 -hw-> 64
97 // 64 -hw->32 -sw-> 64
102 // float64 -hw-> int64 -hw-> float64
107 // float64 -hw-> int32 -hw-> float64
112 // float64 -sw-> int64 -hw-> float64
123 // float64 -hw-> int64 -sw-> float6
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
prism2_pci.c 26 hfa384x_t *hw = &hw_global; local
29 hw->membase = ioremap ( pci->membase, 0x100 );
34 return prism2_probe ( nic, hw );
prism2_plx.c 30 * hw device structure to be filled in
36 static int prism2_find_plx ( hfa384x_t *hw, struct pci_device *p )
52 /* Fill out hw structure */
53 hw->iobase = iobase;
83 hfa384x_t *hw = &hw_global; local
86 if ( ! prism2_find_plx ( hw, pci ) ) return 0;
87 nic->ioaddr = hw->iobase;
89 return prism2_probe ( nic, hw );
  /cts/suite/audio_quality/lib/src/audio/
AudioHardware.cpp 79 android::sp<AudioHardware> hw; local
88 hw = new AudioPlaybackLocal(mHwId);
90 hw = new AudioRecordingLocal(mHwId);
95 hw = new AudioRemotePlayback(testCase->getRemoteAudio());
97 hw = new AudioRemoteRecording(testCase->getRemoteAudio());
101 return hw;
  /external/libese/tools/ese_replay/
main.c 32 #include "hw.h"
37 .hw =
42 .lib = "libese-hw-nxp-pn80t-nq-nci.so",
48 .lib = "libese-hw-fake.so",
54 .lib = "libese-hw-echo.so",
77 const struct Hardware *hw = &kSupportedHardware.hw[hw_id]; local
82 if (!initialize_hardware(&ese, hw)) {
87 if (ese_open(&ese, hw->options)) {
88 ALOGE("Cannot open hw");
    [all...]
  /system/chre/
run_sim.sh 9 JOB_COUNT=`sysctl -n hw.ncpu`
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TelephonyDevController.java 87 HardwareConfig hw = new HardwareConfig(hwString); local
88 if (hw != null) {
89 if (hw.type == HardwareConfig.DEV_HARDWARE_TYPE_MODEM) {
90 updateOrInsert(hw, mModems);
91 } else if (hw.type == HardwareConfig.DEV_HARDWARE_TYPE_SIM) {
92 updateOrInsert(hw, mSims);
147 private static void updateOrInsert(HardwareConfig hw, ArrayList<HardwareConfig> list) {
154 if (item.uuid.compareTo(hw.uuid) == 0) {
160 if (DBG) logd("updateOrInsert: inserting: " + hw);
161 list.add(hw);
172 HardwareConfig hw = null; local
    [all...]
  /hardware/qcom/power/
Android.mk 7 # hw/<POWERS_HARDWARE_MODULE_ID>.<ro.hardware>.so
11 LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
  /test/vts/hals/light/bullhead/
Android.mk 34 LOCAL_MODULE_RELATIVE_PATH := hw
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
ld.d 12 c: 2235 00c1 ld[hw]+.x r1,\[r2,r3\]
13 10: 2375 0102 ld[hw]+.aw.x r2,\[r3,r4\]
  /prebuilts/go/darwin-x86/src/net/
mac.go 38 func ParseMAC(s string) (hw HardwareAddr, err error) {
51 hw = make(HardwareAddr, n)
54 if hw[i], ok = xtoi2(s[x:], s[2]); !ok {
67 hw = make(HardwareAddr, n)
70 if hw[i], ok = xtoi2(s[x:x+2], 0); !ok {
73 if hw[i+1], ok = xtoi2(s[x+2:], s[4]); !ok {
81 return hw, nil
  /prebuilts/go/linux-x86/src/net/
mac.go 38 func ParseMAC(s string) (hw HardwareAddr, err error) {
51 hw = make(HardwareAddr, n)
54 if hw[i], ok = xtoi2(s[x:], s[2]); !ok {
67 hw = make(HardwareAddr, n)
70 if hw[i], ok = xtoi2(s[x:x+2], 0); !ok {
73 if hw[i+1], ok = xtoi2(s[x+2:], s[4]); !ok {
81 return hw, nil
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nvfx_fragprog.c 92 uint32_t *hw = &fp->insn[fpc->inst_offset]; local
98 hw[0] |= (src.reg.index << NVFX_FP_OP_INPUT_SRC_SHIFT);
110 hw = &fp->insn[fpc->inst_offset];
123 hw = &fp->insn[fpc->inst_offset];
151 hw[1] |= (1 << (29 + pos));
158 hw[pos + 1] |= sr;
165 uint32_t *hw = &fp->insn[fpc->inst_offset]; local
172 hw[0] |= NVFX_FP_OP_OUT_REG_HALF;
181 hw[0] |= (1 << 30);
187 hw[0] |= (dst.index << NVFX_FP_OP_OUT_REG_SHIFT)
194 uint32_t *hw; local
244 uint32_t *hw; local
271 uint32_t *hw; local
290 uint32_t *hw; local
307 uint32_t *hw; local
361 uint32_t *hw; local
797 uint32_t *hw; local
808 uint32_t *hw; local
888 unsigned hw; local
929 unsigned hw; local
964 unsigned hw; local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_framebuffer.c 57 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer; local
70 if ((curr->cbufs[i] != hw->cbufs[i]) || (reemit && hw->cbufs[i])) {
79 pipe_surface_reference(&hw->cbufs[i], curr->cbufs[i]);
83 if ((curr->zsbuf != hw->zsbuf) || (reemit && hw->zsbuf)) {
101 pipe_surface_reference(&hw->zsbuf, curr->zsbuf);
120 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer; local
127 if (hw->cbufs[i]) {
129 hw->cbufs[i])
169 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer; local
296 struct svga_hw_draw_state *hw = &svga->state.hw_draw; local
    [all...]
  /device/generic/goldfish/audio/
Android.mk 22 LOCAL_MODULE_RELATIVE_PATH := hw
45 LOCAL_MODULE_RELATIVE_PATH := hw

Completed in 1030 milliseconds

12 3 4 5 6 7 8 91011>>