Home
last modified time | relevance | path

Searched refs:work (Results 1 – 25 of 3506) sorted by relevance

12345678910>>...141

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Ddes-internal.c320 u32 work, right, leftt; in desfunc() local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc()
327 right ^= work; in desfunc()
328 leftt ^= (work << 4); in desfunc()
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc()
331 right ^= work; in desfunc()
332 leftt ^= (work << 16); in desfunc()
334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc()
335 leftt ^= work; in desfunc()
336 right ^= (work << 2); in desfunc()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Ddes-internal.c320 u32 work, right, leftt; in desfunc() local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc()
327 right ^= work; in desfunc()
328 leftt ^= (work << 4); in desfunc()
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc()
331 right ^= work; in desfunc()
332 leftt ^= (work << 16); in desfunc()
334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc()
335 leftt ^= work; in desfunc()
336 right ^= (work << 2); in desfunc()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/librfb/
Dd3des.c180 unsigned long work[2]; in des() local
182 scrunch (inblock, work); in des()
183 desfunc (work, ctx->KnL); in des()
184 unscrun (work, outblock); in des()
371 register unsigned long fval, work, right, leftt; in desfunc() local
376 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc()
377 right ^= work; in desfunc()
378 leftt ^= (work << 4); in desfunc()
379 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc()
380 right ^= work; in desfunc()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Did3v2frames.c42 static gboolean parse_comment_frame (ID3TagsWorking * work);
43 static gchar *parse_url_link_frame (ID3TagsWorking * work,
45 static GArray *parse_text_identification_frame (ID3TagsWorking * work);
46 static gchar *parse_user_text_identification_frame (ID3TagsWorking * work,
48 static gchar *parse_unique_file_identifier (ID3TagsWorking * work,
50 static gboolean parse_relative_volume_adjustment_two (ID3TagsWorking * work);
51 static void parse_obsolete_tdat_frame (ID3TagsWorking * work);
52 static gboolean id3v2_tag_to_taglist (ID3TagsWorking * work,
59 id3v2_genre_fields_to_taglist (ID3TagsWorking * work, const gchar * tag_name,
61 static gboolean parse_picture_frame (ID3TagsWorking * work);
[all …]
Did3v2.c32 static gboolean id3v2_frames_to_tag_list (ID3TagsWorking * work, guint size);
195 ID3TagsWorking work; in gst_tag_list_from_id3v2_tag() local
234 memset (&work, 0, sizeof (ID3TagsWorking)); in gst_tag_list_from_id3v2_tag()
235 work.buffer = buffer; in gst_tag_list_from_id3v2_tag()
236 work.hdr.version = version; in gst_tag_list_from_id3v2_tag()
237 work.hdr.size = read_size; in gst_tag_list_from_id3v2_tag()
238 work.hdr.flags = flags; in gst_tag_list_from_id3v2_tag()
239 work.hdr.frame_data = info.data + ID3V2_HDR_SIZE; in gst_tag_list_from_id3v2_tag()
244 work.hdr.frame_data_size = read_size - ID3V2_HDR_SIZE - 10; in gst_tag_list_from_id3v2_tag()
247 work.hdr.frame_data_size = read_size - ID3V2_HDR_SIZE; in gst_tag_list_from_id3v2_tag()
[all …]
/third_party/typescript/tests/baselines/reference/
DtypeFromPropertyAssignment14.symbols3 >Outer : Symbol(Outer, Decl(def.js, 0, 3), Decl(work.js, 0, 0), Decl(work.js, 0, 28))
5 === tests/cases/conformance/salsa/work.js ===
7 >Outer.Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6))
8 >Outer : Symbol(Outer, Decl(def.js, 0, 3), Decl(work.js, 0, 0), Decl(work.js, 0, 28))
9 >Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6))
12 >Outer.Inner.prototype : Symbol(Outer.Inner.prototype, Decl(work.js, 0, 28))
13 >Outer.Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6))
14 >Outer : Symbol(Outer, Decl(def.js, 0, 3), Decl(work.js, 0, 0), Decl(work.js, 0, 28))
15 >Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6))
16 >prototype : Symbol(Outer.Inner.prototype, Decl(work.js, 0, 28))
[all …]
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dworkqueue.h127 struct work_struct work; /**< Work structure. */ member
179 #define INIT_WORK(work, callbackFunc) do { \ argument
180 INIT_LIST_HEAD(&((work)->entry)); \
181 (work)->func = (callbackFunc); \
182 (work)->data = (atomic_long_t)(0); \
183 (work)->work_status = 0; \
184 (work)->work_pri = OS_WORK_PRIORITY_DEFAULT; \
187 #define INIT_WORK(work, callbackFunc) do { \ argument
188 INIT_LIST_HEAD(&((work)->entry)); \
189 (work)->func = (callbackFunc); \
[all …]
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/
Dlinux_workqueue.c78 INIT_WORK(&(dwork->work), func); in linux_init_delayed_work()
82 dwork->work.work_status = 0; in linux_init_delayed_work()
200 struct work_struct *work = NULL; in RunWorkqueue() local
207 work = worklist_entry(cwq->worklist.next, struct work_struct, entry); in RunWorkqueue()
208 work->work_status |= WORK_STRUCT_RUNNING; in RunWorkqueue()
210 func = work->func; in RunWorkqueue()
212 cwq->current_work = work; in RunWorkqueue()
214 func(work); in RunWorkqueue()
218 if (work->work_status & WORK_STRUCT_RUNNING) { in RunWorkqueue()
219 work->work_status &= ~(WORK_STRUCT_RUNNING | WORK_STRUCT_PENDING); in RunWorkqueue()
[all …]
Dlinux_interrupt.c89 struct work_struct *work = NULL; in irq_bottom_half() local
101 work = (struct work_struct *)LOS_MemAlloc(m_aucSysMem0, sizeof(struct work_struct)); in irq_bottom_half()
102 if (work == NULL) { in irq_bottom_half()
106 INIT_WORK(work, handler); in irq_bottom_half()
108 work->data = (atomic_long_t)data; in irq_bottom_half()
110 work->work_pri = pri; in irq_bottom_half()
112 if (!(queue_work(workQueue, work))) { in irq_bottom_half()
113 (VOID)LOS_MemFree(m_aucSysMem0, work); in irq_bottom_half()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
Dscheduler.cpp367 work(scheduler->cfg.allocator), in Worker()
388 marl::lock lock(work.mutex); in start()
415 marl::lock lock(work.mutex); in stop()
429 marl::lock lock(work.mutex); in wait()
441 work.mutex.lock(); in wait()
454 work.mutex.unlock(); in wait()
475 work.waiting.add(*timeout, currentFiber); in suspend()
484 work.numBlockedFibers++; in suspend()
486 if (!work.fibers.empty()) { in suspend()
488 work.num--; in suspend()
[all …]
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/property_member_declarations/member_variable_declarations/
Dmember_variable_declarations_2.ts28 public work: boolean; property in Staff1
29 constructor(name: string, place: string, work: boolean) {
32 this.work = work;
34 initializer(name: string, place: string, work: boolean) {
37 this.work = work;
43 public work: boolean; property in Staff2
44 constructor(name: string, place: string, work: boolean) {
47 this.work = work;
55 Assert.equal(em1.work, true);
58 Assert.equal(em2.work, true);
/third_party/ffmpeg/libavfilter/
Dasrc_sinc.c223 float *pi_wraps, *work, phase1 = (phase > 50.f ? 100.f - phase : phase) / 50.f; in fir_to_phase() local
231 work = av_calloc((work_len + 2) + (work_len / 2 + 1), sizeof(float)); in fir_to_phase()
232 if (!work) in fir_to_phase()
234 pi_wraps = &work[work_len + 2]; in fir_to_phase()
236 memcpy(work, *h, *len * sizeof(*work)); in fir_to_phase()
244 av_free(work); in fir_to_phase()
248 av_rdft_calc(s->rdft, work); /* Cepstral: */ in fir_to_phase()
249 UNPACK(work, work_len); in fir_to_phase()
252 float angle = atan2f(work[i + 1], work[i]); in fir_to_phase()
267 work[i] = safe_log(sqrtf(SQR(work[i]) + SQR(work[i + 1]))); in fir_to_phase()
[all …]
/third_party/ffmpeg/libavcodec/
Dra144enc.c139 static void get_match_score(float *work, const float *coefs, float *vect, in get_match_score() argument
146 ff_celp_lp_synthesis_filterf(work, coefs, vect, BLOCKSIZE, LPC_ORDER); in get_match_score()
148 orthogonalize(work, ortho1); in get_match_score()
150 orthogonalize(work, ortho2); in get_match_score()
153 g += work[i] * work[i]; in get_match_score()
154 c += data[i] * work[i]; in get_match_score()
195 static int adaptive_cb_search(const int16_t *adapt_cb, float *work, in adaptive_cb_search() argument
205 get_match_score(work, coefs, exc, NULL, NULL, data, &score, &gain); in adaptive_cb_search()
220 ff_celp_lp_synthesis_filterf(work, coefs, exc, BLOCKSIZE, LPC_ORDER); in adaptive_cb_search()
222 data[i] -= best_gain * work[i]; in adaptive_cb_search()
[all …]
/third_party/astc-encoder/Source/
Dastcenccli_toplevel.cpp202 compression_workload* work = static_cast<compression_workload*>(payload); in compression_workload_runner() local
204 work->context, work->image, &work->swizzle, in compression_workload_runner()
205 work->data_out, work->data_len, in compression_workload_runner()
207 work->calQualityEnable, work->mse, in compression_workload_runner()
215 work->error = error; in compression_workload_runner()
233 decompression_workload* work = static_cast<decompression_workload*>(payload); in decompression_workload_runner() local
235 work->context, work->data, work->data_len, in decompression_workload_runner()
236 work->image_out, &work->swizzle, thread_id); in decompression_workload_runner()
242 work->error = error; in decompression_workload_runner()
1645 compression_workload work; in main() local
[all …]
/third_party/skia/third_party/externals/freetype/builds/
Dtoplevel.mk204 work := $(strip $(shell $(CAT) \
206 work := $(subst |,x,$(work))
207 work := $(subst $(space),|,$(work))
208 work := $(subst \#define|FREETYPE_MAJOR|,$(space),$(work))
209 work := $(word 2,$(work))
210 major := $(subst |,$(space),$(work))
213 work := $(subst \#define|FREETYPE_MINOR|,$(space),$(work))
214 work := $(word 2,$(work))
215 minor := $(subst |,$(space),$(work))
218 work := $(subst \#define|FREETYPE_PATCH|,$(space),$(work))
[all …]
/third_party/libuv/src/
Dthreadpool.c96 w->work(w); in uv_dump_worker()
110 static void uv__queue_work_info(struct uv__statistic_work *work) { in uv__queue_work_info() argument
127 QUEUE_INSERT_HEAD(&dump_queue, &work->info->wq); in uv__queue_work_info()
132 static void uv__update_work_info(struct uv__statistic_work *work) { in uv__update_work_info() argument
134 if (work != NULL && work->info != NULL) { in uv__update_work_info()
135 work->info->state = work->state; in uv__update_work_info()
136 switch (work->state) { in uv__update_work_info()
138 work->info->queue_time = work->time; in uv__update_work_info()
141 work->info->execute_start_time = work->time; in uv__update_work_info()
144 work->info->execute_end_time = work->time; in uv__update_work_info()
[all …]
/third_party/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_fence.c41 list_inithead(&(*fence)->work); in nouveau_fence_new()
49 struct nouveau_fence_work *work, *tmp; in nouveau_fence_trigger_work() local
51 LIST_FOR_EACH_ENTRY_SAFE(work, tmp, &fence->work, list) { in nouveau_fence_trigger_work()
52 work->func(work->data); in nouveau_fence_trigger_work()
53 list_del(&work->list); in nouveau_fence_trigger_work()
54 FREE(work); in nouveau_fence_trigger_work()
103 if (!list_is_empty(&fence->work)) { in nouveau_fence_del()
278 struct nouveau_fence_work *work; in nouveau_fence_work() local
285 work = CALLOC_STRUCT(nouveau_fence_work); in nouveau_fence_work()
286 if (!work) in nouveau_fence_work()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
Dscheduler.h340 void start() EXCLUDES(work.mutex);
344 void stop() EXCLUDES(work.mutex);
351 EXCLUDES(work.mutex);
357 bool wait(const TimePoint* timeout) EXCLUDES(work.mutex);
362 void suspend(const TimePoint* timeout) REQUIRES(work.mutex);
365 void enqueue(Fiber* fiber) EXCLUDES(work.mutex);
368 void enqueue(Task&& task) EXCLUDES(work.mutex);
373 bool tryLock() EXCLUDES(work.mutex) TRY_ACQUIRE(true, work.mutex);
378 void enqueueAndUnlock(Task&& task) REQUIRES(work.mutex) RELEASE(work.mutex);
382 void runUntilShutdown() REQUIRES(work.mutex);
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_compute_variable_group_size.txt53 operate on work groups with arbitrary dimensions. Instead of specifying a
54 fixed work group size in the compute shader, an application can use a
56 a variable work group size. When using such compute shaders, the new
57 command DispatchComputeGroupSizeARB should be used to specify both a work
58 group size and work group count.
98 ... One or more work groups is launched by calling
111 For DispatchCompute, the local work size in each dimension must be
113 stage. The local work size is specified using an input layout qualifer
118 For DispatchComputeGroupSizeARB, the local work size must be specified as
122 COMPUTE_WORK_GROUP_SIZE query, a program without a local work size
[all …]
/third_party/spirv-tools/docs/
Dprojects.md1 # Tracking SPIRV-Tools work with GitHub projects
4 feature](https://help.github.com/articles/tracking-the-progress-of-your-work-with-projects/)
16 A GitHub Project is a set of work with an overall purpose, and
21 In our projects, a card represents work, i.e. a change that can
23 The work could be a feature, a bug to be fixed, documentation to be
30 In our usage, a *project manager* is someone who organizes the work.
35 * They determine if the work for a card has been completed.
42 * `Ready to start`: Issues which represent work we'd like to do, and which
43 are not blocked by other work.
46 * We want these to be Issues (not Notes) so that someone can claim the work
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/docs/
Dprojects.md1 # Tracking SPIRV-Tools work with GitHub projects
4 feature](https://help.github.com/articles/tracking-the-progress-of-your-work-with-projects/)
16 A GitHub Project is a set of work with an overall purpose, and
21 In our projects, a card represents work, i.e. a change that can
23 The work could be a feature, a bug to be fixed, documentation to be
30 In our usage, a *project manager* is someone who organizes the work.
35 * They determine if the work for a card has been completed.
42 * `Ready to start`: Issues which represent work we'd like to do, and which
43 are not blocked by other work.
46 * We want these to be Issues (not Notes) so that someone can claim the work
[all …]
/third_party/skia/third_party/externals/spirv-tools/docs/
Dprojects.md1 # Tracking SPIRV-Tools work with GitHub projects
4 feature](https://help.github.com/articles/tracking-the-progress-of-your-work-with-projects/)
16 A GitHub Project is a set of work with an overall purpose, and
21 In our projects, a card represents work, i.e. a change that can
23 The work could be a feature, a bug to be fixed, documentation to be
30 In our usage, a *project manager* is someone who organizes the work.
35 * They determine if the work for a card has been completed.
42 * `Ready to start`: Issues which represent work we'd like to do, and which
43 are not blocked by other work.
46 * We want these to be Issues (not Notes) so that someone can claim the work
[all …]
/third_party/skia/src/pathops/
DSkPathOpsTSect.cpp128 const SkTSpan* work = this; in debugIsBefore() local
130 if (span == work) { in debugIsBefore()
133 } while ((work = work->fNext)); in debugIsBefore()
139 const SkTSpan* work = this; in contains() local
141 if (between(work->fStartT, t, work->fEndT)) { in contains()
144 } while ((work = work->fNext)); in contains()
403 bool SkTSpan::splitAt(SkTSpan* work, double t, SkArenaAlloc* heap) { in splitAt() argument
405 fEndT = work->fEndT; in splitAt()
410 work->fEndT = t; in splitAt()
411 if (work->fStartT == work->fEndT) { in splitAt()
[all …]
/third_party/node/deps/v8/third_party/zlib/
Dinftrees.c32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument
38 unsigned short FAR *work;
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
183 base = extra = work; /* dummy value--not used */
217 if (work[sym] + 1U < match) {
219 here.val = work[sym];
221 else if (work[sym] >= match) {
222 here.op = (unsigned char)(extra[work[sym] - match]);
223 here.val = base[work[sym] - match];
254 len = lens[work[sym]];
/third_party/skia/third_party/externals/zlib/
Dinftrees.c32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument
38 unsigned short FAR *work;
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
183 base = extra = work; /* dummy value--not used */
217 if (work[sym] + 1U < match) {
219 here.val = work[sym];
221 else if (work[sym] >= match) {
222 here.op = (unsigned char)(extra[work[sym] - match]);
223 here.val = base[work[sym] - match];
254 len = lens[work[sym]];

12345678910>>...141