Home
last modified time | relevance | path

Searched full:write (Results 1 – 25 of 14004) sorted by relevance

12345678910>>...561

/external/libevent/
Depolltable-internal.h43 If either the read or the write change is add+del:
45 Else, if either the read or the write change is add:
50 If the write change is add, or
51 (the write change is not del, and ev_write is in old_events):
59 Else, if the read or the write change is del:
62 If the write change is del:
70 {The write change is del.}
78 There is no read or write change; set op to 0 and events to 0.
117 Bit 4: write change is add
118 Bit 5: write change is del
[all …]
/external/curl/packages/vms/
Dgenerate_config_vms_h_curl.com112 $ write sys$output "NOTICE: A LIBIDN port has been detected."
113 $ write sys$output " This port of curl for VMS has not been tested with it."
120 $ write sys$output " LIBIDN support is not enabled."
121 $ write sys$output "Run with the ""libidn"" parameter to attempt to use."
123 $ write sys$output " Untested LIBIDN support requested."
131 $ write sys$output "NOTICE: A LIBSSH2 port has been detected."
132 $ write sys$output " This port of curl for VMS has not been tested with it."
139 $ write sys$output " LIBSSH2 support is not enabled."
140 $ write sys$output "Run with the ""libssh2"" parameter to attempt to use."
142 $ write sys$output " Untested LIBSSH2 support requested."
[all …]
Dconfig_h.com79 $ write sys$output "Found existing custom file ''file'."
82 $ write sys$output "Creating new sys$disk:[]config_vms.h for you."
100 $! Write out the header
153 $ write sys$output "Can not find sys$disk:config.h.in"
156 $ write/symbol sys$output line_out
159 $ write sys$output "Also looked in PRJ_INCLUDE: for these files."
162 $ write tf ""
163 $ write tf -
165 $ write tf -
167 $ write tf -
[all …]
/external/mbedtls/tests/suites/
Dtest_suite_asn1write.data1 ASN.1 Write NULL
4 ASN.1 Write BOOLEAN FALSE
7 ASN.1 Write BOOLEAN TRUE
10 ASN.1 Write int 0
13 ASN.1 Write int 1
16 ASN.1 Write int 127
19 ASN.1 Write int 128
22 ASN.1 Write int 255
25 ASN.1 Write int 256
28 ASN.1 Write int 32767
[all …]
/external/openthread/third_party/mbedtls/repo/tests/suites/
Dtest_suite_asn1write.data1 ASN.1 Write NULL
4 ASN.1 Write BOOLEAN FALSE
7 ASN.1 Write BOOLEAN TRUE
10 ASN.1 Write int 0
13 ASN.1 Write int 1
16 ASN.1 Write int 127
19 ASN.1 Write int 128
22 ASN.1 Write int 255
25 ASN.1 Write int 256
28 ASN.1 Write int 32767
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors_ioctl.inc17 // FIXME: support read+write arguments. Currently READWRITE and WRITE do the
19 // XXX: The declarations below may use WRITE instead of READWRITE, unless
24 WRITE,
52 _(FIOGETOWN, WRITE, sizeof(int));
56 _(SIOCATMARK, WRITE, sizeof(int));
58 _(SIOCGPGRP, WRITE, sizeof(int));
62 _(TIOCGETD, WRITE, sizeof(int));
63 _(TIOCGPGRP, WRITE, pid_t_sz);
64 _(TIOCGWINSZ, WRITE, struct_winsize_sz);
67 _(TIOCMGET, WRITE, sizeof(int));
[all …]
/external/skia/gn/
Dgn_to_cmake.py62 out.write('set("')
63 out.write(CMakeStringEscape(variable_name))
64 out.write('" "')
65 out.write(CMakeStringEscape(value))
66 out.write('")\n')
75 out.write('list(APPEND "')
76 out.write(CMakeStringEscape(variable_name))
77 out.write('"\n "')
78 out.write('"\n "'.join([CMakeStringEscape(value) for value in values]))
79 out.write('")\n')
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/BinaryFormat/
DMsgPackWriter.cpp25 void Writer::writeNil() { EW.write(FirstByte::Nil); } in writeNil()
27 void Writer::write(bool b) { EW.write(b ? FirstByte::True : FirstByte::False); } in write() function in Writer
29 void Writer::write(int64_t i) { in write() function in Writer
31 write(static_cast<uint64_t>(i)); in write()
36 EW.write(static_cast<int8_t>(i)); in write()
41 EW.write(FirstByte::Int8); in write()
42 EW.write(static_cast<int8_t>(i)); in write()
47 EW.write(FirstByte::Int16); in write()
48 EW.write(static_cast<int16_t>(i)); in write()
53 EW.write(FirstByte::Int32); in write()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DMsgPackWriter.cpp23 void Writer::writeNil() { EW.write(FirstByte::Nil); } in writeNil()
25 void Writer::write(bool b) { EW.write(b ? FirstByte::True : FirstByte::False); } in write() function in Writer
27 void Writer::write(int64_t i) { in write() function in Writer
29 write(static_cast<uint64_t>(i)); in write()
34 EW.write(static_cast<int8_t>(i)); in write()
39 EW.write(FirstByte::Int8); in write()
40 EW.write(static_cast<int8_t>(i)); in write()
45 EW.write(FirstByte::Int16); in write()
46 EW.write(static_cast<int16_t>(i)); in write()
51 EW.write(FirstByte::Int32); in write()
[all …]
/external/cronet/third_party/protobuf/objectivec/
DGPBCodedOutputStream.h61 * @note Any -write* api can raise the GPBCodedOutputStreamException_*
79 * Creates a stream to write into the given NSOutputStream.
98 * Initializes a stream to write into the given @c NSOutputStream.
112 * Write the raw byte out.
114 * @param value The value to write out.
119 * Write the tag for the given field number and wire format.
127 * Write a 32bit value out in little endian format.
129 * @param value The value to write out.
133 * Write a 64bit value out in little endian format.
135 * @param value The value to write out.
[all …]
/external/protobuf/objectivec/
DGPBCodedOutputStream.h61 * @note Any -write* api can raise the GPBCodedOutputStreamException_*
79 * Creates a stream to write into the given NSOutputStream.
98 * Initializes a stream to write into the given @c NSOutputStream.
112 * Write the raw byte out.
114 * @param value The value to write out.
119 * Write the tag for the given field number and wire format.
127 * Write a 32bit value out in little endian format.
129 * @param value The value to write out.
133 * Write a 64bit value out in little endian format.
135 * @param value The value to write out.
[all …]
/external/python/cpython2/Demo/parser/
Dunparse.py36 self.f.write("")
41 self.f.write("\n"+" "*self._indent + text)
43 def write(self, text): member in Unparser
45 self.f.write(text)
49 self.write(":")
84 interleave(lambda: self.write(", "), self.dispatch, t.names)
92 self.write("." * t.level)
94 self.write(t.module)
95 self.write(" import ")
96 interleave(lambda: self.write(", "), self.dispatch, t.names)
[all …]
/external/google-smali/third_party/baksmali/src/main/java/com/android/tools/smali/baksmali/Adaptors/Format/
DInstructionMethodItem.java90 void write() throws IOException; in write() method
106 writer.write("#was invalid verification error type: "); in writeTo()
108 writer.write("\n"); in writeTo()
122 writer.write("#"); in writeTo()
123 writer.write(ex.getMessage()); in writeTo()
124 writer.write("\n"); in writeTo()
125 referenceWritable = () -> writer.write(ex.getInvalidReferenceRepresentation()); in writeTo()
137 writer.write("#"); in writeTo()
138 writer.write(ex.getMessage()); in writeTo()
139 writer.write("\n"); in writeTo()
[all …]
/external/python/mako/mako/
D_ast_util.py223 def write(self, x): member in SourceGenerator
245 self.write("else:")
253 self.write(", ")
262 self.write("=")
266 self.write("*" + node.vararg.arg)
269 self.write("**" + node.kwarg.arg)
274 self.write("@")
283 self.write(", ")
285 self.write(" = ")
291 self.write(BINOP_SYMBOLS[type(node.op)] + "=")
[all …]
/external/chromium-trace/catapult/common/py_trace_event/third_party/protobuf/
Dencoder.py69 def EncodeVarint(write, value): argument
73 write(six.int2byte(0x80|bits))
76 return write(six.int2byte(bits))
85 def EncodeSignedVarint(write, value): argument
91 write(six.int2byte(0x80|bits))
94 return write(six.int2byte(bits))
133 def EncodePackedField(write, value): argument
134 write(tag_bytes)
138 local_EncodeVarint(write, size)
140 encode_value(write, element)
[all …]
/external/openscreen/discovery/mdns/
Dmdns_writer.cc52 bool MdnsWriter::Write(absl::string_view value) { in Write() function in openscreen::discovery::MdnsWriter
57 if (Write(static_cast<uint8_t>(value.length())) && in Write()
58 Write(value.data(), value.length())) { in Write()
65 bool MdnsWriter::Write(const std::string& value) { in Write() function in openscreen::discovery::MdnsWriter
66 return Write(absl::string_view(value)); in Write()
71 bool MdnsWriter::Write(const DomainName& name) { in Write() function in openscreen::discovery::MdnsWriter
90 if (!Write(find_result->second)) { in Write()
104 if (!Write(MakeDirectLabel(labels[i].size())) || in Write()
105 !Write(labels[i].data(), labels[i].size())) { in Write()
109 if (!Write(kLabelTermination)) { in Write()
[all …]
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/writer/
DInstructionWriter.java156 public void write(@Nonnull Instruction10t instruction) { in write() method in InstructionWriter
158 writer.write(getOpcodeValue(instruction.getOpcode())); in write()
159 writer.write(instruction.getCodeOffset()); in write()
165 public void write(@Nonnull Instruction10x instruction) { in write() method in InstructionWriter
167 writer.write(getOpcodeValue(instruction.getOpcode())); in write()
168 writer.write(0); in write()
174 public void write(@Nonnull Instruction11n instruction) { in write() method in InstructionWriter
176 writer.write(getOpcodeValue(instruction.getOpcode())); in write()
177 writer.write(packNibbles(instruction.getRegisterA(), instruction.getNarrowLiteral())); in write()
183 public void write(@Nonnull Instruction11x instruction) { in write() method in InstructionWriter
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/release/
Drelease_notes.py185 file.write(content_header.format(version=version, date=date))
186 file.write("PRs with missing release notes label - please fix in Github\n")
187 file.write("---\n")
188 file.write("\n")
191 file.write("\n".join(langs_pr["nolabel"]))
193 file.write("- None")
194 file.write("\n")
195 file.write("\n")
196 file.write("PRs with missing lang label - please fix in Github\n")
197 file.write("---\n")
[all …]
/external/cbor-java/src/main/java/co/nstant/in/cbor/encoder/
DAbstractEncoder.java30 outputStream.write(symbol); in encodeTypeChunked()
39 write((int) (symbol | length)); in encodeTypeAndLength()
42 write(symbol); in encodeTypeAndLength()
43 write((int) length); in encodeTypeAndLength()
46 write(symbol); in encodeTypeAndLength()
47 write((int) (length >> 8)); in encodeTypeAndLength()
48 write((int) (length & 0xFF)); in encodeTypeAndLength()
51 write(symbol); in encodeTypeAndLength()
52 write((int) ((length >> 24) & 0xFF)); in encodeTypeAndLength()
53 write((int) ((length >> 16) & 0xFF)); in encodeTypeAndLength()
[all …]
/external/grpc-grpc/tools/release/
Drelease_notes.py241 file.write(content_header.format(version=version, date=date))
242 file.write(
245 file.write("---\n")
246 file.write("\n")
248 file.write("\n".join(langs_pr["nopr"]))
250 file.write("- None")
251 file.write("\n")
252 file.write("\n")
253 file.write("PRs with missing release notes label - please fix in Github\n")
254 file.write("---\n")
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ObjectYAML/
DXCOFFEmitter.cpp90 W.write(NameRef); in writeName()
354 W.write<uint16_t>(Obj.Header.Magic ? Obj.Header.Magic : InitFileHdr.Magic); in writeFileHeader()
355 W.write<uint16_t>(Obj.Header.NumberOfSections ? Obj.Header.NumberOfSections in writeFileHeader()
357 W.write<int32_t>(Obj.Header.TimeStamp); in writeFileHeader()
359 W.write<uint64_t>(Obj.Header.SymbolTableOffset in writeFileHeader()
362 W.write<uint16_t>(InitFileHdr.AuxHeaderSize); in writeFileHeader()
363 W.write<uint16_t>(Obj.Header.Flags); in writeFileHeader()
364 W.write<int32_t>(Obj.Header.NumberOfSymTableEntries in writeFileHeader()
368 W.write<uint32_t>(Obj.Header.SymbolTableOffset in writeFileHeader()
371 W.write<int32_t>(Obj.Header.NumberOfSymTableEntries in writeFileHeader()
[all …]
/external/cronet/third_party/protobuf/python/google/protobuf/internal/
Dencoder.py43 strings and invokes the writer function to write those strings. Typically the
44 writer function is the write() method of a BytesIO.
375 def EncodeVarint(write, value, unused_deterministic=None): argument
379 write(local_int2byte(0x80|bits))
382 return write(local_int2byte(bits))
393 def EncodeSignedVarint(write, value, unused_deterministic=None): argument
399 write(local_int2byte(0x80|bits))
402 return write(local_int2byte(bits))
445 def EncodePackedField(write, value, deterministic): argument
446 write(tag_bytes)
[all …]
/external/protobuf/python/google/protobuf/internal/
Dencoder.py43 strings and invokes the writer function to write those strings. Typically the
44 writer function is the write() method of a BytesIO.
375 def EncodeVarint(write, value, unused_deterministic=None): argument
379 write(local_int2byte(0x80|bits))
382 return write(local_int2byte(bits))
393 def EncodeSignedVarint(write, value, unused_deterministic=None): argument
399 write(local_int2byte(0x80|bits))
402 return write(local_int2byte(bits))
445 def EncodePackedField(write, value, deterministic): argument
446 write(tag_bytes)
[all …]
/external/mesa3d/src/freedreno/.gitlab-ci/reference/
Des2gears-a320.log7 write SP_VS_PVT_MEM_PARAM_REG (22d6)
12 write SP_FS_PVT_MEM_PARAM_REG (22e4)
17 write PC_VERTEX_REUSE_BLOCK_CNTL (21ea)
20 write GRAS_SC_CONTROL (2072)
23 write RB_MSAA_CONTROL (20c2)
27 write GRAS_CL_GB_CLIP_ADJ (2044)
30 write GRAS_TSE_DEBUG_ECO (0c81)
33 write TPL1_TP_VS_TEX_OFFSET (2340)
36 write TPL1_TP_FS_TEX_OFFSET (2342)
39 write VPC_VARY_CYLWRAP_ENABLE_0 (228a)
[all …]
/external/rust/crates/bindgen/codegen/
Dserialize.rs1 use std::io::Write;
24 fn serialize<W: Write>( in serialize()
36 fn serialize<W: Write>( in serialize()
58 fn serialize<W: Write>( in serialize()
125 // Write `ret_ty`. in serialize()
133 // Write `wrap_name(args`. in serialize()
134 write!(writer, " {}(", wrap_name)?; in serialize()
138 // Write `) { name(` if the function returns void and `) { return name(` if it does not. in serialize()
140 write!(writer, ") {{ {}(", name)?; in serialize()
142 write!(writer, ") {{ return {}(", name)?; in serialize()
[all …]

12345678910>>...561