/third_party/node/deps/histogram/src/ |
H A D | hdr_atomic.h | 47 int64_t initial_value = *field; in hdr_atomic_exchange_64() 50 comparand = initial_value; in hdr_atomic_exchange_64() 51 initial_value = _InterlockedCompareExchange64(field, value, comparand); in hdr_atomic_exchange_64() 53 while (comparand != initial_value); in hdr_atomic_exchange_64() 55 return initial_value; in hdr_atomic_exchange_64() 65 int64_t initial_value = *field; in hdr_atomic_add_fetch_64() 68 comparand = initial_value; in hdr_atomic_add_fetch_64() 69 initial_value = _InterlockedCompareExchange64(field, comparand + value, comparand); in hdr_atomic_add_fetch_64() 71 while (comparand != initial_value); in hdr_atomic_add_fetch_64() 73 return initial_value in hdr_atomic_add_fetch_64() [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | eventfd_read.c | 27 unsigned int initial_value = 2; in eventfd_read_0100() local 28 int fd = eventfd(initial_value, O_NONBLOCK); in eventfd_read_0100() 39 if (value != initial_value) { in eventfd_read_0100() 67 unsigned int initial_value = 2; in eventfd_read_0300() local 68 int fd = eventfd(initial_value, O_NONBLOCK); in eventfd_read_0300()
|
H A D | eventfd_write.c | 28 unsigned int initial_value = 0; in eventfd_write_0100() local 29 int fd = eventfd(initial_value, O_NONBLOCK); in eventfd_write_0100() 77 unsigned int initial_value = 2; in eventfd_write_0300() local 78 int fd = eventfd(initial_value, O_NONBLOCK); in eventfd_write_0300()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | arenastring.h | 370 void CreateInstance(Arena* arena, const ::std::string* initial_value) { in CreateInstance() 371 GOOGLE_DCHECK(initial_value != NULL); in CreateInstance() 373 ptr_ = Arena::Create< ::std::string>(arena, *initial_value); in CreateInstance() 376 void CreateInstanceNoArena(const ::std::string* initial_value) { in CreateInstanceNoArena() 377 GOOGLE_DCHECK(initial_value != NULL); in CreateInstanceNoArena() 378 ptr_ = new ::std::string(*initial_value); in CreateInstanceNoArena()
|
/third_party/node/deps/v8/src/objects/ |
H A D | embedder-data-slot-inl.h | 34 void EmbedderDataSlot::Initialize(Object initial_value) { in Initialize() argument 37 DCHECK(initial_value.IsSmi() || in Initialize() 38 ReadOnlyHeap::Contains(HeapObject::cast(initial_value))); in Initialize() 39 ObjectSlot(address() + kTaggedPayloadOffset).Relaxed_Store(initial_value); in Initialize()
|
/third_party/gn/src/base/ |
H A D | atomic_ref_count.h | 18 explicit constexpr AtomicRefCount(int initial_value) in AtomicRefCount() argument 19 : ref_count_(initial_value) {} in AtomicRefCount()
|
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_sync.h | 170 uint64_t initial_value); 311 uint64_t initial_value); 319 uint64_t initial_value,
|
H A D | vk_semaphore.c | 107 get_semaphore_type(const void *pNext, uint64_t *initial_value) in get_semaphore_type() argument 115 if (initial_value) in get_semaphore_type() 116 *initial_value = type_info->initialValue; in get_semaphore_type() 131 uint64_t initial_value = 0; in vk_common_CreateSemaphore() local 133 get_semaphore_type(pCreateInfo->pNext, &initial_value); in vk_common_CreateSemaphore() 181 sync_type, sync_flags, initial_value); in vk_common_CreateSemaphore() 420 0 /* initial_value */, &temporary); in vk_common_ImportSemaphoreFdKHR()
|
H A D | vk_sync_binary.c | 39 uint64_t initial_value) in vk_sync_binary_init() 49 binary->next_point = (initial_value == 0); in vk_sync_binary_init() 52 VK_SYNC_IS_TIMELINE, 0 /* initial_value */); in vk_sync_binary_init() 37 vk_sync_binary_init(struct vk_device *device, struct vk_sync *sync, uint64_t initial_value) vk_sync_binary_init() argument
|
H A D | vk_drm_syncobj.c | 47 uint64_t initial_value) in vk_drm_syncobj_init() 52 if (!(sync->flags & VK_SYNC_IS_TIMELINE) && initial_value) in vk_drm_syncobj_init() 62 if ((sync->flags & VK_SYNC_IS_TIMELINE) && initial_value) { in vk_drm_syncobj_init() 64 &initial_value, 1); in vk_drm_syncobj_init() 45 vk_drm_syncobj_init(struct vk_device *device, struct vk_sync *sync, uint64_t initial_value) vk_drm_syncobj_init() argument
|
H A D | vk_sync.c | 85 uint64_t initial_value) in vk_sync_init() 99 return type->init(device, sync, initial_value); in vk_sync_init() 113 uint64_t initial_value, in vk_sync_create() 123 VkResult result = vk_sync_init(device, sync, type, flags, initial_value); in vk_sync_create() 81 vk_sync_init(struct vk_device *device, struct vk_sync *sync, const struct vk_sync_type *type, enum vk_sync_flags flags, uint64_t initial_value) vk_sync_init() argument 110 vk_sync_create(struct vk_device *device, const struct vk_sync_type *type, enum vk_sync_flags flags, uint64_t initial_value, struct vk_sync **sync_out) vk_sync_create() argument
|
H A D | vk_sync_binary.h | 58 uint64_t initial_value);
|
H A D | vk_sync_dummy.c | 29 uint64_t initial_value) in vk_sync_dummy_init() 27 vk_sync_dummy_init(struct vk_device *device, struct vk_sync *sync, uint64_t initial_value) vk_sync_dummy_init() argument
|
H A D | vk_sync_timeline.h | 93 uint64_t initial_value);
|
/third_party/python/Lib/test/ |
H A D | test_uu.py | 31 def __init__(self, initial_value="", encoding="utf-8", 39 if initial_value: 40 if not isinstance(initial_value, str): 41 initial_value = str(initial_value) 42 self.write(initial_value)
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | sparse-llvm.c | 1193 LLVMValueRef initial_value; in output_data() local 1200 initial_value = LLVMConstInt(symbol_type(sym), initializer->value, 1); in output_data() 1203 initial_value = LLVMConstReal(symbol_type(sym), initializer->fvalue); in output_data() 1208 initial_value = LLVMGetNamedGlobal(module, show_ident(sym->ident)); in output_data() 1209 if (!initial_value) in output_data() 1210 initial_value = output_data(module, sym); in output_data() 1216 initial_value = LLVMConstString(strdup(s), strlen(s) + 1, true); in output_data() 1221 initial_value = NULL; in output_data() 1227 initial_value = LLVMConstNull(type); in output_data() 1230 if (!initial_value) in output_data() [all...] |
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_bo_sync.c | 38 uint64_t initial_value) in anv_bo_sync_init() 43 sync->state = initial_value ? ANV_BO_SYNC_STATE_SIGNALED : in anv_bo_sync_init() 36 anv_bo_sync_init(struct vk_device *vk_device, struct vk_sync *vk_sync, uint64_t initial_value) anv_bo_sync_init() argument
|
/third_party/mesa3d/src/gallium/frontends/lavapipe/ |
H A D | lvp_pipe_sync.c | 37 uint64_t initial_value) in lvp_pipe_sync_init() 43 sync->signaled = (initial_value != 0); in lvp_pipe_sync_init() 35 lvp_pipe_sync_init(UNUSED struct vk_device *vk_device, struct vk_sync *vk_sync, uint64_t initial_value) lvp_pipe_sync_init() argument
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_sync.c | 41 uint64_t initial_value) in dzn_sync_init() 48 if (FAILED(ID3D12Device1_CreateFence(ddev->dev, initial_value, in dzn_sync_init() 39 dzn_sync_init(struct vk_device *device, struct vk_sync *sync, uint64_t initial_value) dzn_sync_init() argument
|
/third_party/mesa3d/src/imagination/vulkan/winsys/pvrsrvkm/ |
H A D | pvr_srv_sync.c | 44 uint64_t initial_value) in pvr_srv_sync_init() 48 srv_sync->signaled = initial_value ? true : false; in pvr_srv_sync_init() 42 pvr_srv_sync_init(struct vk_device *device, struct vk_sync *sync, uint64_t initial_value) pvr_srv_sync_init() argument
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_add_loops_to_create_int_constant_synonyms.cpp | 237 // The result of |initial_value| could overflow, but this is OK, since in FindSuitableStepAndInitialValueConstants() 242 uint64_t initial_value = constant_val + step_value * num_iterations; in FindSuitableStepAndInitialValueConstants() local 245 fuzzerutil::IntToWords(initial_value, bit_width, is_signed), bit_width, in FindSuitableStepAndInitialValueConstants()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | fuzzer_pass_add_loops_to_create_int_constant_synonyms.cpp | 237 // The result of |initial_value| could overflow, but this is OK, since in FindSuitableStepAndInitialValueConstants() 242 uint64_t initial_value = constant_val + step_value * num_iterations; in FindSuitableStepAndInitialValueConstants() local 245 fuzzerutil::IntToWords(initial_value, bit_width, is_signed), bit_width, in FindSuitableStepAndInitialValueConstants()
|
/third_party/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_add_loops_to_create_int_constant_synonyms.cpp | 237 // The result of |initial_value| could overflow, but this is OK, since in FindSuitableStepAndInitialValueConstants() 242 uint64_t initial_value = constant_val + step_value * num_iterations; in FindSuitableStepAndInitialValueConstants() local 245 fuzzerutil::IntToWords(initial_value, bit_width, is_signed), bit_width, in FindSuitableStepAndInitialValueConstants()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_dynaudnorm.c | 474 const double initial_value = s->alt_boundary_mode ? gain.max_gain : fmin(1.0, gain.max_gain); in update_gain_history() local 476 s->prev_amplification_factor[channel] = initial_value; in update_gain_history() 479 cqueue_enqueue(s->gain_history_original[channel], initial_value); in update_gain_history() 491 double initial_value = s->alt_boundary_mode ? cqueue_peek(s->gain_history_original[channel], 0) : 1.0; in update_gain_history() local 496 initial_value = fmin(initial_value, cqueue_peek(s->gain_history_original[channel], input)); in update_gain_history() 497 cqueue_enqueue(s->gain_history_minimum[channel], initial_value); in update_gain_history()
|
/third_party/vulkan-loader/tests/framework/ |
H A D | test_util.h | 122 initial_value = get_env_var(name, false); 127 initial_value = get_env_var(name, false); in cur_value() 132 if (!initial_value.empty()) { 133 set_new_value(initial_value); variable 159 std::string initial_value; variable
|