Home
last modified time | relevance | path

Searched defs:val (Results 1 – 25 of 4801) sorted by relevance

12345678910>>...193

/third_party/python/Lib/test/
Dtest_augassign.py72 def __radd__(self, val): argument
74 def __add__(self, val): argument
78 def __iadd__(self, val): argument
83 def __iadd__(self, val): argument
122 def __add__(self, val): argument
124 def __radd__(self, val): argument
126 def __iadd__(self, val): argument
130 def __sub__(self, val): argument
132 def __rsub__(self, val): argument
134 def __isub__(self, val): argument
[all …]
/third_party/uboot/u-boot-2020.01/arch/microblaze/include/asm/
Dasm.h9 #define NGET(val, fslnum) \ argument
12 #define GET(val, fslnum) \ argument
15 #define NCGET(val, fslnum) \ argument
18 #define CGET(val, fslnum) \ argument
21 #define NPUT(val, fslnum) \ argument
24 #define PUT(val, fslnum) \ argument
27 #define NCPUT(val, fslnum) \ argument
30 #define CPUT(val, fslnum) \ argument
35 #define MFS(val, reg) \ argument
38 #define MTS(val, reg) \ argument
[all …]
/third_party/uboot/u-boot-2020.01/include/bedbug/
Dregs.h169 #define SET_REGISTER( str, val ) \ argument
180 #define SET_CR(val) SET_REGISTER( "mtcr %0", val ) argument
182 #define SET_MSR(val) SET_REGISTER( "mtmsr %0", val ) argument
184 #define SET_XER(val) SET_REGISTER( "mtspr 1,%0", val ) argument
186 #define SET_LR(val) SET_REGISTER( "mtspr 8,%0", val ) argument
188 #define SET_CTR(val) SET_REGISTER( "mtspr 9,%0", val ) argument
190 #define SET_DSISR(val) SET_REGISTER( "mtspr 18,%0", val ) argument
192 #define SET_DAR(val) SET_REGISTER( "mtspr 19,%0", val ) argument
194 #define SET_DEC(val) SET_REGISTER( "mtspr 22,%0", val ) argument
196 #define SET_SRR0(val) SET_REGISTER( "mtspr 26,%0", val ) argument
[all …]
/third_party/glib/glib/
Dgtypes.h191 #define GUINT16_SWAP_LE_BE_CONSTANT(val) ((guint16) ( \ argument
195 #define GUINT32_SWAP_LE_BE_CONSTANT(val) ((guint32) ( \ argument
201 #define GUINT64_SWAP_LE_BE_CONSTANT(val) ((guint64) ( \ argument
224 # define GUINT32_SWAP_LE_BE(val) ((guint32) __builtin_bswap32 ((guint32) (val))) argument
225 # define GUINT64_SWAP_LE_BE(val) ((guint64) __builtin_bswap64 ((guint64) (val))) argument
229 # define GUINT16_SWAP_LE_BE_IA32(val) \ argument
243 # define GUINT32_SWAP_LE_BE_IA32(val) \ argument
257 # define GUINT32_SWAP_LE_BE_IA32(val) \ argument
268 # define GUINT64_SWAP_LE_BE_IA32(val) \ argument
282 # define GUINT16_SWAP_LE_BE(val) (GUINT16_SWAP_LE_BE_IA32 (val)) argument
[all …]
Dglibconfig.h66 #define G_GINT64_CONSTANT(val) (val##L) argument
67 #define G_GUINT64_CONSTANT(val) (val##UL) argument
96 #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val) argument
118 #define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL)) argument
119 #define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL)) argument
148 #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val) argument
215 #define GINT16_TO_LE(val) ((gint16) (val)) argument
216 #define GUINT16_TO_LE(val) ((guint16) (val)) argument
217 #define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val)) argument
218 #define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val)) argument
[all …]
/third_party/typescript/tests/baselines/reference/
DprivacyTypeParametersOfClassDeclFile.js10 return val; field in publicClassWithPrivateTypeParameters
16 return val; field in publicClassWithPublicTypeParameters
22 return val; field in privateClassWithPrivateTypeParameters
28 return val; field in privateClassWithPublicTypeParameters
34 return val; field in publicClassWithPublicTypeParametersWithoutExtends
40 return val; field in privateClassWithPublicTypeParametersWithoutExtends
46 return val; field in publicClassWithTypeParametersFromPrivateModule
52 return val; field in privateClassWithTypeParametersFromPrivateModule
175 publicClassWithPrivateTypeParameters.prototype.myMethod = function (val) { argument
184 publicClassWithPublicTypeParameters.prototype.myMethod = function (val) { argument
[all …]
DprivacyTypeParametersOfClass.js11 return val; field in publicClassWithPrivateTypeParameters
17 return val; field in publicClassWithPublicTypeParameters
23 return val; field in privateClassWithPrivateTypeParameters
29 return val; field in privateClassWithPublicTypeParameters
35 return val; field in publicClassWithPublicTypeParametersWithoutExtends
41 return val; field in privateClassWithPublicTypeParametersWithoutExtends
65 publicClassWithPrivateTypeParameters.prototype.myMethod = function (val) { argument
74 publicClassWithPublicTypeParameters.prototype.myMethod = function (val) { argument
83 privateClassWithPrivateTypeParameters.prototype.myMethod = function (val) { argument
91 privateClassWithPublicTypeParameters.prototype.myMethod = function (val) { argument
[all …]
/third_party/cef/libcef/common/test/
Dtranslator_test_impl.cc213 bool SetBool(bool val) override { return (val == TEST_BOOL_VAL); } in SetBool()
215 bool SetInt(int val) override { return (val == TEST_INT_VAL); } in SetInt()
217 bool SetDouble(double val) override { return (val == TEST_DOUBLE_VAL); } in SetDouble()
219 bool SetLong(long val) override { return (val == TEST_LONG_VAL); } in SetLong()
221 bool SetSizet(size_t val) override { return (val == TEST_SIZET_VAL); } in SetSizet()
225 bool SetIntList(const std::vector<int>& val) override { in SetIntList()
231 bool GetIntListByRef(IntList& val) override { in GetIntListByRef()
246 bool SetString(const CefString& val) override { in SetString()
250 void GetStringByRef(CefString& val) override { val = TEST_STRING_VAL; } in GetStringByRef()
254 bool SetStringList(const std::vector<CefString>& val) override { in SetStringList()
[all …]
/third_party/gstreamer/gstreamer/libs/gst/base/
Dgstbytereader.h478 #define gst_byte_reader_get_uint8(reader,val) \ argument
480 #define gst_byte_reader_get_int8(reader,val) \ argument
482 #define gst_byte_reader_get_uint16_le(reader,val) \ argument
484 #define gst_byte_reader_get_int16_le(reader,val) \ argument
486 #define gst_byte_reader_get_uint16_be(reader,val) \ argument
488 #define gst_byte_reader_get_int16_be(reader,val) \ argument
490 #define gst_byte_reader_get_uint24_le(reader,val) \ argument
492 #define gst_byte_reader_get_int24_le(reader,val) \ argument
494 #define gst_byte_reader_get_uint24_be(reader,val) \ argument
496 #define gst_byte_reader_get_int24_be(reader,val) \ argument
[all …]
Dgstbytewriter.h411 #define gst_byte_writer_put_uint8(writer, val) \ argument
413 #define gst_byte_writer_put_int8(writer, val) \ argument
415 #define gst_byte_writer_put_uint16_be(writer, val) \ argument
417 #define gst_byte_writer_put_uint16_le(writer, val) \ argument
419 #define gst_byte_writer_put_int16_be(writer, val) \ argument
421 #define gst_byte_writer_put_int16_le(writer, val) \ argument
423 #define gst_byte_writer_put_uint24_be(writer, val) \ argument
425 #define gst_byte_writer_put_uint24_le(writer, val) \ argument
427 #define gst_byte_writer_put_int24_be(writer, val) \ argument
429 #define gst_byte_writer_put_int24_le(writer, val) \ argument
[all …]
/third_party/f2fs-tools/tools/sg_write_buffer/include/
Dsg_unaligned.h47 static inline void __put_unaligned_be16(uint16_t val, uint8_t *p) in __put_unaligned_be16()
53 static inline void __put_unaligned_be32(uint32_t val, uint8_t *p) in __put_unaligned_be32()
60 static inline void __put_unaligned_be48(uint64_t val, uint8_t *p) in __put_unaligned_be48()
66 static inline void __put_unaligned_be64(uint64_t val, uint8_t *p) in __put_unaligned_be64()
116 static inline void sg_put_unaligned_be16(uint16_t val, void *p) in sg_put_unaligned_be16()
121 static inline void sg_put_unaligned_be24(uint32_t val, void *p) in sg_put_unaligned_be24()
128 static inline void sg_put_unaligned_be32(uint32_t val, void *p) in sg_put_unaligned_be32()
134 static inline void sg_put_unaligned_be48(uint64_t val, void *p) in sg_put_unaligned_be48()
139 static inline void sg_put_unaligned_be64(uint64_t val, void *p) in sg_put_unaligned_be64()
147 static inline void sg_nz_put_unaligned_be16(uint16_t val, void *p) in sg_nz_put_unaligned_be16()
[all …]
/third_party/boost/libs/spirit/test/support/
Dutree.cpp20 inline bool check(boost::spirit::utree const& val, std::string expected) in check()
65 utree val(nil); in main() local
72 utree val(empty_list); in main() local
77 utree val(true); in main() local
82 utree val(123); in main() local
88 utree val('x'); in main() local
97 utree val(123.456); in main() local
102 utree val("Hello, World"); in main() local
120 utree val(utf8_symbol_type("Hello, World")); in main() local
138 utree val(binary_string_type("\xDE#\xAD")); in main() local
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DvalidationEGL.cpp101 bool ValidateStreamAttribute(const ValidationContext *val, in ValidateStreamAttribute()
141 bool ValidateCreateImageMipLevelCommon(const ValidationContext *val, in ValidateCreateImageMipLevelCommon()
171 bool ValidateConfigAttribute(const ValidationContext *val, in ValidateConfigAttribute()
277 bool ValidateConfigAttributeValue(const ValidationContext *val, in ValidateConfigAttributeValue()
399 bool ValidateConfigAttributes(const ValidationContext *val, in ValidateConfigAttributes()
415 bool ValidateColorspaceAttribute(const ValidationContext *val, in ValidateColorspaceAttribute()
469 bool ValidatePlatformType(const ValidationContext *val, in ValidatePlatformType()
530 bool ValidateGetPlatformDisplayCommon(const ValidationContext *val, in ValidateGetPlatformDisplayCommon()
965 bool ValidateStream(const ValidationContext *val, const Display *display, const Stream *stream) in ValidateStream()
985 bool ValidateLabeledObject(const ValidationContext *val, in ValidateLabeledObject()
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/source/util/
Dbit_stream.cpp55 uint64_t ToU64(T val) { in ToU64()
69 T val = 0; in FromU64() local
79 void WriteVariableWidthInternal(BitWriterInterface* writer, uint64_t val, in WriteVariableWidthInternal()
116 bool ReadVariableWidthInternal(BitReaderInterface* reader, uint64_t* val, in ReadVariableWidthInternal()
151 void WriteVariableWidthUnsigned(BitWriterInterface* writer, T val, in WriteVariableWidthUnsigned()
160 bool ReadVariableWidthUnsigned(BitReaderInterface* reader, T* val, in ReadVariableWidthUnsigned()
175 void WriteVariableWidthSigned(BitWriterInterface* writer, T val, in WriteVariableWidthSigned()
186 bool ReadVariableWidthSigned(BitReaderInterface* reader, T* val, in ReadVariableWidthSigned()
203 size_t Log2U64(uint64_t val) { in Log2U64()
238 void BitWriterInterface::WriteVariableWidthU64(uint64_t val, in WriteVariableWidthU64()
[all …]
/third_party/node/deps/nghttp2/lib/
Dnghttp2_option.c41 void nghttp2_option_set_no_auto_window_update(nghttp2_option *option, int val) { in nghttp2_option_set_no_auto_window_update()
47 uint32_t val) { in nghttp2_option_set_peer_max_concurrent_streams()
52 void nghttp2_option_set_no_recv_client_magic(nghttp2_option *option, int val) { in nghttp2_option_set_no_recv_client_magic()
57 void nghttp2_option_set_no_http_messaging(nghttp2_option *option, int val) { in nghttp2_option_set_no_http_messaging()
63 uint32_t val) { in nghttp2_option_set_max_reserved_remote_streams()
98 void nghttp2_option_set_no_auto_ping_ack(nghttp2_option *option, int val) { in nghttp2_option_set_no_auto_ping_ack()
104 size_t val) { in nghttp2_option_set_max_send_header_block_length()
110 size_t val) { in nghttp2_option_set_max_deflate_dynamic_table_size()
115 void nghttp2_option_set_no_closed_streams(nghttp2_option *option, int val) { in nghttp2_option_set_no_closed_streams()
120 void nghttp2_option_set_max_outbound_ack(nghttp2_option *option, size_t val) { in nghttp2_option_set_max_outbound_ack()
[all …]
/third_party/nghttp2/lib/
Dnghttp2_option.c41 void nghttp2_option_set_no_auto_window_update(nghttp2_option *option, int val) { in nghttp2_option_set_no_auto_window_update()
47 uint32_t val) { in nghttp2_option_set_peer_max_concurrent_streams()
52 void nghttp2_option_set_no_recv_client_magic(nghttp2_option *option, int val) { in nghttp2_option_set_no_recv_client_magic()
57 void nghttp2_option_set_no_http_messaging(nghttp2_option *option, int val) { in nghttp2_option_set_no_http_messaging()
63 uint32_t val) { in nghttp2_option_set_max_reserved_remote_streams()
98 void nghttp2_option_set_no_auto_ping_ack(nghttp2_option *option, int val) { in nghttp2_option_set_no_auto_ping_ack()
104 size_t val) { in nghttp2_option_set_max_send_header_block_length()
110 size_t val) { in nghttp2_option_set_max_deflate_dynamic_table_size()
115 void nghttp2_option_set_no_closed_streams(nghttp2_option *option, int val) { in nghttp2_option_set_no_closed_streams()
120 void nghttp2_option_set_max_outbound_ack(nghttp2_option *option, size_t val) { in nghttp2_option_set_max_outbound_ack()
[all …]
/third_party/cef/libcef_dll/cpptoc/test/
Dtranslator_test_cpptoc.cc160 int val) { in translator_test_set_bool()
178 int val) { in translator_test_set_int()
195 double val) { in translator_test_set_double()
212 long val) { in translator_test_set_long()
229 size_t val) { in translator_test_set_sizet()
248 int const* val) { in translator_test_set_int_list()
280 int* val) { in translator_test_get_int_list_by_ref()
353 const cef_string_t* val) { in translator_test_set_string()
375 cef_string_t* val) { in translator_test_get_string_by_ref()
397 cef_string_list_t val) { in translator_test_set_string_list()
[all …]
/third_party/cef/libcef_dll/ctocpp/test/
Dtranslator_test_ctocpp.cc154 NO_SANITIZE("cfi-icall") bool CefTranslatorTestCToCpp::SetBool(bool val) { in SetBool()
170 NO_SANITIZE("cfi-icall") bool CefTranslatorTestCToCpp::SetInt(int val) { in SetInt()
186 NO_SANITIZE("cfi-icall") bool CefTranslatorTestCToCpp::SetDouble(double val) { in SetDouble()
202 NO_SANITIZE("cfi-icall") bool CefTranslatorTestCToCpp::SetLong(long val) { in SetLong()
218 NO_SANITIZE("cfi-icall") bool CefTranslatorTestCToCpp::SetSizet(size_t val) { in SetSizet()
235 bool CefTranslatorTestCToCpp::SetIntList(const std::vector<int>& val) { in SetIntList()
269 bool CefTranslatorTestCToCpp::GetIntListByRef(IntList& val) { in GetIntListByRef()
346 bool CefTranslatorTestCToCpp::SetString(const CefString& val) { in SetString()
368 void CefTranslatorTestCToCpp::GetStringByRef(CefString& val) { in GetStringByRef()
382 bool CefTranslatorTestCToCpp::SetStringList(const std::vector<CefString>& val) { in SetStringList()
[all …]
/third_party/boost/libs/optional/test/
Dtestable_classes.hpp21 int& val() { return val_; } in val() function
22 const int& val() const { return val_; } in val() function
45 int& val() { return val_; } in val() function
46 const int& val() const { return val_; } in val() function
85 int& val(int& i) { return i; } in val() function
86 int& val(Abstract& a) { return a.val(); } in val() function
87 int& val(Impl& a) { return a.val(); } in val() function
88 int& val(ScopeGuard& g) { return g.val(); } in val() function
89 template <typename T> int& val(T& o) { return *o; } in val() function
91 const int& val(const int& i) { return i; } in val() function
[all …]
/third_party/boost/boost/range/algorithm/
Dupper_bound.hpp35 upper_bound( ForwardRange& rng, const Value& val ) in upper_bound()
44 upper_bound( const ForwardRange& rng, const Value& val ) in upper_bound()
56 upper_bound( ForwardRange& rng, const Value& val, SortPredicate pred ) in upper_bound()
65 upper_bound( const ForwardRange& rng, const Value& val, SortPredicate pred ) in upper_bound()
77 upper_bound( ForwardRange& rng, const Value& val ) in upper_bound()
88 upper_bound( const ForwardRange& rng, const Value& val ) in upper_bound()
103 upper_bound( ForwardRange& rng, const Value& val, SortPredicate pred ) in upper_bound()
115 upper_bound( const ForwardRange& rng, const Value& val, SortPredicate pred ) in upper_bound()
Dlower_bound.hpp34 lower_bound( ForwardRange& rng, const Value& val ) in lower_bound()
43 lower_bound( const ForwardRange& rng, const Value& val ) in lower_bound()
55 lower_bound( ForwardRange& rng, const Value& val, SortPredicate pred ) in lower_bound()
64 lower_bound( const ForwardRange& rng, const Value& val, SortPredicate pred ) in lower_bound()
76 lower_bound( ForwardRange& rng, const Value& val ) in lower_bound()
87 lower_bound( const ForwardRange& rng, const Value& val ) in lower_bound()
101 lower_bound( ForwardRange& rng, const Value& val, SortPredicate pred ) in lower_bound()
112 lower_bound( const ForwardRange& rng, const Value& val, SortPredicate pred ) in lower_bound()
/third_party/uboot/u-boot-2020.01/arch/x86/include/asm/
Dcontrol_regs.h24 unsigned long val; in read_cr0() local
30 static inline void write_cr0(unsigned long val) in write_cr0()
37 unsigned long val; in read_cr2() local
45 unsigned long val; in read_cr3() local
53 unsigned long val; in read_cr4() local
61 unsigned long val = 0; /* Damn you, gcc! */ in get_debugreg() local
/third_party/uboot/u-boot-2020.01/arch/sh/include/asm/
Dunaligned-sh4a.h96 static inline void __put_le16_noalign(u8 *p, u16 val) in __put_le16_noalign()
102 static inline void __put_le32_noalign(u8 *p, u32 val) in __put_le32_noalign()
108 static inline void __put_le64_noalign(u8 *p, u64 val) in __put_le64_noalign()
114 static inline void __put_be16_noalign(u8 *p, u16 val) in __put_be16_noalign()
120 static inline void __put_be32_noalign(u8 *p, u32 val) in __put_be32_noalign()
126 static inline void __put_be64_noalign(u8 *p, u64 val) in __put_be64_noalign()
132 static inline void put_unaligned_le16(u16 val, void *p) in put_unaligned_le16()
141 static inline void put_unaligned_le32(u32 val, void *p) in put_unaligned_le32()
150 static inline void put_unaligned_le64(u64 val, void *p) in put_unaligned_le64()
159 static inline void put_unaligned_be16(u16 val, void *p) in put_unaligned_be16()
[all …]
/third_party/ltp/testcases/realtime/include/
Dlibtsc.h40 #define rdtscll(val) __asm__ __volatile__("rdtsc" : "=A" (val)) argument
42 #define rdtscll(val) \ argument
50 #define rdtscll(val) \ argument
55 #define rdtscll(val) \ argument
69 #define rdtscll(val) do { } while (0) argument
/third_party/uboot/u-boot-2020.01/drivers/bios_emulator/
Dbesys.c143 u8 val = readb_le(BE_memaddr(addr)); in BE_rdb() local
165 u16 val = readw_le(base); in BE_rdw() local
187 u32 val = readl_le(base); in BE_rdl() local
201 void X86API BE_wrb(u32 addr, u8 val) in BE_wrb()
217 void X86API BE_wrw(u32 addr, u16 val) in BE_wrw()
235 void X86API BE_wrl(u32 addr, u32 val) in BE_wrl()
269 u8 val = 0xff; in VGA_inpb() local
343 static void VGA_outpb (int port, u8 val) in VGA_outpb()
532 static void PCI_outp(int port, u32 val, int type) in PCI_outp()
572 u8 val = 0; in BE_inb() local
[all …]

12345678910>>...193