Home
last modified time | relevance | path

Searched refs:value (Results 9751 - 9775 of 29204) sorted by relevance

1...<<391392393394395396397398399400>>...1169

/third_party/python/Python/
H A Dformatter_unicode.c765 format_string_internal(PyObject *value, const InternalFormatSpec *format, in format_string_internal() argument
775 assert(PyUnicode_IS_READY(value)); in format_string_internal()
776 len = PyUnicode_GET_LENGTH(value); in format_string_internal()
818 return _PyUnicodeWriter_WriteStr(writer, value); in format_string_internal()
832 if (PyUnicode_MAX_CHAR_VALUE(value) > maxchar) { in format_string_internal()
833 Py_UCS4 valmaxchar = _PyUnicode_FindMaxChar(value, 0, len); in format_string_internal()
849 value, 0, len); in format_string_internal()
864 format_long_internal(PyObject *value, const InternalFormatSpec *format, in format_long_internal() argument
919 x = PyLong_AsLong(value); in format_long_internal()
972 && PyLong_CheckExact(value)) in format_long_internal()
1042 format_float_internal(PyObject *value, const InternalFormatSpec *format, _PyUnicodeWriter *writer) format_float_internal() argument
1191 format_complex_internal(PyObject *value, const InternalFormatSpec *format, _PyUnicodeWriter *writer) format_complex_internal() argument
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dwell_known_types_test.py333 (r'Invalid timezone offset value: \+08.'),
344 'date value out of range',
790 for key, value in struct.items():
793 self.assertEqual(value, struct2[key])
878 for value in [1, 'a', [1], ['a'], {'a': 'b'}]:
879 s1['x'] = value
938 msg.value.Pack(all_types)
939 self.assertEqual(msg.value.type_url,
941 self.assertEqual(msg.value.value,
[all...]
/third_party/selinux/libsepol/src/
H A Dpolicydb_validate.c88 int value_isvalid(uint32_t value, uint32_t nprim) in value_isvalid() argument
90 if (!value || value > nprim) in value_isvalid()
96 static int validate_value(uint32_t value, const validate_t *flavor) in validate_value() argument
98 if (!value || value > flavor->nprim) in validate_value()
100 if (ebitmap_get_bit(&flavor->gaps, value-1)) in validate_value()
349 if (validate_value(common->s.value, &flavors[SYM_COMMONS])) in validate_common_datum()
370 if (validate_value(class->s.value, &flavors[SYM_CLASSES])) in validate_class_datum()
438 if (validate_value(role->s.value, in validate_role_datum()
471 validate_simpletype(uint32_t value, const policydb_t *p, validate_t flavors[]) validate_simpletype() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/common/spirv/
H A Dspirv_instruction_builder_autogen.h92 LiteralContextDependentNumber value);
103 LiteralContextDependentNumber value);
329 void WriteQuantizeToF16(Blob *blob, IdResultType idResultType, IdResult idResult, IdRef value);
679 IdRef value);
686 IdRef value);
694 IdRef value,
714 IdRef value);
721 IdRef value);
728 IdRef value);
735 IdRef value);
[all...]
H A Dspirv_instruction_parser_autogen.h112 LiteralContextDependentNumber *value);
129 LiteralContextDependentNumber *value);
400 IdRef *value);
810 IdRef *value);
817 IdRef *value);
825 IdRef *value,
845 IdRef *value);
852 IdRef *value);
859 IdRef *value);
866 IdRef *value);
[all...]
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dmacro-assembler-riscv64.cc139 // Clobbers object, dst, value, and ra, if (ra_status == kRAHasBeenSaved)
143 Register value, RAStatus ra_status, in RecordWriteField()
147 DCHECK(!AreAliased(object, value)); in RecordWriteField()
154 JumpIfSmi(value, &done); in RecordWriteField()
165 DCHECK(!AreAliased(object, value, scratch)); in RecordWriteField()
173 RecordWrite(object, Operand(offset - kHeapObjectTag), value, ra_status, in RecordWriteField()
267 // Clobbers object, address, value, and ra, if (ra_status == kRAHasBeenSaved)
271 Register value, RAStatus ra_status, in RecordWrite()
275 DCHECK(!AreAliased(object, value)); in RecordWrite()
280 DCHECK(!AreAliased(object, value, tem in RecordWrite()
142 RecordWriteField(Register object, int offset, Register value, RAStatus ra_status, SaveFPRegsMode save_fp, RememberedSetAction remembered_set_action, SmiCheck smi_check) RecordWriteField() argument
270 RecordWrite(Register object, Operand offset, Register value, RAStatus ra_status, SaveFPRegsMode fp_mode, RememberedSetAction remembered_set_action, SmiCheck smi_check) RecordWrite() argument
1251 AlignedStoreHelper(Reg_T value, const MemOperand& rs, Func generator) AlignedStoreHelper() argument
1553 li(Register dst, Handle<HeapObject> value, RelocInfo::Mode rmode) li() argument
1571 li(Register dst, ExternalReference value, LiFlags mode) li() argument
1587 InstrCountForLiLower32Bit(int64_t value) InstrCountForLiLower32Bit() argument
1596 InstrCountForLi64Bit(int64_t value) InstrCountForLi64Bit() argument
2701 Register value = temps.Acquire(); Popcnt32() local
2737 Register value = temps.Acquire(); Popcnt64() local
3295 JumpIfIsInRange(Register value, unsigned lower_limit, unsigned higher_limit, Label* on_in_range) JumpIfIsInRange() argument
4200 EmitIncrementCounter(StatsCounter* counter, int value, Register scratch1, Register scratch2) EmitIncrementCounter() argument
4216 EmitDecrementCounter(StatsCounter* counter, int value, Register scratch1, Register scratch2) EmitDecrementCounter() argument
4558 JumpIfSmi(Register value, Label* smi_label) JumpIfSmi() argument
4567 JumpIfNotSmi(Register value, Label* not_smi_label) JumpIfNotSmi() argument
5086 StoreTaggedField(const Register& value, const MemOperand& dst_field_operand) StoreTaggedField() argument
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dwasm-objects.cc26 #include "src/wasm/value-type.h"
33 #include "src/wasm/wasm-value.h"
300 Smi::cast(dispatch_tables->get(i + kDispatchTableIndexOffset)).value(); in Grow()
453 int function_index = Smi::cast(tuple->value2()).value(); in Get()
503 Smi::cast(dispatch_tables.get(i + kDispatchTableIndexOffset)).value(); in UpdateDispatchTables()
539 Smi::cast(dispatch_tables->get(i + kDispatchTableIndexOffset)).value(); in UpdateDispatchTables()
578 Smi::cast(dispatch_tables->get(i + kDispatchTableIndexOffset)).value(); in UpdateDispatchTables()
622 Smi::cast(dispatch_tables->get(i + kDispatchTableIndexOffset)).value(); in ClearDispatchTables()
681 *function_index = Smi::cast(tuple->value2()).value(); in GetFunctionTableEntry()
964 size_t new_pages = result_inplace.value() in Grow()
1122 Object value = object_ref(); maybe_callable() local
1737 EncodeI32ExceptionValue(Handle<FixedArray> encoded_values, uint32_t* encoded_index, uint32_t value) EncodeI32ExceptionValue() argument
1743 EncodeI64ExceptionValue(Handle<FixedArray> encoded_values, uint32_t* encoded_index, uint64_t value) EncodeI64ExceptionValue() argument
1751 DecodeI32ExceptionValue(Handle<FixedArray> encoded_values, uint32_t* encoded_index, uint32_t* value) DecodeI32ExceptionValue() argument
1758 DecodeI64ExceptionValue(Handle<FixedArray> encoded_values, uint32_t* encoded_index, uint64_t* value) DecodeI64ExceptionValue() argument
2258 TypecheckJSObject(Isolate* isolate, const WasmModule* module, Handle<Object> value, ValueType expected, const char** error_message) TypecheckJSObject() argument
[all...]
/third_party/node/deps/v8/src/wasm/baseline/arm64/
H A Dliftoff-assembler-arm64.h252 // This is the previous stack pointer value (before we push the lr and the in PrepareTailCall()
408 void LiftoffAssembler::LoadConstant(LiftoffRegister reg, WasmValue value, in LoadConstant() argument
410 switch (value.type().kind()) { in LoadConstant()
412 Mov(reg.gp().W(), Immediate(value.to_i32(), rmode)); in LoadConstant()
415 Mov(reg.gp().X(), Immediate(value.to_i64(), rmode)); in LoadConstant()
418 Fmov(reg.fp().S(), value.to_f32_boxed().get_scalar()); in LoadConstant()
421 Fmov(reg.fp().D(), value.to_f64_boxed().get_scalar()); in LoadConstant()
538 switch (type.value()) { in Load()
589 switch (type.value()) { in Store()
637 LiftoffRegister value, LiftoffRegiste in AtomicBinop()
635 AtomicBinop(LiftoffAssembler* lasm, Register dst_addr, Register offset_reg, uintptr_t offset_imm, LiftoffRegister value, LiftoffRegister result, StoreType type, Binop op) AtomicBinop() argument
778 AtomicAdd(Register dst_addr, Register offset_reg, uintptr_t offset_imm, LiftoffRegister value, LiftoffRegister result, StoreType type) AtomicAdd() argument
785 AtomicSub(Register dst_addr, Register offset_reg, uintptr_t offset_imm, LiftoffRegister value, LiftoffRegister result, StoreType type) AtomicSub() argument
792 AtomicAnd(Register dst_addr, Register offset_reg, uintptr_t offset_imm, LiftoffRegister value, LiftoffRegister result, StoreType type) AtomicAnd() argument
799 AtomicOr(Register dst_addr, Register offset_reg, uintptr_t offset_imm, LiftoffRegister value, LiftoffRegister result, StoreType type) AtomicOr() argument
806 AtomicXor(Register dst_addr, Register offset_reg, uintptr_t offset_imm, LiftoffRegister value, LiftoffRegister result, StoreType type) AtomicXor() argument
813 AtomicExchange(Register dst_addr, Register offset_reg, uintptr_t offset_imm, LiftoffRegister value, LiftoffRegister result, StoreType type) AtomicExchange() argument
938 Spill(int offset, WasmValue value) Spill() argument
1597 emit_i32_subi_jump_negative(Register value, int subtrahend, Label* result_negative) emit_i32_subi_jump_negative() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DContext_gl.cpp681 void Context::accum(GLenum op, GLfloat value) in accum() argument
2118 void Context::vertexAttribP1ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) in vertexAttribP1ui() argument
2126 const GLuint *value) in vertexAttribP1uiv()
2131 void Context::vertexAttribP2ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) in vertexAttribP2ui() argument
2139 const GLuint *value) in vertexAttribP2uiv()
2144 void Context::vertexAttribP3ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) in vertexAttribP3ui() argument
2152 const GLuint *value) in vertexAttribP3uiv()
2157 void Context::vertexAttribP4ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) in vertexAttribP4ui() argument
2165 const GLuint *value) in vertexAttribP4uiv()
2170 void Context::vertexP2ui(GLenum type, GLuint value) in vertexP2ui() argument
2123 vertexAttribP1uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) vertexAttribP1uiv() argument
2136 vertexAttribP2uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) vertexAttribP2uiv() argument
2149 vertexAttribP3uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) vertexAttribP3uiv() argument
2162 vertexAttribP4uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) vertexAttribP4uiv() argument
2175 vertexP2uiv(GLenum type, const GLuint *value) vertexP2uiv() argument
2180 vertexP3ui(GLenum type, GLuint value) vertexP3ui() argument
2185 vertexP3uiv(GLenum type, const GLuint *value) vertexP3uiv() argument
2190 vertexP4ui(GLenum type, GLuint value) vertexP4ui() argument
2195 vertexP4uiv(GLenum type, const GLuint *value) vertexP4uiv() argument
2296 uniform1dv(UniformLocation location, GLsizei count, const GLdouble *value) uniform1dv() argument
2306 uniform2dv(UniformLocation location, GLsizei count, const GLdouble *value) uniform2dv() argument
2316 uniform3dv(UniformLocation location, GLsizei count, const GLdouble *value) uniform3dv() argument
2326 uniform4dv(UniformLocation location, GLsizei count, const GLdouble *value) uniform4dv() argument
2331 uniformMatrix2dv(UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) uniformMatrix2dv() argument
2339 uniformMatrix2x3dv(UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) uniformMatrix2x3dv() argument
2347 uniformMatrix2x4dv(UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) uniformMatrix2x4dv() argument
2355 uniformMatrix3dv(UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) uniformMatrix3dv() argument
2363 uniformMatrix3x2dv(UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) uniformMatrix3x2dv() argument
2371 uniformMatrix3x4dv(UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) uniformMatrix3x4dv() argument
2379 uniformMatrix4dv(UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) uniformMatrix4dv() argument
2387 uniformMatrix4x2dv(UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) uniformMatrix4x2dv() argument
2395 uniformMatrix4x3dv(UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) uniformMatrix4x3dv() argument
2438 programUniform1dv(ShaderProgramID program, UniformLocation location, GLsizei count, const GLdouble *value) programUniform1dv() argument
2454 programUniform2dv(ShaderProgramID program, UniformLocation location, GLsizei count, const GLdouble *value) programUniform2dv() argument
2471 programUniform3dv(ShaderProgramID program, UniformLocation location, GLsizei count, const GLdouble *value) programUniform3dv() argument
2489 programUniform4dv(ShaderProgramID program, UniformLocation location, GLsizei count, const GLdouble *value) programUniform4dv() argument
2497 programUniformMatrix2dv(ShaderProgramID program, UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) programUniformMatrix2dv() argument
2506 programUniformMatrix2x3dv(ShaderProgramID program, UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) programUniformMatrix2x3dv() argument
2515 programUniformMatrix2x4dv(ShaderProgramID program, UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) programUniformMatrix2x4dv() argument
2524 programUniformMatrix3dv(ShaderProgramID program, UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) programUniformMatrix3dv() argument
2533 programUniformMatrix3x2dv(ShaderProgramID program, UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) programUniformMatrix3x2dv() argument
2542 programUniformMatrix3x4dv(ShaderProgramID program, UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) programUniformMatrix3x4dv() argument
2551 programUniformMatrix4dv(ShaderProgramID program, UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) programUniformMatrix4dv() argument
2560 programUniformMatrix4x2dv(ShaderProgramID program, UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) programUniformMatrix4x2dv() argument
2569 programUniformMatrix4x3dv(ShaderProgramID program, UniformLocation location, GLsizei count, GLboolean transpose, const GLdouble *value) programUniformMatrix4x3dv() argument
2892 clearNamedFramebufferfv(FramebufferID framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value) clearNamedFramebufferfv() argument
2900 clearNamedFramebufferiv(FramebufferID framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value) clearNamedFramebufferiv() argument
2908 clearNamedFramebufferuiv(FramebufferID framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value) clearNamedFramebufferuiv() argument
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-layout-gsubgpos.hh403 typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data);
817 typedef bool (*intersects_func_t) (const hb_set_t *glyphs, const HBUINT16 &value, const void *data);
818 typedef void (*intersected_glyphs_func_t) (const hb_set_t *glyphs, const void *data, unsigned value, hb_set_t *intersected_glyphs);
819 typedef void (*collect_glyphs_func_t) (hb_set_t *glyphs, const HBUINT16 &value, const void *data);
820 typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data);
837 static inline bool intersects_glyph (const hb_set_t *glyphs, const HBUINT16 &value, const void *data HB_UNUSED) in intersects_glyph() argument
839 return glyphs->has (value); in intersects_glyph()
841 static inline bool intersects_class (const hb_set_t *glyphs, const HBUINT16 &value, const void *data) in intersects_class() argument
844 return class_def.intersects_class (glyphs, value); in intersects_class()
846 static inline bool intersects_coverage (const hb_set_t *glyphs, const HBUINT16 &value, cons in intersects_class() argument
853 intersected_glyph(const hb_set_t *glyphs HB_UNUSED, const void *data, unsigned value, hb_set_t *intersected_glyphs) intersected_glyph() argument
858 intersected_class_glyphs(const hb_set_t *glyphs, const void *data, unsigned value, hb_set_t *intersected_glyphs) intersected_class_glyphs() argument
863 intersected_coverage_glyphs(const hb_set_t *glyphs, const void *data, unsigned value, hb_set_t *intersected_glyphs) intersected_coverage_glyphs() argument
883 collect_glyph(hb_set_t *glyphs, const HBUINT16 &value, const void *data HB_UNUSED) collect_glyph() argument
887 collect_class(hb_set_t *glyphs, const HBUINT16 &value, const void *data) collect_class() argument
892 collect_coverage(hb_set_t *glyphs, const HBUINT16 &value, const void *data) collect_coverage() argument
911 match_glyph(hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data HB_UNUSED) match_glyph() argument
915 match_class(hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data) match_class() argument
920 match_coverage(hb_codepoint_t glyph_id, const HBUINT16 &value, const void *data) match_coverage() argument
1267 context_closure_recurse_lookups(hb_closure_context_t *c, unsigned inputCount, const HBUINT16 input[], unsigned lookupCount, const LookupRecord lookupRecord[] , unsigned value, ContextFormat context_format, const void *data, intersected_glyphs_func_t intersected_glyphs_func) context_closure_recurse_lookups() argument
1498 context_closure_lookup(hb_closure_context_t *c, unsigned int inputCount, const HBUINT16 input[], unsigned int lookupCount, const LookupRecord lookupRecord[], unsigned value, ContextClosureLookupContext &lookup_context) context_closure_lookup() argument
1702 closure(hb_closure_context_t *c, unsigned value, ContextClosureLookupContext &lookup_context) const closure() argument
[all...]
/kernel/linux/linux-6.6/kernel/bpf/
H A Dsyscall.c146 * that could be running use the new map value. in maybe_wait_bpf_programs()
154 void *key, void *value, __u64 flags) in bpf_map_update_value()
160 return bpf_map_offload_update_elem(map, key, value, flags); in bpf_map_update_value()
163 return map->ops->map_update_elem(map, key, value, flags); in bpf_map_update_value()
166 return sock_map_update_elem_sys(map, key, value, flags); in bpf_map_update_value()
168 return bpf_fd_array_map_update_elem(map, map_file, key, value, in bpf_map_update_value()
175 err = bpf_percpu_hash_update(map, key, value, flags); in bpf_map_update_value()
177 err = bpf_percpu_array_update(map, key, value, flags); in bpf_map_update_value()
179 err = bpf_percpu_cgroup_storage_update(map, key, value, in bpf_map_update_value()
183 err = bpf_fd_array_map_update_elem(map, map_file, key, value, in bpf_map_update_value()
153 bpf_map_update_value(struct bpf_map *map, struct file *map_file, void *key, void *value, __u64 flags) bpf_map_update_value() argument
210 bpf_map_copy_value(struct bpf_map *map, void *key, void *value, __u64 flags) bpf_map_copy_value() argument
1401 bpf_stackmap_copy(struct bpf_map *map, void *key, void *value) bpf_stackmap_copy() argument
1437 void *key, *value; map_lookup_elem() local
1512 void *key, *value; map_update_elem() local
1745 void *key, *value; generic_map_update_batch() local
1808 void *buf, *buf_prevkey, *prev_key, *key, *value; generic_map_lookup_batch() local
1908 void *key, *value; map_lookup_and_delete_elem() local
[all...]
/kernel/linux/linux-5.10/drivers/infiniband/hw/efa/
H A Defa_verbs.c1928 stats->value[EFA_TX_BYTES] = bs->tx_bytes; in efa_get_hw_stats()
1929 stats->value[EFA_TX_PKTS] = bs->tx_pkts; in efa_get_hw_stats()
1930 stats->value[EFA_RX_BYTES] = bs->rx_bytes; in efa_get_hw_stats()
1931 stats->value[EFA_RX_PKTS] = bs->rx_pkts; in efa_get_hw_stats()
1932 stats->value[EFA_RX_DROPS] = bs->rx_drops; in efa_get_hw_stats()
1940 stats->value[EFA_SEND_BYTES] = ms->send_bytes; in efa_get_hw_stats()
1941 stats->value[EFA_SEND_WRS] = ms->send_wrs; in efa_get_hw_stats()
1942 stats->value[EFA_RECV_BYTES] = ms->recv_bytes; in efa_get_hw_stats()
1943 stats->value[EFA_RECV_WRS] = ms->recv_wrs; in efa_get_hw_stats()
1951 stats->value[EFA_RDMA_READ_WR in efa_get_hw_stats()
[all...]
/kernel/linux/linux-5.10/drivers/usb/gadget/udc/
H A Dgr_udc.c55 /* USB speed and corresponding string calculated from status register value */
60 /* Size of hardware buffer calculated from epctrl register value */
105 u16 value, u16 index, u16 length) in gr_dbgprint_devreq()
108 type, request, value, index, length); in gr_dbgprint_devreq()
116 u16 value, u16 index, u16 length) {} in gr_dbgprint_devreq()
749 static inline void gr_set_ep0state(struct gr_udc *dev, enum gr_ep0state value) in gr_set_ep0state() argument
751 if (dev->ep0state != value) in gr_set_ep0state()
753 gr_ep0state_string(value)); in gr_set_ep0state()
754 dev->ep0state = value; in gr_set_ep0state()
887 u16 value, u1 in gr_device_request()
104 gr_dbgprint_devreq(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index, u16 length) gr_dbgprint_devreq() argument
115 gr_dbgprint_devreq(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index, u16 length) gr_dbgprint_devreq() argument
886 gr_device_request(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index) gr_device_request() argument
944 gr_interface_request(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index) gr_interface_request() argument
978 gr_endpoint_request(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index) gr_endpoint_request() argument
1052 u16 value; global() variable
[all...]
/kernel/linux/linux-5.10/tools/lib/traceevent/
H A Dparse-filter.c211 if (arg->value.type == TEP_FILTER_STRING || in free_arg()
212 arg->value.type == TEP_FILTER_CHAR) in free_arg()
213 free(arg->value.str); in free_arg()
349 arg->value.type = in create_arg_item()
351 arg->value.str = strdup(token); in create_arg_item()
352 if (!arg->value.str) { in create_arg_item()
362 arg->value.type = TEP_FILTER_NUMBER; in create_arg_item()
363 arg->value.val = strtoull(token, NULL, 0); in create_arg_item()
377 arg->boolean.value = TEP_FILTER_FALSE; in create_arg_item()
386 show_error(error_str, "expected a value bu in create_arg_item()
[all...]
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/i2c/ov5693/
H A Datomisp-ov5693.c50 * The DS specifies a much lower value but when using a smaller value
53 * delay value to a lower value when insmod.
705 /* we should not accept the invalid value below */ in ov5693_s_exposure()
709 v4l2_err(client, "%s: invalid value\n", __func__); in ov5693_s_exposure()
864 /* Correct read_size value only if bigger than maximum */ in ov5693_g_priv_int_data()
901 static int ov5693_q_exposure(struct v4l2_subdev *sd, s32 *value) in ov5693_q_exposure() argument
927 *value = reg_v + (((u32)reg_v2 << 16)); in ov5693_q_exposure()
962 static int ad5823_t_focus_abs(struct v4l2_subdev *sd, s32 value) in ad5823_t_focus_abs() argument
968 ov5693_t_focus_abs(struct v4l2_subdev *sd, s32 value) ov5693_t_focus_abs() argument
1005 ov5693_t_focus_rel(struct v4l2_subdev *sd, s32 value) ov5693_t_focus_rel() argument
1014 ov5693_q_focus_status(struct v4l2_subdev *sd, s32 *value) ov5693_q_focus_status() argument
1037 ov5693_q_focus_abs(struct v4l2_subdev *sd, s32 *value) ov5693_q_focus_abs() argument
1052 ov5693_t_vcm_slew(struct v4l2_subdev *sd, s32 value) ov5693_t_vcm_slew() argument
1061 ov5693_t_vcm_timing(struct v4l2_subdev *sd, s32 value) ov5693_t_vcm_timing() argument
[all...]
/kernel/linux/linux-5.10/fs/fuse/
H A Ddir.c181 args->in_args[0].value = name->name; in fuse_lookup_init()
184 args->out_args[0].value = outarg; in fuse_lookup_init()
568 args.in_args[0].value = &inarg; in fuse_create_open()
570 args.in_args[1].value = entry->d_name.name; in fuse_create_open()
573 args.out_args[0].value = &outentry; in fuse_create_open()
575 args.out_args[1].value = &outopen; in fuse_create_open()
694 args->out_args[0].value = &outarg; in create_new_entry()
750 args.in_args[0].value = &inarg; in fuse_mknod()
752 args.in_args[1].value = entry->d_name.name; in fuse_mknod()
777 args.in_args[0].value in fuse_mkdir()
[all...]
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/i2c/ov5693/
H A Datomisp-ov5693.c50 * The DS specifies a much lower value but when using a smaller value
53 * delay value to a lower value when insmod.
588 /* we should not accept the invalid value below */ in ov5693_s_exposure()
592 v4l2_err(client, "%s: invalid value\n", __func__); in ov5693_s_exposure()
744 static int ov5693_q_exposure(struct v4l2_subdev *sd, s32 *value) in ov5693_q_exposure() argument
770 *value = reg_v + (((u32)reg_v2 << 16)); in ov5693_q_exposure()
805 static int ad5823_t_focus_abs(struct v4l2_subdev *sd, s32 value) in ad5823_t_focus_abs() argument
807 value in ad5823_t_focus_abs()
811 ov5693_t_focus_abs(struct v4l2_subdev *sd, s32 value) ov5693_t_focus_abs() argument
848 ov5693_t_focus_rel(struct v4l2_subdev *sd, s32 value) ov5693_t_focus_rel() argument
857 ov5693_q_focus_status(struct v4l2_subdev *sd, s32 *value) ov5693_q_focus_status() argument
880 ov5693_q_focus_abs(struct v4l2_subdev *sd, s32 *value) ov5693_q_focus_abs() argument
895 ov5693_t_vcm_slew(struct v4l2_subdev *sd, s32 value) ov5693_t_vcm_slew() argument
904 ov5693_t_vcm_timing(struct v4l2_subdev *sd, s32 value) ov5693_t_vcm_timing() argument
[all...]
/kernel/linux/linux-6.6/drivers/usb/gadget/udc/
H A Dgr_udc.c54 /* USB speed and corresponding string calculated from status register value */
59 /* Size of hardware buffer calculated from epctrl register value */
104 u16 value, u16 index, u16 length) in gr_dbgprint_devreq()
107 type, request, value, index, length); in gr_dbgprint_devreq()
115 u16 value, u16 index, u16 length) {} in gr_dbgprint_devreq()
749 static inline void gr_set_ep0state(struct gr_udc *dev, enum gr_ep0state value) in gr_set_ep0state() argument
751 if (dev->ep0state != value) in gr_set_ep0state()
753 gr_ep0state_string(value)); in gr_set_ep0state()
754 dev->ep0state = value; in gr_set_ep0state()
887 u16 value, u1 in gr_device_request()
103 gr_dbgprint_devreq(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index, u16 length) gr_dbgprint_devreq() argument
114 gr_dbgprint_devreq(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index, u16 length) gr_dbgprint_devreq() argument
886 gr_device_request(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index) gr_device_request() argument
944 gr_interface_request(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index) gr_interface_request() argument
978 gr_endpoint_request(struct gr_udc *dev, u8 type, u8 request, u16 value, u16 index) gr_endpoint_request() argument
1052 u16 value; global() variable
[all...]
/third_party/eudev/src/libudev/
H A Dlibudev-device.c42 static struct udev_list_entry *udev_device_add_property_internal(struct udev_device *udev_device, const char *key, const char *value);
367 static struct udev_list_entry *udev_device_add_property_internal(struct udev_device *udev_device, const char *key, const char *value) in udev_device_add_property_internal() argument
370 if (value == NULL) { in udev_device_add_property_internal()
379 return udev_list_entry_add(&udev_device->properties_list, key, value); in udev_device_add_property_internal()
383 int udev_device_add_property(struct udev_device *udev_device, const char *key, const char *value) in udev_device_add_property() argument
387 property = udev_device_add_property_internal(udev_device, key, value); in udev_device_add_property()
481 * called after adding properties, and its return value checked
579 * Get the value of a given property.
1121 * value, and fill in information from the sys device and the udev
1239 * Retrieve the kernel devpath value o
1466 char value[4096]; udev_device_get_sysattr_value() local
1546 udev_device_set_sysattr_value(struct udev_device *udev_device, const char *sysattr, char *value) udev_device_set_sysattr_value() argument
2094 const char *key, *value; udev_device_copy_properties() local
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dcompile-i386.c99 STOR_LABELSYM, /* label generated from symbol's pointer value */
134 long long value; member
365 static struct storage *get_reg_value(struct storage *value, struct regclass *class) in get_reg_value() argument
371 info = value->reg; in get_reg_value()
372 if (info && info->contains == value) { in get_reg_value()
378 emit_move(value, reg, value->ctype, "reload register"); in get_reg_value()
380 info->contains = value; in get_reg_value()
381 value->reg = info; in get_reg_value()
393 return 123456; /* intentionally bogus value */ in pseudo_offset()
555 new_val(long long value) new_val() argument
[all...]
/third_party/mesa3d/src/panfrost/bifrost/
H A Dbi_schedule.c30 /* Arguments common to worklist, passed by value for convenience */
65 * file and use a temporary passthrough for the value. Up to 2 such
242 add_dependency(last_write, ins->src[s].value + c, i, st.dependents, st.dep_counts); in bi_create_dependency_graph()
268 unsigned dest = ins->dest[d].value; in bi_create_dependency_graph()
296 mark_access(last_read, ins->src[s].value + c, i); in bi_create_dependency_graph()
398 pinstr->dest[0].value += 1; in bi_lower_seg_add()
810 bool no_other_fau = (fau == src.value) || !fau; in bi_update_fau()
815 tuple->fau = src.value; in bi_update_fau()
820 fau = src.value; in bi_update_fau()
823 if (src.value in bi_update_fau()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/
H A Dassembler_arm.h828 // Add signed immediate value to rd. May clobber IP.
829 void AddImmediate(Register rd, int32_t value, Condition cond = AL);
830 void AddImmediate(Register rd, Register rn, int32_t value,
832 void AddImmediateSetFlags(Register rd, Register rn, int32_t value,
834 void SubImmediateSetFlags(Register rd, Register rn, int32_t value,
841 // Compare rn with signed immediate value. May clobber IP.
842 void CompareImmediate(Register rn, int32_t value, Condition cond = AL);
853 void LoadPatchableImmediate(Register rd, int32_t value, Condition cond = AL);
854 void LoadDecodableImmediate(Register rd, int32_t value, Condition cond = AL);
855 void LoadImmediate(Register rd, int32_t value, Conditio
897 InitializeFieldNoBarrier(Register object, const Address &dest, Register value) InitializeFieldNoBarrier() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_embed.py546 # True means that the core config value is inverted (0 => 1 and 1 => 0)
583 key, value = opt.split('=', 1)
584 xoptions[key] = value
629 for key, value in config_value.items():
630 if isinstance(value, list):
631 value = value.copy()
632 config[key] = value
641 for key, value in expected_preconfig.items():
642 if value i
[all...]
/third_party/python/Modules/
H A Dselectmodule.c4 have any value except INVALID_SOCKET.
246 The return value is a tuple of three lists corresponding to the first three
429 PyObject *key, *value; in update_ufd_array() local
441 while (PyDict_Next(self->dict, &pos, &key, &value)) { in update_ufd_array()
445 self->ufds[i].events = (short)(unsigned short)PyLong_AsLong(value); in update_ufd_array()
469 PyObject *key, *value; in select_poll_register_impl() local
473 file descriptor, and the value is the event mask. */ in select_poll_register_impl()
477 value = PyLong_FromLong(eventmask); in select_poll_register_impl()
478 if (value == NULL) { in select_poll_register_impl()
482 err = PyDict_SetItem(self->dict, key, value); in select_poll_register_impl()
511 PyObject *key, *value; select_poll_modify_impl() local
599 PyObject *value = NULL, *num = NULL; select_poll_poll_impl() local
926 PyObject *value, *num1, *num2; select_devpoll_poll_impl() local
[all...]
/third_party/rust/crates/clap/clap_derive/src/
H A Ditem.rs333 if let Some(AttrValue::Call(_)) = &attr.value { in infer_kind()
340 if attr.value.is_some() { in infer_kind()
342 abort!(expr, "attribute `{}` does not accept a value", attr.name); in infer_kind()
352 Some(MagicAttrName::Subcommand) if attr.value.is_none() => { in infer_kind()
353 if attr.value.is_some() { in infer_kind()
355 abort!(expr, "attribute `{}` does not accept a value", attr.name); in infer_kind()
365 Some(MagicAttrName::ExternalSubcommand) if attr.value.is_none() => { in infer_kind()
366 if attr.value.is_some() { in infer_kind()
368 abort!(expr, "attribute `{}` does not accept a value", attr.name); in infer_kind()
373 Some(MagicAttrName::Flatten) if attr.value in infer_kind()
[all...]

Completed in 65 milliseconds

1...<<391392393394395396397398399400>>...1169