Home
last modified time | relevance | path

Searched refs:current (Results 326 - 350 of 1864) sorted by relevance

1...<<11121314151617181920>>...75

/third_party/cups-filters/filter/
H A Dsys5ippprinter.c623 int current, /* Current filter */ in exec_filters() local
651 current = 0; in exec_filters()
659 filter = next, current = 1 - current) in exec_filters()
676 if (filterfds[!current][1] > 1) in exec_filters()
678 close(filterfds[1 - current][0]); in exec_filters()
679 close(filterfds[1 - current][1]); in exec_filters()
681 filterfds[1 - current][0] = -1; in exec_filters()
682 filterfds[1 - current][0] = -1; in exec_filters()
686 open_pipe(filterfds[1 - current]); in exec_filters()
[all...]
/third_party/cups-filters/cupsfilters/
H A Dpdftoippprinter.c673 int current, /* Current filter */ in exec_filters() local
701 current = 0; in exec_filters()
709 filter = next, current = 1 - current) { in exec_filters()
723 if (filterfds[!current][1] > 1) { in exec_filters()
724 close(filterfds[1 - current][0]); in exec_filters()
725 close(filterfds[1 - current][1]); in exec_filters()
727 filterfds[1 - current][0] = -1; in exec_filters()
728 filterfds[1 - current][0] = -1; in exec_filters()
732 open_pipe(filterfds[1 - current]); in exec_filters()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dsvq1dec.c75 int nonref; // 1 if the current frame won't be referenced
317 static void svq1_skip_block(uint8_t *current, uint8_t *previous, in svq1_skip_block() argument
325 dst = current; in svq1_skip_block()
335 uint8_t *current, uint8_t *previous, in svq1_motion_inter_block()
370 dst = current; in svq1_motion_inter_block()
378 uint8_t *current, uint8_t *previous, in svq1_motion_inter_4v_block()
440 dst = current; in svq1_motion_inter_4v_block()
446 current += 8 * (pitch - 1); in svq1_motion_inter_4v_block()
448 current += 8; in svq1_motion_inter_4v_block()
456 uint8_t *current, uint8_ in svq1_decode_delta_block()
334 svq1_motion_inter_block(HpelDSPContext *hdsp, GetBitContext *bitbuf, uint8_t *current, uint8_t *previous, ptrdiff_t pitch, svq1_pmv *motion, int x, int y, int width, int height) svq1_motion_inter_block() argument
377 svq1_motion_inter_4v_block(HpelDSPContext *hdsp, GetBitContext *bitbuf, uint8_t *current, uint8_t *previous, ptrdiff_t pitch, svq1_pmv *motion, int x, int y, int width, int height) svq1_motion_inter_4v_block() argument
454 svq1_decode_delta_block(AVCodecContext *avctx, HpelDSPContext *hdsp, GetBitContext *bitbuf, uint8_t *current, uint8_t *previous, ptrdiff_t pitch, svq1_pmv *motion, int x, int y, int width, int height) svq1_decode_delta_block() argument
626 uint8_t *current; svq1_decode_frame() local
[all...]
/third_party/mesa3d/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_cs.c205 /* Set the first command buffer as current. */ in radeon_drm_cs_create()
211 rcs->current.buf = cs->csc->buf; in radeon_drm_cs_create()
212 rcs->current.max_dw = ARRAY_SIZE(cs->csc->buf); in radeon_drm_cs_create()
457 assert(rcs->current.cdw == 0); in radeon_drm_cs_validate()
458 if (rcs->current.cdw != 0) { in radeon_drm_cs_validate()
468 assert(rcs->current.cdw <= rcs->current.max_dw); in radeon_drm_cs_check_space()
469 return rcs->current.max_dw - rcs->current.cdw >= dw; in radeon_drm_cs_check_space()
593 while (rcs->current in radeon_drm_cs_flush()
[all...]
/foundation/arkui/ui_lite/frameworks/components/
H A Dui_chart.cpp319 Point* current = pointArray_ + dataCount_; in AddPoints() local
320 if (memcpy_s(current, (maxCount_ - dataCount_) * sizeof(Point), data, count * sizeof(Point)) != EOK) { in AddPoints()
438 Point current; in RefreshChart() local
439 data->GetPoint(index, current); in RefreshChart()
442 Rect refresh(current.x, rect.GetTop(), last.x, rect.GetBottom()); in RefreshChart()
467 Point current; in DrawDataSerials() local
468 data->GetPoint(index, current); in DrawDataSerials()
469 if (current.y == xStart.y) { in DrawDataSerials()
472 current.x += x; in DrawDataSerials()
473 xStart.x = current in DrawDataSerials()
557 Smooth(uint16_t startPos, Point& start, Point& end, Point& current, UIChartDataSerial* data, uint16_t& slope, uint16_t& preSlope) Smooth() argument
592 Point current; GetDataBySmooth() local
626 Point current; DrawSmoothPolyLine() local
[all...]
/foundation/communication/ipc/ipc/native/src/core/source/
H A Dipc_object_proxy.cpp71 ProcessSkeleton *current = ProcessSkeleton::GetInstance(); in IPCObjectProxy() local
72 if (current == nullptr) { in IPCObjectProxy()
77 current->AttachValidObject(this, str); in IPCObjectProxy()
96 ProcessSkeleton *current = ProcessSkeleton::GetInstance(); in ~IPCObjectProxy() local
97 if (current == nullptr) { in ~IPCObjectProxy()
101 current->DetachValidObject(this); in ~IPCObjectProxy()
401 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); in OnLastStrongRef() local
402 if (current == nullptr) { in OnLastStrongRef()
416 current->DetachObject(this); in OnLastStrongRef()
758 IPCProcessSkeleton *current in AddDbinderDeathRecipient() local
808 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); RemoveDbinderDeathRecipient() local
839 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); CheckHaveSession() local
856 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); MakeDBinderTransSession() local
1000 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); ReleaseDatabusProto() local
[all...]
/third_party/jinja2/
H A Dlexer.py307 token = self.stream.current
320 one token ahead. The current active token is stored as :attr:`current`.
334 self.current = Token(1, TOKEN_INITIAL, "")
341 return bool(self._pushed) or self.current.type is not TOKEN_EOF
355 result = self.current
357 self.current = old_token
369 if self.current.test(expr):
383 rv = self.current
386 self.current
[all...]
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dbackward_references_cost_enc.c275 // With the current cost model, we usually have below 20 intervals. in CostManagerInit()
277 // different cost, hence MAX_LENGTH but that is impossible with the current in CostManagerInit()
376 CostInterval* current = manager->head_; in UpdateCostAtIndex() local
378 while (current != NULL && current->start_ <= i) { in UpdateCostAtIndex()
379 CostInterval* const next = current->next_; in UpdateCostAtIndex()
380 if (current->end_ <= i) { in UpdateCostAtIndex()
383 PopInterval(manager, current); in UpdateCostAtIndex()
386 UpdateCost(manager, i, current->index_, current in UpdateCostAtIndex()
395 PositionOrphanInterval(CostManager* const manager, CostInterval* const current, CostInterval* previous) PositionOrphanInterval() argument
[all...]
/third_party/backends/backend/escl/
H A Descl.c108 escl_free_device(ESCL_Device *current) in escl_free_device() argument
110 if (!current) return NULL; in escl_free_device()
111 free((void*)current->ip_address); in escl_free_device()
112 free((void*)current->model_name); in escl_free_device()
113 free((void*)current->type); in escl_free_device()
114 free((void*)current->is); in escl_free_device()
115 free((void*)current->uuid); in escl_free_device()
116 free((void*)current->unix_socket); in escl_free_device()
117 curl_slist_free_all(current->hack); in escl_free_device()
118 free(current); in escl_free_device()
189 escl_check_and_add_device(ESCL_Device *current) escl_check_and_add_device() argument
230 escl_add_in_list(ESCL_Device *current) escl_add_in_list() argument
266 ESCL_Device *current = NULL; escl_device_add() local
[all...]
/third_party/node/deps/v8/tools/
H A Dgen-postmortem-metadata.py659 current = '';
674 current += line[0:ii + 1];
681 if (len(current) > 0):
682 fields.append(parse_field(current));
683 current = '';
694 current += line[0:ii + 1];
696 if (len(current) > 0):
697 fields.append(parse_field(current));
698 current = '';
/third_party/node/tools/gyp/tools/
H A Dpretty_vcproj.py108 for current in node.childNodes:
109 if current.nodeName == "Filter":
110 node_list.extend(FlattenFilter(current))
112 node_list.append(current)
185 current = node.childNodes[0]
186 node.removeChild(current)
190 if current.nodeName == "Filter":
191 node_array.extend(FlattenFilter(current))
193 node_array.append(current)
235 # Get the name of the current nod
[all...]
/third_party/libinput/src/
H A Dutil-prop-parsers.c501 char *current, *next; in parse_evdev_abs_prop() local
512 current = str; in parse_evdev_abs_prop()
514 while (current && *current != '\0' && bit <= ABS_MASK_FLAT) { in parse_evdev_abs_prop()
515 if (*current != ':') { in parse_evdev_abs_prop()
517 next = index(current, ':'); in parse_evdev_abs_prop()
521 if (!safe_atoi(current, &v)) { in parse_evdev_abs_prop()
527 current = next ? ++next : NULL; in parse_evdev_abs_prop()
529 current++; in parse_evdev_abs_prop()
H A Dfilter.c154 unsigned int i, current; in trackers_feed() local
164 current = (trackers->cur_tracker + 1) % trackers->ntrackers; in trackers_feed()
165 trackers->cur_tracker = current; in trackers_feed()
167 ts[current].delta.x = 0.0; in trackers_feed()
168 ts[current].delta.y = 0.0; in trackers_feed()
169 ts[current].time = time; in trackers_feed()
170 ts[current].dir = device_float_get_direction(*delta); in trackers_feed()
219 * different" to our current one. That includes either being too far in the
283 * Calculate the acceleration factor for our current velocity, averaging
284 * between our current an
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-console.cc84 Handle<Object> current = args.at(index); in Formatter() local
87 if (current->IsSymbol()) { in Formatter()
88 current = isolate->factory()->nan_value(); in Formatter()
90 Handle<Object> params[] = {current, in Formatter()
97 .ToHandle(&current)) { in Formatter()
102 Handle<Object> params[] = {current}; in Formatter()
106 .ToHandle(&current)) { in Formatter()
112 states.push({Handle<String>::cast(current), 0}); in Formatter()
134 // with the |current| value. We perform the replacement only morally in Formatter()
137 args.set_at(index++, *current); in Formatter()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/hud/
H A Dhud_sensors_temp.c63 /* The type of measurement, critical or current. */
73 double current, min, max, critical; member
100 sti->current = get_value(sti->chip, sf); in get_sensor_values()
108 sti->current = get_value(sti->chip, sf) * 1000; in get_sensor_values()
115 sti->current = get_value(sti->chip, sf); in get_sensor_values()
132 sti->current = get_value(sti->chip, sf) * 1000; in get_sensor_values()
172 hud_graph_add_value(gr, sti->current); in query_sti_load()
178 hud_graph_add_value(gr, sti->current * 1000); in query_sti_load()
181 hud_graph_add_value(gr, sti->current); in query_sti_load()
184 hud_graph_add_value(gr, sti->current); in query_sti_load()
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dattachment_container.cpp111 if (const auto current = GetValue(att->AttachedTo()).lock()) { in Attach()
112 if (current == owner) { in Attach()
116 if (!current->Detach(attachment)) { in Attach()
139 const auto current = GetValue(att->AttachedTo()).lock(); in Detach() local
140 if (current != owner) { in Detach()
211 if (const auto current = GetValue(attachment->AttachedTo()).lock()) { in AlreadyAttached()
212 if (current == owner) { in AlreadyAttached()
/third_party/skia/tests/
H A DArenaAllocTest.cpp128 Node* current = nullptr; in DEF_TEST() local
130 current = arena.make<Node>(current); in DEF_TEST()
153 Node* current = nullptr; in DEF_TEST() local
156 current = new (temp)Node(current); in DEF_TEST()
158 current->~Node(); in DEF_TEST()
/foundation/communication/ipc/ipc/native/src/mock/source/
H A Dbinder_invoker.cpp99 auto current = ProcessSkeleton::GetInstance(); in ~BinderInvoker() local
100 if (current != nullptr) { in ~BinderInvoker()
101 current->DetachInvokerProcInfo(true); in ~BinderInvoker()
323 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); in GetSAMgrObject() local
324 if (current != nullptr) { in GetSAMgrObject()
325 return current->GetRegistryObject(); in GetSAMgrObject()
344 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); in AddCommAuth() local
345 if (current == nullptr) { in AddCommAuth()
346 ZLOGE(LABEL, "current is null"); in AddCommAuth()
349 data2.WriteString(current in AddCommAuth()
551 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); StartWorkLoop() local
598 ProcessSkeleton *current = ProcessSkeleton::GetInstance(); OnBinderDied() local
635 ProcessSkeleton *current = ProcessSkeleton::GetInstance(); OnAcquireObject() local
726 auto current = ProcessSkeleton::GetInstance(); AttachInvokerProcInfoWrapper() local
758 auto current = ProcessSkeleton::GetInstance(); GeneralServiceSendRequest() local
881 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); OnSpawnThread() local
1456 auto current = ProcessSkeleton::GetInstance(); GetStatus() local
1531 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); UnflattenObject() local
1748 ProcessSkeleton *current = ProcessSkeleton::GetInstance(); ProcDeferredDecRefs() local
[all...]
/third_party/json/include/nlohmann/detail/input/
H A Dbinary_reader.hpp149 if (JSON_HEDLEY_UNLIKELY(current != std::char_traits<char_type>::eof())) in sax_parse()
203 if (current == 0x00) in get_bson_cstr()
207 *out++ = static_cast<typename string_t::value_type>(current); in get_bson_cstr()
423 switch (get_char ? get() : current) in parse_cbor_internal()
454 return sax->number_unsigned(static_cast<number_unsigned_t>(current)); in parse_cbor_internal()
505 return sax->number_integer(static_cast<std::int8_t>(0x20 - 1 - current)); in parse_cbor_internal()
628 conditional_static_cast<std::size_t>(static_cast<unsigned int>(current) & 0x1Fu), tag_handler); in parse_cbor_internal()
682 return get_cbor_object(conditional_static_cast<std::size_t>(static_cast<unsigned int>(current) & 0x1Fu), tag_handler); in parse_cbor_internal()
743 switch (current) in parse_cbor_internal()
779 switch (current) in parse_cbor_internal()
2957 char_int_type current = std::char_traits<char_type>::eof(); global() member in detail::binary_reader
[all...]
/third_party/mesa3d/src/gallium/winsys/amdgpu/drm/
H A Damdgpu_cs.c799 rcs->current.cdw = 0; in amdgpu_get_new_ib()
800 rcs->current.buf = NULL; in amdgpu_get_new_ib()
802 /* Allocate a new buffer for IBs if the current buffer is all used. */ in amdgpu_get_new_ib()
819 rcs->current.buf = (uint32_t*)(ib->ib_mapped + ib->used_ib_space); in amdgpu_get_new_ib()
822 cs->csc->ib_main_addr = rcs->current.buf; in amdgpu_get_new_ib()
825 rcs->current.max_dw = ib_size / 4 - amdgpu_cs_epilog_dws(cs); in amdgpu_get_new_ib()
833 *ib->ptr_ib_size = rcs->current.cdw | in amdgpu_set_ib_size()
836 *ib->ptr_ib_size = rcs->current.cdw; in amdgpu_set_ib_size()
844 ib->used_ib_space += rcs->current.cdw * 4; in amdgpu_ib_finalize()
846 ib->max_ib_size = MAX2(ib->max_ib_size, rcs->prev_dw + rcs->current in amdgpu_ib_finalize()
[all...]
/applications/standard/app_samples/code/Project/HapBuild/compile-tool/bin/
H A Dinit-sdk.sh60 local current="";
63 current=$1;
64 helperKey=${current#*--};
67 helperValue=${current#*=};
68 if [ "$helperValue" == "$current" ]; then
H A Dupdate-sdk.sh68 local current="";
71 current=$1;
72 helperKey=${current#*--};
75 helperValue=${current#*=};
76 if [ "$helperValue" == "$current" ]; then
/base/global/i18n_lite/frameworks/i18n/src/
H A Dstr_util.cpp103 int32_t current = 0; in Split() local
108 while (current < size) { in Split()
115 dst[current++] = std::string(src, begin, end - begin); in Split()
119 if (current < size && end > begin) { in Split()
120 dst[current++] = std::string(src, begin, end - begin); in Split()
/device/soc/rockchip/common/sdk_linux/include/linux/
H A Dfreezer.h64 if (likely(!freezing(current))) { in try_to_freeze_unsafe()
72 if (!(current->flags & PF_NOFREEZE)) { in try_to_freeze()
104 * freezer_do_not_count - tell freezer to ignore %current
106 * Tell freezers to ignore the current task when determining whether the
107 * target frozen state is reached. IOW, the current task will be
116 current->flags |= PF_FREEZER_SKIP; in freezer_do_not_count()
120 * freezer_count - tell freezer to stop ignoring %current
122 * Undo freezer_do_not_count(). It tells freezers that %current should be
128 current->flags &= ~PF_FREEZER_SKIP; in freezer_count()
141 current in freezer_count_unsafe()
[all...]
/third_party/node/deps/npm/node_modules/https-proxy-agent/dist/
H A Dparse-proxy-response.js73 const current = headers[key];
74 if (typeof current === 'string') {
75 headers[key] = [current, value];
77 else if (Array.isArray(current)) {
78 current.push(value);

Completed in 21 milliseconds

1...<<11121314151617181920>>...75