Home
last modified time | relevance | path

Searched refs:os (Results 1 – 25 of 3657) sorted by relevance

12345678910>>...147

/third_party/skia/third_party/externals/angle2/src/common/
DPackedGLEnums_autogen.cpp70 std::ostream &operator<<(std::ostream &os, AlphaTestFunc value) in operator <<() argument
75 os << "GL_ALWAYS"; in operator <<()
78 os << "GL_EQUAL"; in operator <<()
81 os << "GL_GEQUAL"; in operator <<()
84 os << "GL_GREATER"; in operator <<()
87 os << "GL_LEQUAL"; in operator <<()
90 os << "GL_LESS"; in operator <<()
93 os << "GL_NEVER"; in operator <<()
96 os << "GL_NOTEQUAL"; in operator <<()
99 os << "GL_INVALID_ENUM"; in operator <<()
[all …]
DPackedCLEnums_autogen.cpp58 std::ostream &operator<<(std::ostream &os, AddressingMode value) in operator <<() argument
63 os << "CL_ADDRESS_NONE"; in operator <<()
66 os << "CL_ADDRESS_CLAMP_TO_EDGE"; in operator <<()
69 os << "CL_ADDRESS_CLAMP"; in operator <<()
72 os << "CL_ADDRESS_REPEAT"; in operator <<()
75 os << "CL_ADDRESS_MIRRORED_REPEAT"; in operator <<()
78 os << "GL_INVALID_ENUM"; in operator <<()
81 return os; in operator <<()
132 std::ostream &operator<<(std::ostream &os, CommandQueueInfo value) in operator <<() argument
137 os << "CL_QUEUE_CONTEXT"; in operator <<()
[all …]
DPackedEnums.cpp266 std::ostream &operator<<(std::ostream &os, PrimitiveMode value) in operator <<() argument
271 os << "GL_LINE_LOOP"; in operator <<()
274 os << "GL_LINES"; in operator <<()
277 os << "GL_LINES_ADJACENCY"; in operator <<()
280 os << "GL_LINE_STRIP"; in operator <<()
283 os << "GL_LINE_STRIP_ADJANCENCY"; in operator <<()
286 os << "GL_POINTS"; in operator <<()
289 os << "GL_TRIANGLE_FAN"; in operator <<()
292 os << "GL_TRIANGLES"; in operator <<()
295 os << "GL_TRIANGLES_ADJANCENCY"; in operator <<()
[all …]
/third_party/googletest/googletest/src/
Dgtest-printers.cc70 size_t count, ostream* os) { in PrintByteSegmentInObjectTo() argument
78 *os << ' '; in PrintByteSegmentInObjectTo()
80 *os << '-'; in PrintByteSegmentInObjectTo()
83 *os << text; in PrintByteSegmentInObjectTo()
89 ostream* os) { in PrintBytesInObjectToImpl() argument
91 *os << count << "-byte object <"; in PrintBytesInObjectToImpl()
99 PrintByteSegmentInObjectTo(obj_bytes, 0, count, os); in PrintBytesInObjectToImpl()
101 PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os); in PrintBytesInObjectToImpl()
102 *os << " ... "; in PrintBytesInObjectToImpl()
105 PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os); in PrintBytesInObjectToImpl()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/common/
DPackedGLEnums_autogen.cpp70 std::ostream &operator<<(std::ostream &os, AlphaTestFunc value) in operator <<() argument
75 os << "GL_ALWAYS"; in operator <<()
78 os << "GL_EQUAL"; in operator <<()
81 os << "GL_GEQUAL"; in operator <<()
84 os << "GL_GREATER"; in operator <<()
87 os << "GL_LEQUAL"; in operator <<()
90 os << "GL_LESS"; in operator <<()
93 os << "GL_NEVER"; in operator <<()
96 os << "GL_NOTEQUAL"; in operator <<()
99 os << "GL_INVALID_ENUM"; in operator <<()
[all …]
/third_party/ffmpeg/libavformat/
Doggdec.c100 struct ogg_stream *os = ogg->streams + i; in ogg_save() local
101 os->buf = av_mallocz(os->bufsize + AV_INPUT_BUFFER_PADDING_SIZE); in ogg_save()
102 if (os->buf) in ogg_save()
103 memcpy(os->buf, ost->streams[i].buf, os->bufpos); in ogg_save()
106 os->new_metadata = NULL; in ogg_save()
107 os->new_metadata_size = 0; in ogg_save()
164 struct ogg_stream *os = ogg->streams + i; in ogg_reset() local
165 os->bufpos = 0; in ogg_reset()
166 os->pstart = 0; in ogg_reset()
167 os->psize = 0; in ogg_reset()
[all …]
Dhdsenc.c79 static int parse_header(OutputStream *os, const uint8_t *buf, int buf_size) in parse_header() argument
93 if (os->nb_extra_packets >= FF_ARRAY_ELEMS(os->extra_packets)) in parse_header()
95 os->extra_packet_sizes[os->nb_extra_packets] = size; in parse_header()
96 os->extra_packets[os->nb_extra_packets] = av_malloc(size); in parse_header()
97 if (!os->extra_packets[os->nb_extra_packets]) in parse_header()
99 memcpy(os->extra_packets[os->nb_extra_packets], buf, size); in parse_header()
100 os->nb_extra_packets++; in parse_header()
102 if (os->metadata) in parse_header()
104 os->metadata_size = size - 11 - 4; in parse_header()
105 os->metadata = av_malloc(os->metadata_size); in parse_header()
[all …]
Dsmoothstreamingenc.c83 OutputStream *os = opaque; in ism_write() local
84 if (os->out) in ism_write()
85 ffurl_write(os->out, buf, buf_size); in ism_write()
86 if (os->out2) in ism_write()
87 ffurl_write(os->out2, buf, buf_size); in ism_write()
88 os->cur_pos += buf_size; in ism_write()
89 if (os->cur_pos >= os->tail_pos) in ism_write()
90 os->tail_pos = os->cur_pos; in ism_write()
96 OutputStream *os = opaque; in ism_seek() local
100 if (os->tail_out) { in ism_seek()
[all …]
Ddashenc.c310 OutputStream *os = &c->streams[i]; in init_segment_types() local
313 os->segment_type = segment_type; in init_segment_types()
314 os->format_name = get_format_str(segment_type); in init_segment_types()
315 if (!os->format_name) { in init_segment_types()
319 os->extension_name = get_extension_str(segment_type, c->single_file); in init_segment_types()
320 if (!os->extension_name) { in init_segment_types()
457 static int flush_dynbuf(DASHContext *c, OutputStream *os, int *range_length) in flush_dynbuf() argument
461 if (!os->ctx->pb) { in flush_dynbuf()
466 av_write_frame(os->ctx, NULL); in flush_dynbuf()
467 avio_flush(os->ctx->pb); in flush_dynbuf()
[all …]
/third_party/python/Lib/test/
Dtest_os.py14 import os
74 if hasattr(os, 'geteuid'):
75 root_in_posix = (os.geteuid() == 0)
87 HAVE_WHEEL_GROUP = sys.platform.startswith('freebsd') and os.getgid() == 0
91 return unittest.skipUnless(hasattr(os, name), 'requires os.%s' % name)
106 cwd = os.getcwd()
135 cwd = os.getcwd()
138 need = min_len - (len(cwd) + len(os.path.sep))
144 path = os.path.join(path, dirname)
146 os.mkdir(path)
[all …]
Dtest_shutil.py9 import os
10 import os.path
62 builtin_rename = os.rename
63 os.rename = _fake_rename
66 os.rename = builtin_rename
77 path = os.path.join(*path)
99 assert os.path.getsize(path) == size
109 path = os.path.join(*path)
117 for name in sorted(os.listdir(path)):
118 p = os.path.join(path, name)
[all …]
Dtest_posix.py16 import os
25 _DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),
138 if os.getuid() != 0:
154 self.assertTrue(posix.statvfs(os.curdir))
185 …@unittest.skipUnless(getattr(os, 'execve', None) in os.supports_fd, "test needs execve() to suppor…
186 @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()")
188 fp = os.open(sys.executable, os.O_RDONLY)
190 pid = os.fork()
192 os.chdir(os.path.split(sys.executable)[0])
193 posix.execve(fp, [sys.executable, '-c', 'pass'], os.environ)
[all …]
/third_party/mesa3d/src/gtest/src/
Dgtest-printers.cc65 size_t count, ostream* os) { in PrintByteSegmentInObjectTo() argument
73 *os << ' '; in PrintByteSegmentInObjectTo()
75 *os << '-'; in PrintByteSegmentInObjectTo()
78 *os << text; in PrintByteSegmentInObjectTo()
84 ostream* os) { in PrintBytesInObjectToImpl() argument
86 *os << count << "-byte object <"; in PrintBytesInObjectToImpl()
94 PrintByteSegmentInObjectTo(obj_bytes, 0, count, os); in PrintBytesInObjectToImpl()
96 PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os); in PrintBytesInObjectToImpl()
97 *os << " ... "; in PrintBytesInObjectToImpl()
100 PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os); in PrintBytesInObjectToImpl()
[all …]
/third_party/mesa3d/src/gtest/include/gtest/
Dgtest-printers.h130 ::std::ostream* os);
153 static void PrintValue(const T& value, ::std::ostream* os) { in PrintValue() argument
157 sizeof(value), os); in PrintValue()
169 static void PrintValue(const T& value, ::std::ostream* os) { in PrintValue() argument
174 *os << ("<" + pretty_str + ">"); in PrintValue()
188 static void PrintValue(const T& value, ::std::ostream* os) { in PrintValue() argument
190 *os << kBigInt; in PrintValue()
203 static void PrintValue(const T& value, ::std::ostream* os);
233 ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
246 kOtherType)>::PrintValue(x, &os);
[all …]
/third_party/googletest/googletest/include/gtest/
Dgtest-printers.h123 void UniversalPrint(const T& value, ::std::ostream* os);
132 static void PrintValue(const T& container, std::ostream* os) { in PrintValue()
134 *os << '{'; in PrintValue()
138 *os << ','; in PrintValue()
140 *os << " ..."; in PrintValue()
144 *os << ' '; in PrintValue()
147 internal::UniversalPrint(elem, os); in PrintValue()
152 *os << ' '; in PrintValue()
154 *os << '}'; in PrintValue()
167 static void PrintValue(T* p, ::std::ostream* os) { in PrintValue()
[all …]
/third_party/python/Mac/BuildScript/
Dbuild-installer.py39 import platform, os, sys, getopt, textwrap, shutil, stat, time, pwd, grp
92 os.path.join(SRCDIR, 'configure'), 'PACKAGE_VERSION')
104 fn = os.path.join(SRCDIR, 'Include', 'patchlevel.h')
120 DEPSRC = os.path.join(WORKDIR, 'third-party')
121 DEPSRC = os.path.expanduser('~/Universal/other-sources')
148 SRCDIR = os.path.dirname(
149 os.path.dirname(
150 os.path.dirname(
151 os.path.abspath(__file__
288 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')),
[all …]
/third_party/mtdev/config-aux/
Dconfig.sub131 os=-$maybe_os
137 then os=`echo $1 | sed 's/.*-/-/'`
138 else os=; fi
146 case $os in
147 -sun*os*)
157 os=
161 os=-cnk
164 os=
170 os=-vxworks
174 os=-chorusos
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dkeywords.rs10 pub static mut u8_: ::std::os::raw::c_int;
14 pub static mut u16_: ::std::os::raw::c_int;
18 pub static mut u32_: ::std::os::raw::c_int;
22 pub static mut u64_: ::std::os::raw::c_int;
26 pub static mut i8_: ::std::os::raw::c_int;
30 pub static mut i16_: ::std::os::raw::c_int;
34 pub static mut i32_: ::std::os::raw::c_int;
38 pub static mut i64_: ::std::os::raw::c_int;
42 pub static mut f32_: ::std::os::raw::c_int;
46 pub static mut f64_: ::std::os::raw::c_int;
[all …]
/third_party/flutter/skia/third_party/externals/sfntly/java/test/com/google/typography/font/tools/conversion/eot/
DGlyfEncoderTest.java37 ByteArrayOutputStream os = new ByteArrayOutputStream(); in test255UShort1() local
38 GlyfEncoder.write255UShort(os, 142); in test255UShort1()
39 byte[] actual = os.toByteArray(); in test255UShort1()
45 ByteArrayOutputStream os = new ByteArrayOutputStream(); in test255UShort2() local
46 GlyfEncoder.write255UShort(os, 254); in test255UShort2()
47 byte[] actual = os.toByteArray(); in test255UShort2()
53 ByteArrayOutputStream os = new ByteArrayOutputStream(); in test255UShort3() local
54 GlyfEncoder.write255UShort(os, 507); in test255UShort3()
55 byte[] actual = os.toByteArray(); in test255UShort3()
61 ByteArrayOutputStream os = new ByteArrayOutputStream(); in test255UShort4() local
[all …]
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/tools/conversion/eot/
DGlyfEncoderTest.java37 ByteArrayOutputStream os = new ByteArrayOutputStream(); in test255UShort1() local
38 GlyfEncoder.write255UShort(os, 142); in test255UShort1()
39 byte[] actual = os.toByteArray(); in test255UShort1()
45 ByteArrayOutputStream os = new ByteArrayOutputStream(); in test255UShort2() local
46 GlyfEncoder.write255UShort(os, 254); in test255UShort2()
47 byte[] actual = os.toByteArray(); in test255UShort2()
53 ByteArrayOutputStream os = new ByteArrayOutputStream(); in test255UShort3() local
54 GlyfEncoder.write255UShort(os, 507); in test255UShort3()
55 byte[] actual = os.toByteArray(); in test255UShort3()
61 ByteArrayOutputStream os = new ByteArrayOutputStream(); in test255UShort4() local
[all …]
/third_party/skia/third_party/externals/microhttpd/
Dconfig.sub123 os=-$maybe_os
127 os=-linux-android
133 then os=`echo $1 | sed 's/.*-/-/'`
134 else os=; fi
142 case $os in
143 -sun*os*)
153 os=
157 os=-cnk
160 os=
166 os=-vxworks
[all …]
/third_party/libffi/
Dconfig.sub122 os=-$maybe_os
126 os=-linux-android
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=-cnk
159 os=
165 os=-vxworks
[all …]
/third_party/freetype/builds/unix/
Dconfig.sub1352 case $os in
1357 os=auroraux
1360 os=cnk
1363 os=`echo "$os" | sed -e 's|solaris1|sunos4|'`
1366 os=solaris2
1369 os=sysv4.2uw
1373 os=ose
1377 os=chorusos
1380 os=isc2.2
1383 os=sco5v6
[all …]
/third_party/python/
Dconfig.sub1347 case $os in
1352 os=auroraux
1355 os=cnk
1358 os=`echo "$os" | sed -e 's|solaris1|sunos4|'`
1361 os=solaris2
1364 os=sysv4.2uw
1368 os=ose
1372 os=chorusos
1375 os=isc2.2
1378 os=sco5v6
[all …]
/third_party/libevdev/build-aux/
Dconfig.sub122 os=-$maybe_os
126 os=-linux-android
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=-cnk
159 os=
165 os=-vxworks
[all …]

12345678910>>...147