/third_party/mesa3d/src/amd/common/ |
H A D | ac_rgp.c | 116 uint32_t value; member 147 header->flags.value = 0; in ac_sqtt_fill_header() 990 uint16_t value = counter_values_ptr[index]; in ac_sqtt_dump_spm() local 992 file_offset += sizeof(value); in ac_sqtt_dump_spm() 993 fwrite(&value, sizeof(value), 1, output); in ac_sqtt_dump_spm()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_perfcounter.c | 470 unsigned value = S_030800_SH_BROADCAST_WRITES(1); in radv_emit_instance() local 473 value |= S_030800_SE_INDEX(se); in radv_emit_instance() 475 value |= S_030800_SE_BROADCAST_WRITES(1); in radv_emit_instance() 479 value |= S_030800_INSTANCE_INDEX(instance); in radv_emit_instance() 481 value |= S_030800_INSTANCE_BROADCAST_WRITES(1); in radv_emit_instance() 484 radeon_set_uconfig_reg(cs, R_030800_GRBM_GFX_INDEX, value); in radv_emit_instance() 637 radeon_emit(cs, 1); /* value */ in radv_pc_stop_and_sample() 670 radeon_emit(cs, 0); /* value */ in radv_pc_begin_query()
|
/third_party/mesa3d/src/broadcom/qpu/ |
H A D | qpu_pack.c | 34 #define QPU_SET_FIELD(value, field) \ 36 uint64_t fieldval = (uint64_t)(value) << field ## _SHIFT; \ 43 #define QPU_UPDATE_FIELD(inst, value, field) \ 44 (((inst) & ~(field ## _MASK)) | QPU_SET_FIELD(value, field)) 301 uint32_t value, in v3d_qpu_small_imm_pack() 307 if (small_immediates[i] == value) { in v3d_qpu_small_imm_pack() 1217 /* Some opcodes have a single valid value for their mux a/b, so set in v3d_qpu_mul_pack() 300 v3d_qpu_small_imm_pack(const struct v3d_device_info *devinfo, uint32_t value, uint32_t *packed_small_immediate) v3d_qpu_small_imm_pack() argument
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_loop_analyze.c | 84 get_loop_var(nir_ssa_def *value, loop_info_state *state) in get_loop_var() argument 86 nir_loop_variable *var = &(state->loop_vars[value->index]); in get_loop_var() 88 if (!BITSET_TEST(state->loop_vars_init, value->index)) { in get_loop_var() 90 var->def = value; in get_loop_var() 95 if (value->parent_instr->type == nir_instr_type_load_const) in get_loop_var() 100 BITSET_SET(state->loop_vars_init, value->index); in get_loop_var() 442 /* Update value of induction variable is a statement in compute_induction_information() 463 /* Initial value of induction variable is a constant */ in compute_induction_information() 477 /* Initial value of induction variable is a uniform */ in compute_induction_information() 836 /* Add the initial value t in test_iterations() [all...] |
/third_party/node/lib/internal/streams/ |
H A D | readable.js | 110 set(value) { 111 if (value) this.state |= bit; 174 // Note: 0 is a valid value, means "don't call _read preemptively ever" 1307 set(value) { 1308 // We ignore the value if the stream 1316 this._readableState.destroyed = value; 1345 set(value) { 1346 this[kPaused] = !!value;
|
/third_party/node/src/ |
H A D | node_api.cc | 476 "Failed to retrieve undefined value"); in CallJs() 1096 JSVM_Value value, in jsvm_is_buffer() 1099 CHECK_ARG(env, value); in jsvm_is_buffer() 1102 *result = node::Buffer::HasInstance(v8impl::V8LocalValueFromJsValue(value)); in jsvm_is_buffer() 1107 JSVM_Value value, in jsvm_get_buffer_info() 1111 CHECK_ARG(env, value); in jsvm_get_buffer_info() 1113 v8::Local<v8::Value> buffer = v8impl::V8LocalValueFromJsValue(value); in jsvm_get_buffer_info() 1095 jsvm_is_buffer(JSVM_Env env, JSVM_Value value, bool* result) jsvm_is_buffer() argument 1106 jsvm_get_buffer_info(JSVM_Env env, JSVM_Value value, void** data, size_t* length) jsvm_get_buffer_info() argument
|
H A D | node_zlib.cc | 217 CompressionError SetParams(int key, uint32_t value); 237 CompressionError SetParams(int key, uint32_t value); 307 CHECK_EQ(false, args[0]->IsUndefined() && "must provide flush value"); in Write() 316 UNREACHABLE("Invalid flush value"); in Write() 592 // windowBits is special. On the compression side, 0 is an invalid value. in Init() 593 // But on the decompression side, a value of 0 for windowBits tells zlib in Init() 1163 CompressionError BrotliEncoderContext::SetParams(int key, uint32_t value) { in SetParams() argument 1166 value)) { in SetParams() 1228 CompressionError BrotliDecoderContext::SetParams(int key, uint32_t value) { in SetParams() argument 1231 value)) { in SetParams() [all...] |
/third_party/musl/src/crypt/ |
H A D | crypt_des.c | 904 uint32_t value = ascii_to_bin(setting[i]); in _crypt_extended_r_uut() local 905 if (ascii64[value] != setting[i]) in _crypt_extended_r_uut() 907 count |= value << (i - 1) * 6; in _crypt_extended_r_uut() 913 uint32_t value = ascii_to_bin(setting[i]); in _crypt_extended_r_uut() local 914 if (ascii64[value] != setting[i]) in _crypt_extended_r_uut() 916 salt |= value << (i - 5) * 6; in _crypt_extended_r_uut()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | dictbe.cpp | 127 // Return value is in code points. 1114 static inline bool isKatakana(UChar32 value) { in isKatakana() argument 1115 return (value >= 0x30A1 && value <= 0x30FE && value != 0x30FB) || in isKatakana() 1116 (value >= 0xFF66 && value <= 0xFF9f); in isKatakana() 1320 // with the highest value possible, i.e. the least likely to occur. in divideUpDictionaryRange()
|
H A D | uresdata.cpp | 352 * CLDR string value (three empty-set symbols)=={2205, 2205, 2205} 821 const char *&key, icu::ResourceValue &value) const { in getKeyAndValue() 823 icu::ResourceDataValue &rdValue = static_cast<icu::ResourceDataValue &>(value); in getKeyAndValue() 845 UBool icu::ResourceTable::findValue(const char *key, ResourceValue &value) const { in findValue() 846 icu::ResourceDataValue &rdValue = static_cast<icu::ResourceDataValue &>(value); in findValue() 905 UBool icu::ResourceArray::getValue(int32_t i, icu::ResourceValue &value) const { in getValue() 907 icu::ResourceDataValue &rdValue = static_cast<icu::ResourceDataValue &>(value); in getValue() 1013 * after sorting this array by keys, the actual key/value arrays are permutated 1095 /* physically same value layout as string, fall through */ in ures_swapResource() 1193 /* no need to sort, just swap the offset/value array in ures_swapResource() [all...] |
/third_party/mesa3d/src/intel/dev/ |
H A D | intel_device_info.c | 694 * There's no KBL entry. Using the default SKL (GFX9) GS entries value. 1139 * accurate value greater than 1 on gfx12.5+ platforms though, in order to in update_pixel_pipes() 1403 getparam(int fd, uint32_t param, int *value) in getparam() argument 1409 .value = &tmp, in getparam() 1416 *value = tmp; in getparam() 1421 get_context_param(int fd, uint32_t context, uint32_t param, uint64_t *value) in get_context_param() argument 1432 *value = gp.value; in get_context_param() 1620 /* The kernel uAPI only reports an accurate unallocated_size value in query_regions() 1798 * available for that PCI ID and then compute the real value fro in fixup_chv_device_info() [all...] |
/third_party/libfuse/test/ |
H A D | test_examples.py | 103 assert exc_info.value.errno == errno.EACCES 106 assert exc_info.value.errno == errno.ENOENT 529 assert exc_info.value.errno == errno.ENOENT 554 assert exc_info.value.errno == errno.ENOENT 572 assert exc_info.value.errno == errno.ENOENT 657 assert exc_info.value.errno == errno.ENOENT 688 # still report an st_nlink value of 2 (cf. issue #157). 696 # received before the st_nlink value is correct.
|
/third_party/libinput/test/ |
H A D | test-switch.c | 759 ck_assert_int_eq(event.value, 0); in START_TEST() 764 ck_assert_int_eq(event.value, 0); in START_TEST() 826 ck_assert_int_eq(event.value, 0); in START_TEST() 831 ck_assert_int_eq(event.value, 0); in START_TEST() 887 ck_assert_int_eq(event.value, 0); in START_TEST() 892 ck_assert_int_eq(event.value, 0); in START_TEST()
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
H A D | tr_screen.c | 826 uint64_t *value) in trace_screen_resource_get_param() 845 handle_usage, value); in trace_screen_resource_get_param() 847 trace_dump_arg(uint, *value); in trace_screen_resource_get_param() 1337 uint64_t value) in trace_screen_set_fence_timeline_value() 1345 trace_dump_arg(uint, value); in trace_screen_set_fence_timeline_value() 1348 screen->set_fence_timeline_value(screen, fence, value); in trace_screen_set_fence_timeline_value() 818 trace_screen_resource_get_param(struct pipe_screen *_screen, struct pipe_context *_pipe, struct pipe_resource *resource, unsigned plane, unsigned layer, unsigned level, enum pipe_resource_param param, unsigned handle_usage, uint64_t *value) trace_screen_resource_get_param() argument 1335 trace_screen_set_fence_timeline_value(struct pipe_screen *_screen, struct pipe_fence_handle *fence, uint64_t value) trace_screen_set_fence_timeline_value() argument
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_scan.c | 836 unsigned value = fullprop->u[0].Data; in scan_property() local 839 info->properties[name] = value; in scan_property() 843 info->num_written_clipdistance = value; in scan_property() 844 info->clipdist_writemask |= (1 << value) - 1; in scan_property() 847 info->num_written_culldistance = value; in scan_property() 848 info->culldist_writemask |= (1 << value) - 1; in scan_property() 1191 /* Initial value = true. Here the pass will accumulate results from multiple in tgsi_scan_tess_ctrl()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir.h | 47 OP_MERGE, // opposite of split, e.g. combine 2 32 bit into a 64 bit value 147 OP_RDSV, // read system value 148 OP_WRSV, // write system value 663 inline bool exists() const { return value != NULL; } in exists() 667 inline Value *get() const { return value; } in get() 679 // SSA: return eventual (traverse MOVs) literal value, if it exists 689 Value *value; member in nv50_ir::ValueRef 700 inline bool exists() const { return value != NULL; } in exists() 702 inline Value *get() const { return value; } in get() 706 void replace(const ValueRef &, bool doSet); // replace all uses of the old value 718 Value *value; // should make this LValue * ... global() member in nv50_ir::ValueDef [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/signature/ |
H A D | rsa_sig.c | 1102 const char *value = NULL; in rsa_get_ctx_params() local 1106 value = OSSL_PKEY_RSA_PSS_SALT_LEN_DIGEST; in rsa_get_ctx_params() 1109 value = OSSL_PKEY_RSA_PSS_SALT_LEN_MAX; in rsa_get_ctx_params() 1112 value = OSSL_PKEY_RSA_PSS_SALT_LEN_AUTO; in rsa_get_ctx_params() 1125 if (value != NULL in rsa_get_ctx_params() 1126 && !OSSL_PARAM_set_utf8_string(p, value)) in rsa_get_ctx_params()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktAtomicOperationTests.cpp | 522 // are executed for each InOut value (using input0 and input1). in checkOperation() 620 errorMessage << "ERROR: Result value check failed at index " << elementNdx in checkOperation() 725 // are executed for each InOut value (using input0 and input1). in checkOperationFloatingPoint() 833 errorMessage << "ERROR: Result value check failed at index " << elementNdx in checkOperationFloatingPoint() 1520 AtomicOperation value; in addAtomicOperationTests() member 1543 if (atomicOp[opNdx].value != ATOMIC_OP_ADD && in addAtomicOperationTests() 1545 atomicOp[opNdx].value != ATOMIC_OP_MIN && in addAtomicOperationTests() 1546 atomicOp[opNdx].value != ATOMIC_OP_MAX && in addAtomicOperationTests() 1548 atomicOp[opNdx].value != ATOMIC_OP_EXCHANGE) in addAtomicOperationTests() 1569 atomicOperationTestsGroup->addChild(new AtomicOperationCase(testCtx, name.c_str(), AtomicShaderType(shaderTypes[shaderTypeNdx].type, kMemoryTypes[memoryTypeNdx].type), dataSign[signNdx].dataType, atomicOp[opNdx].value)); in addAtomicOperationTests() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_cfg.cpp | 101 // Incoming value type must match the phi result type. in ValidatePhi() 106 << " does not match incoming value <id> " << _.getIdName(inc_id) in ValidatePhi() 232 const auto value = _.FindDef(value_id); in ValidateReturnValue() local 233 if (!value || !value->type_id()) { in ValidateReturnValue() 236 << "' does not represent a value."; in ValidateReturnValue() 238 auto value_type = _.FindDef(value->type_id()); in ValidateReturnValue() 241 << "OpReturnValue value's type <id> '" in ValidateReturnValue() 242 << _.getIdName(value->type_id()) << "' is missing or void."; in ValidateReturnValue() 253 << "OpReturnValue value' in ValidateReturnValue() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | VertexProcessor.cpp | 60 static_assert(is_memcmparable<State>::value, "Cannot memcmp States"); in operator ==() 155 void VertexProcessor::setFloatConstant(unsigned int index, const float value[4]) in setFloatConstant() argument 159 c[index][0] = value[0]; in setFloatConstant() 160 c[index][1] = value[1]; in setFloatConstant() 161 c[index][2] = value[2]; in setFloatConstant() 162 c[index][3] = value[3]; in setFloatConstant()
|
/third_party/openssl/providers/implementations/signature/ |
H A D | rsa_sig.c | 1101 const char *value = NULL; in rsa_get_ctx_params() local 1105 value = OSSL_PKEY_RSA_PSS_SALT_LEN_DIGEST; in rsa_get_ctx_params() 1108 value = OSSL_PKEY_RSA_PSS_SALT_LEN_MAX; in rsa_get_ctx_params() 1111 value = OSSL_PKEY_RSA_PSS_SALT_LEN_AUTO; in rsa_get_ctx_params() 1124 if (value != NULL in rsa_get_ctx_params() 1125 && !OSSL_PARAM_set_utf8_string(p, value)) in rsa_get_ctx_params()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_cfg.cpp | 101 // Incoming value type must match the phi result type. in ValidatePhi() 106 << " does not match incoming value <id> " << _.getIdName(inc_id) in ValidatePhi() 232 const auto value = _.FindDef(value_id); in ValidateReturnValue() local 233 if (!value || !value->type_id()) { in ValidateReturnValue() 236 << "' does not represent a value."; in ValidateReturnValue() 238 auto value_type = _.FindDef(value->type_id()); in ValidateReturnValue() 241 << "OpReturnValue value's type <id> '" in ValidateReturnValue() 242 << _.getIdName(value->type_id()) << "' is missing or void."; in ValidateReturnValue() 253 << "OpReturnValue value' in ValidateReturnValue() [all...] |
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | enc.c | 51 const int value = distribution[k]; in VP8SetHistogramData() local 52 if (value > 0) { in VP8SetHistogramData() 53 if (value > max_value) max_value = value; in VP8SetHistogramData() 231 static WEBP_INLINE void Fill(uint8_t* dst, int value, int size) { in Fill() argument 234 memset(dst + j * BPS, value, size); in Fill() 278 // true motion without left samples (hence: with default 129 value) in TrueMotion() 280 // Note that if top samples are not available, the default value is in TrueMotion() 588 // Returns the weighted sum of the absolute value of transformed coefficients.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | regcomp.c | 647 static int /* the value */ 855 static char /* value of symbol */ 858 char value; in p_b_symbol() local 865 value = p_b_coll_elem(p, '.'); in p_b_symbol() 867 return(value); in p_b_symbol() 873 static char /* value of collating element */ 1059 return(0); /* make the return value well-defined */ in seterr() 1146 * the same value! 1179 static int /* character; there is no "none" value */ 1404 dofwd(struct parse *p, sopno pos, sop value) in dofwd() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceGlobalContext.cpp | 70 std::is_integral<KeyType>::value || 71 std::is_same<KeyType, RelocatableTuple>::value>::type> { 78 std::is_floating_point<KeyType>::value>::type> { 92 typename ValueType::PrimType>::value>::type> { 112 typename ValueType::PrimType>::value>::type> { 122 std::is_same<ValueType, ConstantRelocatable>::value>::type> { 649 Str << "Constant pool use stats: count+value+type\n"; in dumpConstantLookupCounts()
|