Searched defs:io (Results 326 - 350 of 390) sorted by relevance

<<111213141516

/external/chromium_org/third_party/libwebp/dec/
H A Dframe.c246 static int FinishRow(VP8Decoder* const dec, VP8Io* const io) { argument
274 if (io->put != NULL) {
279 io->y = ydst;
280 io->u = udst;
281 io->v = vdst;
283 io->y = dec->cache_y_ + y_offset;
284 io->u = dec->cache_u_ + uv_offset;
285 io->v = dec->cache_v_ + uv_offset;
291 if (y_end > io->crop_bottom) {
292 y_end = io
344 VP8ProcessRow(VP8Decoder* const dec, VP8Io* const io) argument
392 VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io) argument
447 VP8ExitCritical(VP8Decoder* const dec, VP8Io* const io) argument
636 InitIo(VP8Decoder* const dec, VP8Io* io) argument
647 VP8InitFrame(VP8Decoder* const dec, VP8Io* io) argument
[all...]
H A Didec.c277 VP8Io* const io = &idec->io_; local
278 if (io->teardown != NULL) {
279 io->teardown(io);
388 VP8Io* const io = &idec->io_; local
397 if (!VP8GetHeaders(dec, io)) {
408 dec->status_ = WebPAllocateDecBuffer(io->width, io->height, params->options,
415 io->width, io
439 VP8Io* const io = &idec->io_; local
495 VP8Io* const io = &idec->io_; local
[all...]
H A Dvp8l.c385 static int AllocateAndInitRescaler(VP8LDecoder* const dec, VP8Io* const io) { argument
387 const int in_width = io->mb_w;
388 const int out_width = io->scaled_width;
389 const int in_height = io->mb_h;
390 const int out_height = io->scaled_height;
587 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and
592 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, argument
595 assert(io
679 VP8Io* const io = dec->io_; local
1250 VP8Io* io; local
1320 VP8LDecodeHeader(VP8LDecoder* const dec, VP8Io* const io) argument
1351 VP8Io* io = NULL; local
[all...]
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Drfc2217.py886 # library, derive from io.RawIOBase
888 import io namespace
894 # io library present
895 class Serial(RFC2217Serial, io.RawIOBase):
/external/libnl/lib/route/
H A Dlink.c186 struct rtnl_link_info_ops *io = link->l_info_ops; local
188 if (io != NULL) {
189 io->io_refcnt--;
190 io->io_free(link);
200 struct rtnl_link_info_ops *io; local
202 if ((io = link->l_info_ops) != NULL)
1390 struct rtnl_link_info_ops *io; local
1393 if ((io = rtnl_link_info_ops_lookup(type)) == NULL)
1399 if ((err = io->io_alloc(link)) < 0)
1402 link->l_info_ops = io;
[all...]
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h37 /// static void mapping(IO &io, MyStruct &s) {
38 /// io.mapRequired("name", s.name);
39 /// io.mapRequired("size", s.size);
40 /// io.mapOptional("age", s.age);
46 // static void mapping(IO &io, T &fields);
48 // static StringRef validate(IO &io, T &fields);
57 /// static void enumeration(IO &io, Colors &value) {
58 /// io.enumCase(value, "red", cRed);
59 /// io.enumCase(value, "blue", cBlue);
60 /// io
592 yamlize(IO &io, T &Val, bool) argument
600 yamlize(IO &io, T &Val, bool) argument
613 yamlize(IO &io, T &Val, bool) argument
634 yamlize(IO &io, T &Val, bool) argument
654 yamlize(IO &io, T &Val, bool) argument
662 yamlize(IO &io, T &Val, bool) argument
668 yamlize(IO &io, T &Seq, bool) argument
816 IO &io; member in struct:llvm::yaml::MappingNormalization
852 IO &io; member in struct:llvm::yaml::MappingNormalizationHeap
[all...]
/external/mksh/src/
H A Deval.c1325 struct ioword *io = *t->ioact; local
1328 if ((io->flag & IOTYPE) != IOREAD)
1330 snptreef(NULL, 32, "%R", io));
1331 shf = shf_open(name = evalstr(io->name, DOTILDE), O_RDONLY, 0,
/external/opencv/cvaux/src/
H A Dcveigenobjects.cpp244 ngr = nObjects / nio; /* number of io groups */
256 int io, jo, imin = igr * nio, imax = imin + nio; local
263 for( io = imin; io < imax; io++, bu1 += n )
267 r = (CvStatus)read_callback( io, (void *) bu1, userData );
274 for( io = imin; io < imax; io++, bu1 += n )
277 for( jo = io; j
698 int i, io, ie, imin = igr * nio, imax = imin + nio; local
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsps2.c1524 cmsIOHANDLER* io)
1532 rc = GenerateCSA(ContextID, hProfile, Intent, dwFlags, io);
1537 rc = GenerateCRD(ContextID, hProfile, Intent, dwFlags, io);
1519 cmsGetPostScriptColorResource(cmsContext ContextID, cmsPSResourceType Type, cmsHPROFILE hProfile, cmsUInt32Number Intent, cmsUInt32Number dwFlags, cmsIOHANDLER* io) argument
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java21 package proguard.classfile.io;
35 import java.io.DataInput;
H A DProgramClassWriter.java21 package proguard.classfile.io;
35 import java.io.*;
/external/qemu/android/
H A Dasync-socket.c368 LoopIo io[1]; member in struct:AsyncSocket
459 * io - I/O to remove.
467 AsyncSocketIO* io)
471 while (*list_head != NULL && io != *list_head) {
477 __FUNCTION__, io, _async_socket_string(as));
481 *list_head = io->next;
483 prev->next = io->next;
485 if (*list_tail == io) {
490 async_socket_io_release(io);
669 loopIo_dontWantWrite(as->io);
464 _async_socket_remove_io(AsyncSocket* as, AsyncSocketIO** list_head, AsyncSocketIO** list_tail, AsyncSocketIO* io) argument
[all...]
/external/qemu-pc-bios/bochs/
H A Dbochs.h76 # include <io.h>
240 if (bx_guard.report.io) bx_dbg_io_report(port, size, op, val)
367 ((io==NULL)? (io=new iofunc_t("/dev/stderr")) : io)
397 BOCHSAPI extern iofunc_t *io;
447 bx_bool io; member in struct:__anon30290
/external/webp/src/dec/
H A Dframe.c246 static int FinishRow(VP8Decoder* const dec, VP8Io* const io) { argument
274 if (io->put != NULL) {
279 io->y = ydst;
280 io->u = udst;
281 io->v = vdst;
283 io->y = dec->cache_y_ + y_offset;
284 io->u = dec->cache_u_ + uv_offset;
285 io->v = dec->cache_v_ + uv_offset;
291 if (y_end > io->crop_bottom) {
292 y_end = io
344 VP8ProcessRow(VP8Decoder* const dec, VP8Io* const io) argument
392 VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io) argument
447 VP8ExitCritical(VP8Decoder* const dec, VP8Io* const io) argument
636 InitIo(VP8Decoder* const dec, VP8Io* io) argument
647 VP8InitFrame(VP8Decoder* const dec, VP8Io* io) argument
[all...]
H A Didec.c277 VP8Io* const io = &idec->io_; local
278 if (io->teardown != NULL) {
279 io->teardown(io);
388 VP8Io* const io = &idec->io_; local
397 if (!VP8GetHeaders(dec, io)) {
408 dec->status_ = WebPAllocateDecBuffer(io->width, io->height, params->options,
415 io->width, io
439 VP8Io* const io = &idec->io_; local
495 VP8Io* const io = &idec->io_; local
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dctrl_iface.c2044 struct iovec io[2]; local
2052 io[0].iov_base = levelstr;
2053 io[0].iov_len = os_strlen(levelstr);
2054 io[1].iov_base = (char *) buf;
2055 io[1].iov_len = len;
2057 msg.msg_iov = io;
/external/proguard/lib/
H A Dproguard.jar ... .io.DataEntryWriter createClassPathEntryWriter (proguard.ClassPathEntry, proguard.io.DataEntryWriter) private static proguard.io.DataEntryWriter wrapInJarWriter ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jar ... private java.net.Socket clientSocket private java.io.InputStream in private java.io.OutputStream out ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jar ... INF/eclipse.inf about_files/ org/ org/mortbay/ org/mortbay/io/ org/mortbay/io/bio/ org/mortbay/io/nio/ org/mortbay
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
H A Dautopep8.py48 import io namespace
121 return io.open(filename, mode=mode, encoding=encoding,
400 sio = io.StringIO(contents)
1161 sio = io.StringIO(source)
2438 sio = io.StringIO(input_text)
2824 sio = io.StringIO(source)
2863 sio = io.StringIO(fixed_source)
2888 new = io.StringIO(fixed_source)
3652 string_io = io.StringIO(text)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_llvm.c594 lp_build_printf(gallivm, " ---- %p storing attribute %d (io = %p)\n", data_ptr, index, io_ptr);
650 lp_build_printf(gallivm, "io = %p, index %d\n, clipmask = %x\n",
665 LLVMValueRef io,
716 io,
1136 lp_build_name(io_ptr, "io");
1199 LLVMValueRef io; local
1208 io = LLVMBuildGEP(builder, io_ptr, &io_itr, 1, "");
1210 lp_build_printf(gallivm, " --- io %d = %p, loop counter %d\n",
1211 io_itr, io, lp_loop.counter);
1260 store_clip(gallivm, vs_type, io, output
664 convert_to_aos(struct gallivm_state *gallivm, LLVMValueRef io, LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS], LLVMValueRef clipmask, int num_outputs, struct lp_type soa_type, boolean have_clipdist) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_shader.c714 static int r600_spi_sid(struct r600_shader_io * io) argument
716 int index, name = io->name;
728 index = io->sid;
731 index = 0x80 | (name<<3) | (io->sid);
/external/e2fsprogs/misc/
H A De2image.c650 retval = io_channel_read_blk64(fs->io, blk, 1, buf);
1173 retval = io_channel_read_blk64(fs->io, blk, 1, buf);
1364 io_channel io; local
1400 retval = io_ptr->open(device, IO_FLAG_RW, &io);
1406 ext2fs_rewrite_to_io(fs, io);
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp54 static void mapping(IO &io, FooBar& fb) { argument
55 io.mapRequired("foo", fb.foo);
56 io.mapRequired("bar", fb.bar);
172 static void mapping(IO &io, BuiltInTypes& bt) { argument
173 io.mapRequired("str", bt.str);
174 io.mapRequired("stdstr", bt.stdstr);
175 io.mapRequired("u64", bt.u64);
176 io.mapRequired("u32", bt.u32);
177 io.mapRequired("u16", bt.u16);
178 io
328 mapping(IO &io, StringTypes& st) argument
452 enumeration(IO &io, Colors &value) argument
461 mapping(IO &io, ColorMap& c) argument
526 bitset(IO &io, MyFlags &value) argument
535 mapping(IO &io, FlagsMap& c) argument
618 mapping(IO &io, MyCustomTypeMap& s) argument
729 mapping(IO &io, NameAndNumbers& nn) argument
804 NormalizedSeconds(IO &io) argument
821 mapping(IO &io, TotalSeconds &secs) argument
913 enumeration(IO &io, AFlags &value) argument
921 enumeration(IO &io, BFlags &value) argument
929 enumeration(IO &io, Kind &value) argument
936 mapping(IO &io, KindAndFlags& kf) argument
1026 mapping(IO &io, FooBarMap& fb) argument
1105 mapping(IO &io, MyDouble &d) argument
1112 mappingDecimal(IO &io, MyDouble &d) argument
1115 mappingFraction(IO &io, MyDouble &d) argument
1187 mapping(IO &io, MyValidation &d) argument
1190 validate(IO &io, MyValidation &d) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_llvm.c594 lp_build_printf(gallivm, " ---- %p storing attribute %d (io = %p)\n", data_ptr, index, io_ptr);
650 lp_build_printf(gallivm, "io = %p, index %d\n, clipmask = %x\n",
665 LLVMValueRef io,
716 io,
1136 lp_build_name(io_ptr, "io");
1199 LLVMValueRef io; local
1208 io = LLVMBuildGEP(builder, io_ptr, &io_itr, 1, "");
1210 lp_build_printf(gallivm, " --- io %d = %p, loop counter %d\n",
1211 io_itr, io, lp_loop.counter);
1260 store_clip(gallivm, vs_type, io, output
664 convert_to_aos(struct gallivm_state *gallivm, LLVMValueRef io, LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS], LLVMValueRef clipmask, int num_outputs, struct lp_type soa_type, boolean have_clipdist) argument
[all...]

Completed in 658 milliseconds

<<111213141516