/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | des-internal.c | 320 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 << in desfunc() 403 u32 ek[32], work[2]; des_encrypt() local 437 u32 work[2]; des_block_encrypt() local 448 u32 work[2]; des_block_decrypt() local 471 u32 work[2]; des3_encrypt() local 485 u32 work[2]; des3_decrypt() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | des-internal.c | 320 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 << in desfunc() 403 u32 ek[32], work[2]; des_encrypt() local 437 u32 work[2]; des_block_encrypt() local 448 u32 work[2]; des_block_decrypt() local 471 u32 work[2]; des3_encrypt() local 485 u32 work[2]; des3_decrypt() local [all...] |
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
H A D | workqueue.h | 53 * Define a usable work priority. 61 * Define a usable work priority. 70 * Define a usable work priority. 107 * A work is a node in a workqueue. 110 atomic_long_t data; /**< Input parameter of the work handling function. */ 111 struct list_head entry; /**< Pointer to a doubly linked list of a work. */ 122 * A delayed_work is a work that is delayed to be mounted to a workqueue. 125 struct work_struct work; /**< Work structure. */ member 137 struct list_head worklist; /**< Pointer to a work doubly linked list. */ 166 WORK_BUSY_PENDING = 1U << 0, /**< The status of work ite [all...] |
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
H A D | linux_workqueue.c | 53 * Obtain the first work in a workqueue. 78 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 in RunWorkqueue() 237 struct work_struct *work = NULL; WorkListAdd() local 256 InsertWork(cpu_workqueue_struct *cwq, struct work_struct *work, struct list_head *head, UINT32 *intSave) InsertWork() argument 268 QueueWork(cpu_workqueue_struct *cwq, struct work_struct *work, UINT32 *intSave) QueueWork() argument 273 QueueWorkOn(struct workqueue_struct *wq, struct work_struct *work, UINT32 *intSave) QueueWorkOn() argument 293 linux_queue_work(struct workqueue_struct *wq, struct work_struct *work) linux_queue_work() argument 310 linux_cancel_work_sync(struct work_struct *work) linux_cancel_work_sync() argument 331 linux_flush_work(struct work_struct *work) linux_flush_work() argument 368 struct work_struct *work = NULL; queue_delayed_work() local 414 struct work_struct *work = NULL; linux_cancel_delayed_work() local 482 linux_work_busy(struct work_struct *work) linux_work_busy() argument 499 linux_schedule_work(struct work_struct *work) linux_schedule_work() argument [all...] |
H A D | linux_interrupt.c | 87 struct work_struct *work = NULL; in irq_bottom_half() local 99 work = (struct work_struct *)LOS_MemAlloc(m_aucSysMem0, sizeof(struct work_struct)); in irq_bottom_half() 100 if (work == NULL) { in irq_bottom_half() 104 INIT_WORK(work, handler); in irq_bottom_half() 106 work->data = (atomic_long_t)data; in irq_bottom_half() 108 work->work_pri = pri; in irq_bottom_half() 110 if (!(queue_work(workQueue, work))) { in irq_bottom_half() 111 (VOID)LOS_MemFree(m_aucSysMem0, work); in irq_bottom_half()
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | scheduler.cpp | 367 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() 440 // Lock the work mutex to call suspend(). in wait() 441 work.mutex.lock(); in wait() 443 // Unlock the wait mutex with the work mutex lock held. in wait() 453 // Fiber resumed. We don't need the work mutex locked any more. in wait() 454 work.mutex.unlock(); in wait() 475 work in suspend() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | asrc_sinc.c | 218 float *pi_wraps, *work, phase1 = (phase > 50.f ? 100.f - phase : phase) / 50.f; in fir_to_phase() local 225 /* The first part is for work (+2 for (UN)PACK), the latter for pi_wraps. */ in fir_to_phase() 226 work = av_calloc((work_len + 2) + (work_len / 2 + 1), sizeof(float)); in fir_to_phase() 227 if (!work) in fir_to_phase() 229 pi_wraps = &work[work_len + 2]; in fir_to_phase() 231 memcpy(work, *h, *len * sizeof(*work)); in fir_to_phase() 238 av_free(work); in fir_to_phase() 242 s->tx_fn(s->tx, work, work, sizeo in fir_to_phase() [all...] |
H A D | vf_framerate.c | 98 AVFrame *work = s->work; in filter_slice() local 110 uint8_t *dst_data = work->data[plane] + start * work->linesize[plane]; in filter_slice() 113 dst_data, work->linesize[plane], s->line_size[plane], end - start, in filter_slice() 141 // get work-space for output frame in blend_frames() 142 s->work = ff_get_video_buffer(outlink, outlink->w, outlink->h); in blend_frames() 143 if (!s->work) in blend_frames() 146 av_frame_copy_props(s->work, s->f0); in blend_frames() 148 ff_dlog(ctx, "blend_frames() INTERPOLATE to create work fram in blend_frames() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | ra144enc.c | 127 * @param work array used to calculate the filtered vector 136 static void get_match_score(float *work, const float *coefs, float *vect, in get_match_score() argument 143 ff_celp_lp_synthesis_filterf(work, coefs, vect, BLOCKSIZE, LPC_ORDER); in get_match_score() 145 orthogonalize(work, ortho1); in get_match_score() 147 orthogonalize(work, ortho2); in get_match_score() 150 g += work[i] * work[i]; in get_match_score() 151 c += data[i] * work[i]; in get_match_score() 187 * @param work array used to calculate LPC-filtered vectors 192 static int adaptive_cb_search(const int16_t *adapt_cb, float *work, in adaptive_cb_search() argument 240 find_best_vect(float *work, const float *coefs, const int8_t cb[][BLOCKSIZE], const float *ortho1, const float *ortho2, float *data, int *idx, float *gain) find_best_vect() argument 275 fixed_cb_search(float *work, const float *coefs, float *data, int cba_idx, int *cb1_idx, int *cb2_idx) fixed_cb_search() argument 329 float data[BLOCKSIZE] = { 0 }, work[LPC_ORDER + BLOCKSIZE]; ra144_encode_subblock() local [all...] |
/third_party/skia/third_party/externals/freetype/builds/ |
H A D | toplevel.mk | 204 work := $(strip $(shell $(CAT) \ macro 206 work := $(subst |,x,$(work)) macro 207 work := $(subst $(space),|,$(work)) macro 208 work := $(subst \#define|FREETYPE_MAJOR|,$(space),$(work)) macro 209 work := $(word 2,$(work)) macro 210 major := $(subst |,$(space),$(work)) 213 work := $(subst \\#define|FREETYPE_MINOR|,$(space),$(work)) global() macro 214 work := $(word 2,$(work)) global() macro 218 work := $(subst \\#define|FREETYPE_PATCH|,$(space),$(work)) global() macro 219 work := $(word 2,$(work)) global() macro [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/ |
H A D | nouveau_fence.c | 41 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() 104 debug_printf("WARNING: deleting fence with work stil in nouveau_fence_del() 278 struct nouveau_fence_work *work; nouveau_fence_work() local [all...] |
/third_party/libuv/src/ |
H A D | threadpool.c | 93 w->work(w); in uv_dump_worker() 107 static void uv__queue_work_info(struct uv__statistic_work *work) { in uv__queue_work_info() argument 124 uv__queue_insert_head(&dump_queue, &work->info->wq); in uv__queue_work_info() 129 static void uv__update_work_info(struct uv__statistic_work *work) { in uv__update_work_info() argument 131 if (work != NULL && work->info != NULL) { in uv__update_work_info() 132 work->info->state = work->state; in uv__update_work_info() 133 switch (work->state) { in uv__update_work_info() 135 work in uv__update_work_info() 586 uv__task_done_wrapper(void* work, int status) uv__task_done_wrapper() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
H A D | scheduler.h | 41 // work tasks to be executed asynchronously. 62 // Initializer function to call after thread creation and before any work 133 // of the fiber and start executing other pending work. Once the block has 272 State state = State::Running; // Guarded by Worker's work.mutex. 340 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 473 Work work; global() member in marl::Scheduler::Worker [all...] |
H A D | dag.h | 93 // DAG work node. 96 MARL_NO_EXPORT inline Node(Work&& work); 98 // The work to perform for this node in the graph. 99 Work work; member 121 // invoke() calls the work function for the node with the given index, then 138 DAGBase<T>::Node::Node(Work&& work) : work(std::move(work)) {} in Node() argument 167 // Run this node's work. in invoke() 168 if (node->work) { in invoke() 235 then(F&& work) then() argument 313 node(F&& work) node() argument 319 node( F&& work, std::initializer_list<DAGNodeBuilder<T>> after) node() argument [all...] |
/third_party/node/deps/v8/third_party/zlib/ |
H A D | inftrees.c | 23 whose indices are 0..2^bits-1. work is a writable array of at least 24 lens shorts, which is used as a work area. type is the type of code 32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() 38 unsigned short FAR *work; 96 table. The sorted table is work[], with that space being provided by 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[sy [all...] |
/third_party/skia/third_party/externals/zlib/ |
H A D | inftrees.c | 23 whose indices are 0..2^bits-1. work is a writable array of at least 24 lens shorts, which is used as a work area. type is the type of code 32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() 38 unsigned short FAR *work; 96 table. The sorted table is work[], with that space being provided by 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[sy [all...] |
/third_party/skia/src/pathops/ |
H A D | SkPathOpsTSect.cpp | 128 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, doubl argument 736 SkTSpan* work = first; computePerpendiculars() local 944 SkTSpan* work = first; findCoincidentRun() local [all...] |
/third_party/libwebsockets/plugins/ssh-base/crypto/ |
H A D | smult_curve25519_ref.c | 124 static void mainloop(unsigned int work[64],const unsigned char e[32]) in mainloop() argument 145 for (j = 0;j < 32;++j) xzm1[j] = work[j]; in mainloop() 173 mult(xzn1b + 32,r,work); in mainloop() 177 for (j = 0;j < 64;++j) work[j] = xzm[j]; in mainloop() 251 unsigned int work[96]; in crypto_scalarmult_curve25519() local 258 for (i = 0;i < 32;++i) work[i] = p[i]; in crypto_scalarmult_curve25519() 259 mainloop(work,e); in crypto_scalarmult_curve25519() 260 recip(work + 32,work + 32); in crypto_scalarmult_curve25519() 261 mult(work in crypto_scalarmult_curve25519() [all...] |
/third_party/astc-encoder/Source/ |
H A D | astcenccli_toplevel.cpp | 239 compression_workload* work = static_cast<compression_workload*>(payload); in compression_workload_runner() local 241 work->context, work->image, &work->swizzle, in compression_workload_runner() 242 work->data_out, work->data_len, in compression_workload_runner() 244 work->calQualityEnable, work->mse, in compression_workload_runner() 252 work->error = error; in compression_workload_runner() 270 decompression_workload* work in decompression_workload_runner() local [all...] |
/third_party/skia/src/core/ |
H A D | SkExecutor.cpp | 32 // The default default SkExecutor is an SkTrivialExecutor, which just runs the work right away. 34 void add(std::function<void(void)> work) override { 35 work(); 57 // We'll always push_back() new work, but pop from the front of deques or the back of SkTArray. 69 // An SkThreadPool is an executor that runs work on a fixed pool of OS threads. 90 void add(std::function<void(void)> work) override { 91 // Add some work to our pile of work to do. 94 fWork.emplace_back(std::move(work)); 101 // If there is work waitin 110 std::function<void(void)> work; do_work() local [all...] |
/third_party/node/deps/zlib/ |
H A D | inftrees.c | 23 whose indices are 0..2^bits-1. work is a writable array of at least 24 lens shorts, which is used as a work area. type is the type of code 34 unsigned FAR *bits, unsigned short FAR *work) { in inflate_table() 91 table. The sorted table is work[], with that space being provided by in inflate_table() 142 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table() 178 base = extra = work; /* dummy value--not used */ in inflate_table() 212 if (work[sym] + 1U < match) { in inflate_table() 214 here.val = work[sym]; in inflate_table() 216 else if (work[sym] >= match) { in inflate_table() 217 here.op = (unsigned char)(extra[work[sy in inflate_table() 32 inflate_table(codetype type, unsigned short FAR *lens, unsigned codes, code FAR * FAR *table, unsigned FAR *bits, unsigned short FAR *work) inflate_table() argument [all...] |
/third_party/zlib/contrib/infback9/ |
H A D | inftree9.c | 23 whose indices are 0..2^bits-1. work is a writable array of at least 24 lens shorts, which is used as a work area. type is the type of code 34 unsigned short FAR *work) { in inflate_table9() 93 table. The sorted table is work[], with that space being provided by in inflate_table9() 136 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table9() 172 base = extra = work; /* dummy value--not used */ in inflate_table9() 208 if ((int)(work[sym]) < end) { in inflate_table9() 210 this.val = work[sym]; in inflate_table9() 212 else if ((int)(work[sym]) > end) { in inflate_table9() 213 this.op = (unsigned char)(extra[work[sy in inflate_table9() 32 inflate_table9(codetype type, unsigned short FAR *lens, unsigned codes, code FAR * FAR *table, unsigned FAR *bits, unsigned short FAR *work) inflate_table9() argument [all...] |
/third_party/zlib/ |
H A D | inftrees.c | 23 whose indices are 0..2^bits-1. work is a writable array of at least 24 lens shorts, which is used as a work area. type is the type of code 34 unsigned FAR *bits, unsigned short FAR *work) { in inflate_table() 91 table. The sorted table is work[], with that space being provided by in inflate_table() 142 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table() 178 base = extra = work; /* dummy value--not used */ in inflate_table() 212 if (work[sym] + 1U < match) { in inflate_table() 214 here.val = work[sym]; in inflate_table() 216 else if (work[sym] >= match) { in inflate_table() 217 here.op = (unsigned char)(extra[work[sy in inflate_table() 32 inflate_table(codetype type, unsigned short FAR *lens, unsigned codes, code FAR * FAR *table, unsigned FAR *bits, unsigned short FAR *work) inflate_table() argument [all...] |
/third_party/libwebsockets/win32port/zlib/ |
H A D | inftrees.c | 23 whose indices are 0..2^bits-1. work is a writable array of at least
24 lens shorts, which is used as a work area. type is the type of code
32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work)
in inflate_table() 38 unsigned short FAR *work;
96 table. The sorted table is work[], with that space being provided by
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
183 base = extra = work; /* dummy value--not used */
217 if (work[sym] + 1 < match) {
219 here.val = work[sym];
221 else if (work[sy [all...] |
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | picture_rescale_enc.c | 171 rescaler_t* const work, in RescalePlane() 177 num_channels, work)) { in RescalePlane() 204 rescaler_t* work; in WebPPictureRescale() local 220 work = (rescaler_t*)WebPSafeMalloc(2ULL * width, sizeof(*work)); in WebPPictureRescale() 221 if (work == NULL) { in WebPPictureRescale() 229 tmp.a, width, height, tmp.a_stride, work, 1)) { in WebPPictureRescale() 238 tmp.y, width, height, tmp.y_stride, work, 1) || in WebPPictureRescale() 242 HALVE(width), HALVE(height), tmp.uv_stride, work, 1) || in WebPPictureRescale() 246 HALVE(width), HALVE(height), tmp.uv_stride, work, in WebPPictureRescale() 167 RescalePlane(const uint8_t* src, int src_width, int src_height, int src_stride, uint8_t* dst, int dst_width, int dst_height, int dst_stride, rescaler_t* const work, int num_channels) RescalePlane() argument [all...] |