/third_party/gn/src/base/ |
D | values.cc | 425 bool Value::GetAsBoolean(bool* out_value) const { in GetAsBoolean() 426 if (out_value && is_bool()) { in GetAsBoolean() 427 *out_value = bool_value_; in GetAsBoolean() 433 bool Value::GetAsInteger(int* out_value) const { in GetAsInteger() 434 if (out_value && is_int()) { in GetAsInteger() 435 *out_value = int_value_; in GetAsInteger() 441 bool Value::GetAsString(std::string* out_value) const { in GetAsString() 442 if (out_value && is_string()) { in GetAsString() 443 *out_value = string_value_; in GetAsString() 449 bool Value::GetAsString(std::u16string* out_value) const { in GetAsString() [all …]
|
D | values.h | 303 bool GetAsBoolean(bool* out_value) const; 305 bool GetAsInteger(int* out_value) const; 307 bool GetAsString(std::string* out_value) const; 308 bool GetAsString(std::u16string* out_value) const; 309 bool GetAsString(const Value** out_value) const; 310 bool GetAsString(std::string_view* out_value) const; 313 bool GetAsList(ListValue** out_value); 314 bool GetAsList(const ListValue** out_value) const; 316 bool GetAsDictionary(DictionaryValue** out_value); 317 bool GetAsDictionary(const DictionaryValue** out_value) const; [all …]
|
/third_party/cef/libcef/common/ |
D | values_impl.cc | 960 absl::optional<base::Value> out_value = in RemoveInternal() local 962 if (!out_value.has_value()) { in RemoveInternal() 970 if (out_value->is_list() || out_value->is_dict()) { in RemoveInternal() 1151 const base::Value* out_value = nullptr; in GetType() local 1152 if (const_value().Get(index, &out_value)) { in GetType() 1153 switch (out_value->type()) { in GetType() 1179 const base::Value* out_value = nullptr; in GetValue() local 1180 if (const_value().Get(index, &out_value)) { in GetValue() 1182 const_cast<base::Value*>(out_value), in GetValue() 1193 const base::Value* out_value = nullptr; in GetBool() local [all …]
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
D | cayman_msaa.c | 83 unsigned sample_index, float *out_value) in cayman_get_sample_position() argument 92 out_value[0] = out_value[1] = 0.5; in cayman_get_sample_position() 97 out_value[0] = (float)(val.idx + 8) / 16.0f; in cayman_get_sample_position() 99 out_value[1] = (float)(val.idx + 8) / 16.0f; in cayman_get_sample_position() 104 out_value[0] = (float)(val.idx + 8) / 16.0f; in cayman_get_sample_position() 106 out_value[1] = (float)(val.idx + 8) / 16.0f; in cayman_get_sample_position() 112 out_value[0] = (float)(val.idx + 8) / 16.0f; in cayman_get_sample_position() 114 out_value[1] = (float)(val.idx + 8) / 16.0f; in cayman_get_sample_position() 120 out_value[0] = (float)(val.idx + 8) / 16.0f; in cayman_get_sample_position() 122 out_value[1] = (float)(val.idx + 8) / 16.0f; in cayman_get_sample_position()
|
D | r600_state.c | 1252 float *out_value) in r600_get_sample_position() argument 1261 out_value[0] = out_value[1] = 0.5; in r600_get_sample_position() 1266 out_value[0] = (float)(val.idx + 8) / 16.0f; in r600_get_sample_position() 1268 out_value[1] = (float)(val.idx + 8) / 16.0f; in r600_get_sample_position() 1273 out_value[0] = (float)(val.idx + 8) / 16.0f; in r600_get_sample_position() 1275 out_value[1] = (float)(val.idx + 8) / 16.0f; in r600_get_sample_position() 1281 out_value[0] = (float)(val.idx + 8) / 16.0f; in r600_get_sample_position() 1283 out_value[1] = (float)(val.idx + 8) / 16.0f; in r600_get_sample_position()
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl-no-opt/asm/frag/ |
D | scalar-select.spv14.asm.frag | 18 void spvSelectComposite(out _15 out_value, bool cond, _15 true_val, _15 false_val) 22 out_value = true_val; 26 out_value = false_val; 30 void spvSelectComposite(out float out_value[2], bool cond, float true_val[2], float false_val[2]) 34 out_value = true_val; 38 out_value = false_val;
|
/third_party/mesa3d/src/vulkan/overlay-layer/ |
D | overlay_params.c | 116 parse_string(const char *s, char *out_param, char *out_value) in parse_string() argument 128 for (; !is_delimiter(*s); s++, out_value++, i++) in parse_string() 129 *out_value = *s; in parse_string() 131 *(out_value++) = '1'; in parse_string() 132 *out_value = 0; in parse_string()
|
/third_party/gn/src/base/win/ |
D | registry.cc | 242 LONG RegKey::ReadValueDW(const char16_t* name, DWORD* out_value) const { in ReadValueDW() 243 DCHECK(out_value); in ReadValueDW() 250 *out_value = local_value; in ReadValueDW() 258 LONG RegKey::ReadInt64(const char16_t* name, int64_t* out_value) const { in ReadInt64() 259 DCHECK(out_value); in ReadInt64() 267 *out_value = local_value; in ReadInt64() 275 LONG RegKey::ReadValue(const char16_t* name, std::u16string* out_value) const { in ReadValue() 276 DCHECK(out_value); in ReadValue() 284 *out_value = raw_value; in ReadValue() 295 *out_value = expanded; in ReadValue()
|
D | registry.h | 88 LONG ReadValueDW(const char16_t* name, DWORD* out_value) const; 92 LONG ReadInt64(const char16_t* name, int64_t* out_value) const; 96 LONG ReadValue(const char16_t* name, std::u16string* out_value) const;
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_shader_gs.cpp | 264 auto out_value = value_factory().src_vec4(instr->src[0], pin_group, src_swz); in store_output() local 273 if (out_value[i + shift]->chan() < 4) { in store_output() 274 ir = new AluInstr(op1_mov, tmp[i + shift], out_value[i + shift], AluInstr::write); in store_output() 291 if ((write_mask & (1 << i)) && (out_value[i]->chan() != i)) { in store_output() 301 if (out_value[i]->chan() < 4) { in store_output() 302 ir = new AluInstr(op1_mov, tmp[i], out_value[i], AluInstr::write); in store_output() 311 …eamout_data[location] = new MemRingOutInstr(cf_mem_ring, MemRingOutInstr::mem_write_ind, out_value, in store_output()
|
D | sfn_shader_vs.cpp | 209 RegisterVec4 out_value = m_parent->value_factory().temp_vec4(pin_group, swizzle); in emit_varying_pos() local 218 auto alu = new AluInstr(op1_flt_to_int, out_value[1], clamped, AluInstr::last_write); in emit_varying_pos() 223 value = out_value; in emit_varying_pos()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_state_msaa.c | 123 unsigned sample_index, float *out_value) in si_get_sample_position() argument 146 out_value[0] = (GET_SX(sample_locs, sample_index) + 8) / 16.0f; in si_get_sample_position() 147 out_value[1] = (GET_SY(sample_locs, sample_index) + 8) / 16.0f; in si_get_sample_position()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
D | crocus_context.c | 152 float *out_value) in crocus_get_sample_position() argument 179 out_value[0] = u.a.x[sample_index]; in crocus_get_sample_position() 180 out_value[1] = u.a.y[sample_index]; in crocus_get_sample_position()
|
/third_party/mesa3d/include/android_stub/backtrace/ |
D | Backtrace.h | 148 virtual bool ReadWord(uint64_t ptr, word_t* out_value) = 0; 196 virtual bool VerifyReadWordArgs(uint64_t ptr, word_t* out_value);
|
/third_party/mbedtls/tests/suites/ |
D | main_test.function | 68 * \param out_value Pointer to int to hold the integer. 72 int get_expression( int32_t exp_id, int32_t * out_value ) 77 (void) out_value;
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
D | iris_context.c | 142 float *out_value) in iris_get_sample_position() argument 169 out_value[0] = u.a.x[sample_index]; in iris_get_sample_position() 170 out_value[1] = u.a.y[sample_index]; in iris_get_sample_position()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_surface.c | 259 float *out_value) in llvmpipe_get_sample_position() argument 263 out_value[0] = lp_sample_pos_4x[sample_index][0]; in llvmpipe_get_sample_position() 264 out_value[1] = lp_sample_pos_4x[sample_index][1]; in llvmpipe_get_sample_position()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cCopyImageTests.cpp | 123 …hannel(glw::GLenum type, glw::GLuint channel, const glw::GLubyte* pixel, glw::GLdouble& out_value); 1650 void readBaseTypeFromUnsignedChannel(GLuint channel, const GLubyte* pixel, GLdouble& out_value) in readBaseTypeFromUnsignedChannel() argument 1659 out_value = d_value / d_max; in readBaseTypeFromUnsignedChannel() 1671 void readBaseTypeFromSignedChannel(GLuint channel, const GLubyte* pixel, GLdouble& out_value) in readBaseTypeFromSignedChannel() argument 1682 out_value = d_value / d_max; in readBaseTypeFromSignedChannel() 1693 void readBaseTypeFromFloatChannel(GLuint channel, const GLubyte* pixel, GLdouble& out_value) in readBaseTypeFromFloatChannel() argument 1699 out_value = d_value; in readBaseTypeFromFloatChannel() 1710 void readBaseTypeFromHalfFloatChannel(GLuint channel, const GLubyte* pixel, GLdouble& out_value) in readBaseTypeFromHalfFloatChannel() argument 1717 out_value = d_value; in readBaseTypeFromHalfFloatChannel() 1736 void read3Channel(GLuint channel, const GLubyte* pixel, GLdouble& out_value) in read3Channel() argument [all …]
|
/third_party/mesa3d/src/gallium/drivers/virgl/ |
D | virgl_context.c | 1508 float *out_value) in virgl_get_sample_position() argument 1524 out_value[0] = out_value[1] = 0.5f; in virgl_get_sample_position() 1535 out_value[0] = ((bits >> 4) & 0xf) / 16.0f; in virgl_get_sample_position() 1536 out_value[1] = (bits & 0xf) / 16.0f; in virgl_get_sample_position() 1540 index, sample_count, out_value[0], out_value[1]); in virgl_get_sample_position()
|
/third_party/gn/src/gn/ |
D | parse_tree.cc | 234 void ParseNode::AddCommentsJSONNodes(base::Value* out_value) const { in AddCommentsJSONNodes() 240 out_value->SetKey(kJsonBeforeComment, std::move(comment_values)); in AddCommentsJSONNodes() 246 out_value->SetKey(kJsonSuffixComment, std::move(comment_values)); in AddCommentsJSONNodes() 252 out_value->SetKey(kJsonAfterComment, std::move(comment_values)); in AddCommentsJSONNodes()
|
/third_party/protobuf/python/google/protobuf/ |
D | text_format.py | 614 out_value = value.encode('utf-8') 616 out_value = value 622 out.write(text_encoding.CEscape(out_value, out_as_utf8))
|
/third_party/mesa3d/src/gallium/include/pipe/ |
D | p_context.h | 1013 float *out_value);
|
/third_party/mesa3d/src/gallium/auxiliary/driver_noop/ |
D | noop_state.c | 369 float *out_value) in noop_get_sample_position() argument
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_context.c | 1016 float *out_value) in zink_get_sample_position() argument 1025 out_value[0] = pos[sample_index][0]; in zink_get_sample_position() 1026 out_value[1] = pos[sample_index][1]; in zink_get_sample_position() 1032 out_value[0] = pos[sample_index][0]; in zink_get_sample_position() 1033 out_value[1] = pos[sample_index][1]; in zink_get_sample_position() 1041 out_value[0] = pos[sample_index][0]; in zink_get_sample_position() 1042 out_value[1] = pos[sample_index][1]; in zink_get_sample_position() 1054 out_value[0] = pos[sample_index][0]; in zink_get_sample_position() 1055 out_value[1] = pos[sample_index][1]; in zink_get_sample_position() 1075 out_value[0] = pos[sample_index][0]; in zink_get_sample_position() [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/ |
D | dd_context.c | 725 float *out_value) in dd_context_get_sample_position() argument 730 out_value); in dd_context_get_sample_position()
|