HomeSort by relevance Sort by last modified time
    Searched defs:mux (Results 1 - 11 of 11) sorted by null

  /prebuilts/go/darwin-x86/test/chan/
doubleselect.go 38 // mux receives the values from sender and forwards them onto another channel.
41 func mux(out chan<- int, in <-chan int, done chan<- bool) { func
48 // recver gets a steam of values from the four mux's and checks for duplicates.
72 go mux(cmux, c1, done)
73 go mux(cmux, c2, done)
74 go mux(cmux, c3, done)
75 go mux(cmux, c4, done)
  /prebuilts/go/linux-x86/test/chan/
doubleselect.go 38 // mux receives the values from sender and forwards them onto another channel.
41 func mux(out chan<- int, in <-chan int, done chan<- bool) { func
48 // recver gets a steam of values from the four mux's and checks for duplicates.
72 go mux(cmux, c1, done)
73 go mux(cmux, c2, done)
74 go mux(cmux, c3, done)
75 go mux(cmux, c4, done)
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qpu.h 37 enum qpu_mux mux; member in struct:qpu_reg
vc4_qpu_validate.c 47 uint32_t mux, addr; member in struct:__anon30163
55 /* Branches only reference raddr_a (no mux), and we don't use that
67 src_regs[i].mux == QPU_MUX_A &&
73 src_regs[i].mux == QPU_MUX_B &&
  /external/syslinux/gpxe/src/core/
resolv.c 179 * @v mux Name resolution multiplexer
182 static int resolv_mux_try ( struct resolv_mux *mux ) {
183 struct resolver *resolver = mux->resolver;
186 DBGC ( mux, "RESOLV %p trying method %s\n", mux, resolver->name );
188 if ( ( rc = resolver->resolv ( &mux->child, mux->name,
189 &mux->sa ) ) != 0 ) {
190 DBGC ( mux, "RESOLV %p could not use method %s: %s\n",
191 mux, resolver->name, strerror ( rc ) )
207 struct resolv_mux *mux = local
251 struct resolv_mux *mux; local
    [all...]
  /external/webp/src/mux/
muxread.c 10 // Read APIs for mux.
16 #include "src/mux/muxi.h"
35 static WebPMuxError MuxGet(const WebPMux* const mux, CHUNK_INDEX idx,
37 assert(mux != NULL);
41 SWITCH_ID_LIST(IDX_VP8X, mux->vp8x_);
42 SWITCH_ID_LIST(IDX_ICCP, mux->iccp_);
43 SWITCH_ID_LIST(IDX_ANIM, mux->anim_);
44 SWITCH_ID_LIST(IDX_EXIF, mux->exif_);
45 SWITCH_ID_LIST(IDX_XMP, mux->xmp_);
166 // Create a mux object from WebP-RIFF data
173 WebPMux* mux = NULL; local
    [all...]
muxedit.c 10 // Set and delete APIs for mux.
16 #include "src/mux/muxi.h"
20 // Life of a mux object.
22 static void MuxInit(WebPMux* const mux) {
23 assert(mux != NULL);
24 memset(mux, 0, sizeof(*mux));
25 mux->canvas_width_ = 0; // just to be explicit
26 mux->canvas_height_ = 0;
33 WebPMux* const mux = (WebPMux*)WebPSafeMalloc(1ULL, sizeof(WebPMux)) local
139 WebPMux* const mux = WebPMuxCreate(bitstream, 0); local
    [all...]
anim_encode.c 19 #include "src/mux/animi.h"
24 #include "src/webp/mux.h"
76 // 'start' are ready to be added to mux.
96 size_t out_frame_count_; // Number of frames added to mux so far. This may be
1483 WebPMux* const mux = WebPMuxCreate(webp_data, 0); local
1519 WebPMux* mux; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
fastssim.c 223 unsigned mux; local
227 mux = 5 * col_sums_x[0];
231 mux += col_sums_x[i1];
235 ssim[j * w + i] *= (2 * mux * (double)muy + c1) /
236 (mux * (double)mux + muy * (double)muy + c1);
240 mux += col_sums_x[i1] - col_sums_x[i0];
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
IPACM_Lan.cpp 1588 struct ipa_ioc_write_qmapid mux; local
    [all...]
  /external/deqp/framework/common/
tcuTexLookupVerifier.cpp 2122 const float mux = deFloatAbs(dudx); local
    [all...]

Completed in 277 milliseconds