Home
last modified time | relevance | path

Searched refs:val (Results 4651 - 4675 of 6120) sorted by relevance

1...<<181182183184185186187188189190>>...245

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DR600ControlFlowFinalizer.cpp373 llvm::find_if(Lits, [&](MachineOperand *val) { in getLiteral()
374 return val->isImm() && (val->getImm() == Imm); in getLiteral()
/third_party/python/Modules/_io/
H A Dwinconsoleio.c195 PyObject *exc, *val, *tb; in _io__WindowsConsoleIO_close_impl() local
204 PyErr_Fetch(&exc, &val, &tb); in _io__WindowsConsoleIO_close_impl()
207 _PyErr_ChainExceptions(exc, val, tb); in _io__WindowsConsoleIO_close_impl()
/third_party/skia/modules/skparagraph/src/
H A DOneLineShaper.cpp17 SkUnichar val = SkUTF::NextUTF8(ptr, end); in nextUtf8Unit() local
18 return val < 0 ? 0xFFFD : val; in nextUtf8Unit()
/third_party/selinux/checkpolicy/
H A Dcheckpolicy.c147 unsigned int val; member
158 if (v->val == perdatum->s.value) { in find_perm()
798 v.val = i; in main()
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.cpp1865 double val = (vec.GetX() * vec.GetX()) + (vec.GetY() * vec.GetY());
1866 if (minVal > val) {
1867 minVal = val;
2371 double val = (vec.GetX() * vec.GetX()) + (vec.GetY() * vec.GetY());
2375 val *= -1.0;
2377 if ((!isTabStep && val < resDistance) || (isTabStep && val > resDistance)) {
2378 resDistance = val;
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_node.cpp412 [](const std::string& val, DOMNode& node) { in SetCurrentStyle()
413 node.ParseTransitionPropertyStyle(val); in SetCurrentStyle()
416 [](const std::string& val, DOMNode& node) { in SetCurrentStyle()
417 node.transitionDuration_ = StringUtils::StringToInt(val) * MS_TO_S; in SetCurrentStyle()
420 [](const std::string& val, DOMNode& node) { in SetCurrentStyle()
421 node.transitionTimeFunction_ = val; in SetCurrentStyle()
424 [](const std::string& val, DOMNode& node) { in SetCurrentStyle()
425 node.transitionDelay_ = StringUtils::StringToInt(val) * MS_TO_S; in SetCurrentStyle()
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dcanvas_component.cpp265 jerry_value_t val = jerry_get_property_by_index(dashArray_, i); in ReleaseNativeViews() local
266 jerry_release_value(val); in ReleaseNativeViews()
2129 jerry_value_t val = jerry_get_property_by_index(array, i); in SetLineDash() local
2131 if (jerry_value_is_number(val)) { in SetLineDash()
2132 num = jerry_get_number_value(val); in SetLineDash()
2133 } else if (jerry_value_is_string(val)) { in SetLineDash()
2134 char *value = MallocStringOf(val); in SetLineDash()
2148 jerry_release_value(val); in SetLineDash()
/third_party/node/lib/
H A Dfs.js3170 set ReadStream(val) {
3171 ReadStream = val;
3179 set WriteStream(val) {
3180 WriteStream = val;
3190 set FileReadStream(val) {
3191 FileReadStream = val;
3199 set FileWriteStream(val) {
3200 FileWriteStream = val;
/third_party/icu/icu4c/source/tools/tzcode/
H A Dzic.c1544 convert(const int_fast32_t val, char *const buf) in convert() argument
1551 b[i] = val >> shift; in convert()
1555 convert64(const zic_t val, char *const buf) in convert64() argument
1562 b[i] = val >> shift; in convert64()
1566 puttzcode(const int_fast32_t val, FILE *const fp) in puttzcode() argument
1570 convert(val, buf); in puttzcode()
1575 puttzcode64(const zic_t val, FILE *const fp) in puttzcode64() argument
1579 convert64(val, buf); in puttzcode64()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dzic.c1543 convert(const int_fast32_t val, char *const buf) in convert() argument
1550 b[i] = val >> shift; in convert()
1554 convert64(const zic_t val, char *const buf) in convert64() argument
1561 b[i] = val >> shift; in convert64()
1565 puttzcode(const int_fast32_t val, FILE *const fp) in puttzcode() argument
1569 convert(val, buf); in puttzcode()
1574 puttzcode64(const zic_t val, FILE *const fp) in puttzcode64() argument
1578 convert64(val, buf); in puttzcode64()
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc255 const FieldDescriptor* val = descriptor->FindFieldByName("value"); in CollectMapInfo() local
257 switch (val->cpp_type()) { in CollectMapInfo()
259 vars["val_cpp"] = FieldMessageTypeName(val, options); in CollectMapInfo()
262 vars["val_cpp"] = ClassName(val->enum_type(), true); in CollectMapInfo()
265 vars["val_cpp"] = PrimitiveTypeName(options, val->cpp_type()); in CollectMapInfo()
270 "TYPE_" + ToUpper(DeclaredTypeMethodName(val->type())); in CollectMapInfo()
272 val->type() == FieldDescriptor::TYPE_ENUM) { in CollectMapInfo()
273 const EnumValueDescriptor* default_value = val->default_value_enum(); in CollectMapInfo()
/third_party/python/Lib/urllib/
H A Drequest.py401 def add_header(self, key, val):
403 self.headers[key.capitalize()] = val
405 def add_unredirected_header(self, key, val):
407 self.unredirected_hdrs[key.capitalize()] = val
1334 headers = {name.title(): val for name, val in headers.items()}
2770 for val in host:
2771 if re.match(test, val, re.I):
/third_party/vk-gl-cts/framework/common/
H A DtcuTextureUtil.cpp732 deUint64 val;
733 memcpy(&val, pixel, sizeof(val));
736 ((deUint64*)dstPtr)[i] = val;
740 deUint32 val;
741 memcpy(&val, pixel, sizeof(val));
744 ((deUint32*)dstPtr)[i] = val;
/foundation/arkui/napi/native_engine/
H A Dnative_api.cpp783 Local<panda::JSValueRef> val = LocalValueFromJsValue(value); in napi_coerce_to_bool() local
785 Local<panda::BooleanRef> boolVal = val->ToBoolean(vm); in napi_coerce_to_bool()
841 Local<panda::JSValueRef> val = obj->GetPrototype(vm); in napi_get_prototype() local
842 *result = JsValueFromLocalValue(val); in napi_get_prototype()
1940 Local<panda::JSValueRef> val = nativeObject->Get(vm, key); in napi_unwrap() local
1942 if (val->IsObject(vm)) { in napi_unwrap()
1943 Local<panda::ObjectRef> ext(val); in napi_unwrap()
1963 Local<panda::JSValueRef> val = nativeObject->Get(vm, key); in napi_remove_wrap() local
1965 if (val->IsObject(vm)) { in napi_remove_wrap()
1966 Local<panda::ObjectRef> ext(val); in napi_remove_wrap()
2046 void* val = nativeObject->GetNativePointerField(vm, 0); napi_unwrap_sendable() local
2063 void* val = nativeObject->GetNativePointerField(vm, 0); napi_remove_wrap_sendable() local
[all...]
/foundation/graphic/graphic_surface/surface/src/
H A Dproducer_surface.cpp597 GSError ProducerSurface::SetUserData(const std::string& key, const std::string& val)
606 if (iterUserData != userData_.end() && iterUserData->second == val) {
610 userData_[key] = val;
614 iter->second(key, val);
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler_base.cpp176 void RSProfiler::PatchTypefaceId(const Parcel& parcel, std::shared_ptr<Drawing::DrawCmdList>& val) in PatchTypefaceId() argument
178 if (!val || !IsEnabled()) { in PatchTypefaceId()
183 val->PatchTypefaceIds(); in PatchTypefaceId()
186 val->PatchTypefaceIds(); in PatchTypefaceId()
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/
H A Dvector.h804 void push_back(const value_type& val) in push_back() argument
807 init_copy(tmp + size_, &val, 1); in push_back()
812 void push_back(value_type&& val) in push_back() argument
815 init_move(tmp + size_, &val, 1); in push_back()
/foundation/multimedia/image_framework/frameworks/kits/js/common/
H A Dpicture_napi.cpp357 static AuxiliaryPictureType ParseAuxiliaryPictureType(int32_t val) in ParseAuxiliaryPictureType() argument
359 if (val >= static_cast<int32_t>(AuxiliaryPictureType::GAINMAP) in ParseAuxiliaryPictureType()
360 && val<= static_cast<int32_t>(AuxiliaryPictureType::FRAGMENT_MAP)) { in ParseAuxiliaryPictureType()
361 return AuxiliaryPictureType(val); in ParseAuxiliaryPictureType()
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_hal/unittest/
H A Dwifi_hal_wpa_p2p_test.cpp390 char val[] = "hex_string"; in HWTEST_F() local
392 EXPECT_TRUE(mInterface->wpaP2pCliCmdServDiscCancelReq(mInterface, val) != P2P_SUP_ERRCODE_SUCCESS); in HWTEST_F()
394 EXPECT_TRUE(mInterface->wpaP2pCliCmdServDiscCancelReq(mInterface, val) != P2P_SUP_ERRCODE_SUCCESS); in HWTEST_F()
396 EXPECT_TRUE(mInterface->wpaP2pCliCmdServDiscCancelReq(mInterface, val) == P2P_SUP_ERRCODE_SUCCESS); in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/common/distributeddb/src/
H A Ddistributeddb_data_generator.cpp250 const std::vector<uint8_t> &keyPrefix, const std::vector<uint8_t> &val, DistributedDB::Entry &entry) in GenerateOneRecordForImage()
268 entry.value.push_back(val[0]); in GenerateOneRecordForImage()
275 int num, std::vector<uint8_t> keyPrefix, std::vector<uint8_t> val) in GenerateRecordsForImage()
279 GenerateOneRecordForImage(index, entrySize, keyPrefix, val, entry); in GenerateRecordsForImage()
249 GenerateOneRecordForImage(int entryNo, const EntrySize &entrySize, const std::vector<uint8_t> &keyPrefix, const std::vector<uint8_t> &val, DistributedDB::Entry &entry) GenerateOneRecordForImage() argument
274 GenerateRecordsForImage(std::vector<DistributedDB::Entry> &entries, EntrySize &entrySize, int num, std::vector<uint8_t> keyPrefix, std::vector<uint8_t> val) GenerateRecordsForImage() argument
/foundation/distributedhardware/distributed_audio/services/audiomanager/managersink/src/
H A Ddaudio_sink_dev.cpp469 int32_t DAudioSinkDev::ConvertString2Int(std::string val) in ConvertString2Int() argument
471 if (!CheckIsNum(val)) { in ConvertString2Int()
472 DHLOGE("String is not number. str:%{public}s.", val.c_str()); in ConvertString2Int()
475 return std::atoi(val.c_str()); in ConvertString2Int()
/test/xts/hats/hdf/audio/idl/common/render/src/
H A Daudio_render_common_test.cpp579 float val = 0.0; in HWTEST_F() local
580 EXPECT_EQ(HDF_ERR_INVALID_OBJECT, render_->GetVolume(nullptr, &val)); in HWTEST_F()
585 float val = 0.0; in HWTEST_F() local
586 int32_t ret = render_->GetVolume(render_, &val); in HWTEST_F()
/third_party/ffmpeg/libavcodec/
H A Dtruemotion2.c231 int val; in tm2_get_token() local
232 val = get_vlc2(gb, code->vlc.table, code->bits, 1); in tm2_get_token()
233 if(val<0) in tm2_get_token()
235 return code->recode[val]; in tm2_get_token()
/third_party/ffmpeg/libavfilter/
H A Dvf_nnedi.c339 const float val = src[j]; in gather_input() local
341 sum += val; in gather_input()
342 sum_sq += val * val; in gather_input()
/third_party/ffmpeg/libavformat/
H A Dmpeg.c168 int val, n; in find_next_start_code() local
179 val = state; in find_next_start_code()
184 val = -1; in find_next_start_code()
189 return val; in find_next_start_code()

Completed in 64 milliseconds

1...<<181182183184185186187188189190>>...245