/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/core/ |
H A D | dc_debug.c | 186 const struct dc_surface_update *update = &updates[i]; in update_surface_trace() local 189 if (update->flip_addr) { in update_surface_trace() 194 update->flip_addr->address.type, in update_surface_trace() 195 update->flip_addr->address.grph.addr.quad_part, in update_surface_trace() 196 update->flip_addr->address.grph.meta_addr.quad_part, in update_surface_trace() 197 update->flip_addr->flip_immediate); in update_surface_trace() 200 if (update->plane_info) { in update_surface_trace() 211 update->plane_info->color_space, in update_surface_trace() 212 update->plane_info->format, in update_surface_trace() 213 update in update_surface_trace() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/core/ |
H A D | dc_debug.c | 186 const struct dc_surface_update *update = &updates[i]; in update_surface_trace() local 189 if (update->flip_addr) { in update_surface_trace() 194 update->flip_addr->address.type, in update_surface_trace() 195 update->flip_addr->address.grph.addr.quad_part, in update_surface_trace() 196 update->flip_addr->address.grph.meta_addr.quad_part, in update_surface_trace() 197 update->flip_addr->flip_immediate); in update_surface_trace() 200 if (update->plane_info) { in update_surface_trace() 211 update->plane_info->color_space, in update_surface_trace() 212 update->plane_info->format, in update_surface_trace() 213 update in update_surface_trace() [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | htab_mem_bench.c | 58 struct update_ctx update; in overwrite() local 60 update.from = bpf_get_smp_processor_id(); in overwrite() 61 update.step = nr_thread; in overwrite() 62 bpf_loop(OP_BATCH, overwrite_htab, &update, 0); in overwrite() 70 struct update_ctx update; in batch_add_batch_del() local 72 update.from = bpf_get_smp_processor_id(); in batch_add_batch_del() 73 update.step = nr_thread; in batch_add_batch_del() 74 bpf_loop(OP_BATCH, overwrite_htab, &update, 0); in batch_add_batch_del() 76 update.from = bpf_get_smp_processor_id(); in batch_add_batch_del() 77 bpf_loop(OP_BATCH, del_htab, &update, in batch_add_batch_del() 86 struct update_ctx update; add_only() local 98 struct update_ctx update; del_only() local [all...] |
H A D | test_bpf_cookie.c | 23 static void update(void *ctx, __u64 *res) in update() function 34 update(ctx, &kprobe_res); in handle_kprobe() 41 update(ctx, &kretprobe_res); in handle_kretprobe() 48 update(ctx, &uprobe_res); in handle_uprobe() 55 update(ctx, &uretprobe_res); in handle_uretprobe() 67 update(ctx, &tp_res); in handle_tp1() 73 update(ctx, &tp_res); in handle_tp2() 79 update(ctx, &tp_res); in handle_tp3() 86 update(ctx, &pe_res); in handle_pe() 93 update(ct in BPF_PROG() [all...] |
/third_party/node/test/parallel/ |
H A D | test-crypto-binary-default.js | 67 .update('some data') 68 .update('to hmac') 223 .update(testCase.data) 351 .update(testCase.data) 360 .update(testCase.data) 368 const a1 = crypto.createHash('sha1').update('Test123').digest('hex'); 369 const a2 = crypto.createHash('sha256').update('Test123').digest('base64'); 370 const a3 = crypto.createHash('sha512').update('Test123').digest(); // binary 371 const a4 = crypto.createHash('sha1').update('Test123').digest('buffer'); 374 const a0 = crypto.createHash('md5').update('Test12 [all...] |
H A D | test-crypto-cipher-decipher.js | 29 let ciph = cipher.update(plaintext, 'utf8', 'hex'); 34 let txt = decipher.update(ciph, 'hex', 'utf8'); 66 let ciph = cipher.update(plaintext, 'utf8', 'base64'); 70 let txt = decipher.update(ciph, 'base64', 'utf8'); 105 () => crypto.createCipher('aes-256-cbc', 'secret').update(null), 153 const s = c.update('test', 'utf8', 'base64') + c.final('base64'); 171 // string to Cipher#update() should not assert. 174 c.update('update'); 182 c.update('updat [all...] |
H A D | test-crypto-rsa-dsa-revert.js | 328 rsaSign.update(rsaPubPem); 332 rsaVerify.update(rsaPubPem); 337 rsaSign.update(rsaPubPem); 342 rsaVerify.update(rsaPubPem); 347 rsaSign.update(rsaPubPem); 353 rsaVerify.update(rsaPubPem); 357 rsaSign.update(rsaPubPem); 378 sign.update(input); 384 verify.update(input); 390 sign2.update(inpu [all...] |
H A D | test-crypto-rsa-dsa.js | 345 rsaSign.update(rsaPubPem); 349 rsaVerify.update(rsaPubPem); 354 rsaSign.update(rsaPubPem); 359 rsaVerify.update(rsaPubPem); 364 rsaSign.update(rsaPubPem); 370 rsaVerify.update(rsaPubPem); 374 rsaSign.update(rsaPubPem); 395 sign.update(input); 401 verify.update(input); 407 sign2.update(inpu [all...] |
H A D | test-crypto-authenticated.js | 122 let hex = encrypt.update(test.plain, inputEncoding, 'hex'); 152 let msg = decrypt.update(test.ct, 'hex', outputEncoding); 171 let hex = encrypt.update(test.plain, 'ascii', 'hex'); 191 let msg = decrypt.update(test.ct, 'hex', 'ascii'); 208 encrypt.update('blah', 'ascii'); 230 encrypt.update('blah', 'ascii'); 287 cipher.update('01234567', 'hex'); 313 decipher.update('3a2a3647', 'hex'), 463 // Test that setAAD and update throw if the plaintext is too long. 482 cipher().update(ms [all...] |
H A D | test-crypto-sign-verify.js | 61 .update('Test123') 98 .update('Test123') 106 .update('Test') 107 .update('123') 114 .update('Test123') 122 .update('Test') 123 .update('123') 137 .update('Test123') 140 .update('Test') 141 .update('12 [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | gen_dxgi_support_tables.py | 206 optionally_supported.update(d3d_flag) 208 always_supported.update(d3d_flag) 210 never_supported.update(d3d_flag) 212 fl_10_0_supported.update(d3d_flag) 214 fl_10_1_supported.update(d3d_flag) 216 fl_11_0_supported.update(d3d_flag) 218 fl_11_1_supported.update(d3d_flag) 221 always_supported.update(d3d_flag) 223 fl_10_0_check_10_1_supported.update(d3d_flag) 225 fl_10_0_check_11_0_supported.update(d3d_fla [all...] |
/third_party/libdrm/ |
H A D | xf86drmSL.c | 138 static SLEntryPtr SLLocate(void *l, unsigned long key, SLEntryPtr *update) in SLLocate() argument 149 update[i] = entry; in SLLocate() 159 SLEntryPtr update[SL_MAX_LEVEL + 1]; in drmSLInsert() local 165 entry = SLLocate(list, key, update); in drmSLInsert() 173 update[level] = list->head; in drmSLInsert() 180 entry->forward[i] = update[i]->forward[i]; in drmSLInsert() 181 update[i]->forward[i] = entry; in drmSLInsert() 191 SLEntryPtr update[SL_MAX_LEVEL + 1]; in drmSLDelete() local 197 entry = SLLocate(list, key, update); in drmSLDelete() 203 if (update[ in drmSLDelete() 218 SLEntryPtr update[SL_MAX_LEVEL + 1]; drmSLLookup() local 236 SLEntryPtr update[SL_MAX_LEVEL + 1] = {0}; drmSLLookupNeighbors() local [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/nic/ |
H A D | dcb.c | 148 static int update_dscp_maxrate(struct net_device *dev, u32 *update) in update_dscp_maxrate() argument 160 *update |= NFP_DCB_MSG_MSK_RATE; in update_dscp_maxrate() 169 *update |= NFP_DCB_MSG_MSK_DSCP; in update_dscp_maxrate() 175 static void nfp_nic_set_trust(struct nfp_net *nn, u32 *update) in nfp_nic_set_trust() argument 190 *update |= NFP_DCB_MSG_MSK_TRUST; in nfp_nic_set_trust() 193 static void nfp_nic_set_enable(struct nfp_net *nn, u32 enable, u32 *update) in nfp_nic_set_enable() argument 205 *update |= NFP_DCB_MSG_MSK_ENABLE; in nfp_nic_set_enable() 251 static void nfp_nic_ets_init(struct nfp_net *nn, u32 *update) in nfp_nic_ets_init() argument 260 *update |= NFP_DCB_MSG_MSK_TSA | NFP_DCB_MSG_MSK_PCT | NFP_DCB_MSG_MSK_PCP; in nfp_nic_ets_init() 270 u32 update in nfp_nic_dcbnl_ieee_setets() local 334 u32 update = 0; nfp_nic_dcbnl_ieee_setmaxrate() local 366 u32 update = 0; nfp_nic_set_trust_status() local [all...] |
/kernel/linux/linux-5.10/drivers/media/platform/omap3isp/ |
H A D | isph3a_aewb.c | 23 * h3a_aewb_update_regs - Helper function to update h3a registers. 40 if (!aewb->update) in h3a_aewb_setup_regs() 72 aewb->update = 0; in h3a_aewb_setup_regs() 183 int update = 0; in h3a_aewb_set_params() local 187 update = 1; in h3a_aewb_set_params() 191 update = 1; in h3a_aewb_set_params() 195 update = 1; in h3a_aewb_set_params() 199 update = 1; in h3a_aewb_set_params() 203 update = 1; in h3a_aewb_set_params() 207 update in h3a_aewb_set_params() [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/ti/omap3isp/ |
H A D | isph3a_aewb.c | 23 * h3a_aewb_update_regs - Helper function to update h3a registers. 40 if (!aewb->update) in h3a_aewb_setup_regs() 72 aewb->update = 0; in h3a_aewb_setup_regs() 183 int update = 0; in h3a_aewb_set_params() local 187 update = 1; in h3a_aewb_set_params() 191 update = 1; in h3a_aewb_set_params() 195 update = 1; in h3a_aewb_set_params() 199 update = 1; in h3a_aewb_set_params() 203 update = 1; in h3a_aewb_set_params() 207 update in h3a_aewb_set_params() [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | sha.rs | 14 //! you can create a hasher that you can repeatedly update to add bytes to. 21 //! hasher.update(b"Hello, "); 22 //! hasher.update(b"world"); 138 pub fn update(&mut self, buf: &[u8]) { in update() functions 184 pub fn update(&mut self, buf: &[u8]) { in update() functions 230 pub fn update(&mut self, buf: &[u8]) { in update() functions 276 pub fn update(&mut self, buf: &[u8]) { in update() functions 322 pub fn update(&mut self, buf: &[u8]) { in update() functions 360 hasher.update(b"a"); in struct_1() 361 hasher.update( in struct_1() [all...] |
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_descriptor_set.c | 651 struct vn_update_descriptor_sets *update = storage; in vn_update_descriptor_sets_alloc() local 652 update->write_count = write_count; in vn_update_descriptor_sets_alloc() 653 update->writes = storage + writes_offset; in vn_update_descriptor_sets_alloc() 654 update->images = storage + images_offset; in vn_update_descriptor_sets_alloc() 655 update->buffers = storage + buffers_offset; in vn_update_descriptor_sets_alloc() 656 update->views = storage + views_offset; in vn_update_descriptor_sets_alloc() 657 update->iubs = storage + iubs_offset; in vn_update_descriptor_sets_alloc() 659 return update; in vn_update_descriptor_sets_alloc() 683 struct vn_update_descriptor_sets *update = in vn_update_descriptor_sets_parse_writes() local 686 if (!update) in vn_update_descriptor_sets_parse_writes() 773 struct vn_update_descriptor_sets *update = vn_UpdateDescriptorSets() local 832 struct vn_update_descriptor_sets *update = vn_update_descriptor_sets_alloc( vn_update_descriptor_sets_parse_template() local 982 struct vn_update_descriptor_sets *update = templ->update; vn_UpdateDescriptorSetWithTemplate() local [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | hmac.c | 43 hmac_update update; member 77 c->update = (hmac_update) av_md5_update; in av_hmac_alloc() 85 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 93 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 101 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 109 c->update = (hmac_update) av_sha512_update; in av_hmac_alloc() 117 c->update = (hmac_update) av_sha512_update; in av_hmac_alloc() 146 c->update(c->hash, key, keylen); in av_hmac_init() 158 c->update(c->hash, block, c->blocklen); in av_hmac_init() 163 c->update( in av_hmac_update() [all...] |
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_tooltip.py | 104 root.update() 107 root.update() 118 root.update() 121 root.update() 130 root.update() 132 root.update() 134 root.update() 137 root.update() 151 root.update() 153 root.update() [all...] |
/third_party/node/deps/v8/src/ast/ |
H A D | variables.h | 65 bit_field_ = VariableModeField::update(bit_field_, mode); in set_mode() 68 bit_field_ = IsStaticFlagField::update(bit_field_, is_static_flag); in set_is_static_flag() 81 bit_field_ = ForceContextAllocationBit::update(bit_field_, true); in ForceContextAllocation() 84 void set_is_used() { bit_field_ = IsUsedField::update(bit_field_, true); } in set_is_used() 89 bit_field_ = MaybeAssignedFlagField::update(bit_field_, kNotAssigned); in clear_maybe_assigned() 173 bit_field_ = ForceHoleInitializationField::update(bit_field_, true); in ForceHoleInitialization() 228 bit_field_ = LocationField::update(bit_field_, location); in AllocateTo() 235 bit_field_ = VariableModeField::update(bit_field_, VariableMode::kLet); in MakeParameterNonSimple() 237 InitializationFlagField::update(bit_field_, kNeedsInitialization); in MakeParameterNonSimple() 266 bit_field_ = MaybeAssignedFlagField::update(bit_field in set_maybe_assigned() [all...] |
/third_party/python/Lib/ |
H A D | hmac.py | 105 self._outer.update(key.translate(trans_5C)) 106 self._inner.update(key.translate(trans_36)) 108 self.update(msg) 117 def update(self, msg): member in HMAC 120 inst.update(msg) 125 An update to this copy won't affect the original object. 148 h.update(self._inner.digest()) 180 You can now feed arbitrary bytes into the object using its update() 215 inner.update(key.translate(trans_36)) 216 outer.update(ke [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_stdu.c | 53 * struct vmw_stdu_dirty - closure structure for the update functions 262 struct vmw_stdu_update *update = cmd; in vmw_stdu_populate_update() local 264 update->header.id = SVGA_3D_CMD_UPDATE_GB_SCREENTARGET; in vmw_stdu_populate_update() 265 update->header.size = sizeof(update->body); in vmw_stdu_populate_update() 267 update->body.stid = unit; in vmw_stdu_populate_update() 268 update->body.rect.x = left; in vmw_stdu_populate_update() 269 update->body.rect.y = top; in vmw_stdu_populate_update() 270 update->body.rect.w = right - left; in vmw_stdu_populate_update() 271 update in vmw_stdu_populate_update() 654 struct vmw_stdu_update *update; vmw_kms_stdu_surface_fifo_commit() local 1027 vmw_stdu_bo_fifo_size_cpu(struct vmw_du_update_plane *update, uint32_t num_hits) vmw_stdu_bo_fifo_size_cpu() argument 1034 vmw_stdu_bo_pre_clip_cpu(struct vmw_du_update_plane *update, void *cmd, uint32_t num_hits) vmw_stdu_bo_pre_clip_cpu() argument 1046 vmw_stdu_bo_clip_cpu(struct vmw_du_update_plane *update, void *cmd, struct drm_rect *clip, uint32_t fb_x, uint32_t fb_y) vmw_stdu_bo_clip_cpu() argument 1060 vmw_stdu_bo_populate_update_cpu(struct vmw_du_update_plane *update, void *cmd, struct drm_rect *bb) vmw_stdu_bo_populate_update_cpu() argument 1162 vmw_stdu_surface_fifo_size_same_display(struct vmw_du_update_plane *update, uint32_t num_hits) vmw_stdu_surface_fifo_size_same_display() argument 1178 vmw_stdu_surface_fifo_size(struct vmw_du_update_plane *update, uint32_t num_hits) vmw_stdu_surface_fifo_size() argument 1196 vmw_stdu_surface_update_proxy(struct vmw_du_update_plane *update, void *cmd) vmw_stdu_surface_update_proxy() argument 1237 vmw_stdu_surface_populate_copy(struct vmw_du_update_plane *update, void *cmd, uint32_t num_hits) vmw_stdu_surface_populate_copy() argument 1257 vmw_stdu_surface_populate_clip(struct vmw_du_update_plane *update, void *cmd, struct drm_rect *clip, uint32_t fb_x, uint32_t fb_y) vmw_stdu_surface_populate_clip() argument 1277 vmw_stdu_surface_populate_update(struct vmw_du_update_plane *update, void *cmd, struct drm_rect *bb) vmw_stdu_surface_populate_update() argument [all...] |
/kernel/linux/linux-5.10/drivers/power/supply/ |
H A D | ipaq_micro_battery.c | 41 struct delayed_work update; member 52 struct micro_battery, update.work); in micro_battery_work() 88 queue_delayed_work(mb->wq, &mb->update, msecs_to_jiffies(BATT_PERIOD)); in micro_battery_work() 239 INIT_DELAYED_WORK(&mb->update, micro_battery_work); in micro_batt_probe() 241 queue_delayed_work(mb->wq, &mb->update, 1); in micro_batt_probe() 263 cancel_delayed_work_sync(&mb->update); in micro_batt_probe() 275 cancel_delayed_work_sync(&mb->update); in micro_batt_remove() 285 cancel_delayed_work_sync(&mb->update); in micro_batt_suspend() 293 queue_delayed_work(mb->wq, &mb->update, msecs_to_jiffies(BATT_PERIOD)); in micro_batt_resume()
|
/kernel/linux/linux-6.6/drivers/power/supply/ |
H A D | ipaq_micro_battery.c | 41 struct delayed_work update; member 52 struct micro_battery, update.work); in micro_battery_work() 88 queue_delayed_work(mb->wq, &mb->update, msecs_to_jiffies(BATT_PERIOD)); in micro_battery_work() 239 INIT_DELAYED_WORK(&mb->update, micro_battery_work); in micro_batt_probe() 241 queue_delayed_work(mb->wq, &mb->update, 1); in micro_batt_probe() 263 cancel_delayed_work_sync(&mb->update); in micro_batt_probe() 275 cancel_delayed_work_sync(&mb->update); in micro_batt_remove() 285 cancel_delayed_work_sync(&mb->update); in micro_batt_suspend() 293 queue_delayed_work(mb->wq, &mb->update, msecs_to_jiffies(BATT_PERIOD)); in micro_batt_resume()
|
/kernel/linux/linux-5.10/drivers/s390/char/ |
H A D | con3270.c | 47 struct list_head update; /* list of lines to update. */ member 48 int line_nr; /* line number for next update. */ 68 #define CON_UPDATE_LIST 2 /* Update lines in tty3270->update. */ 75 * Setup timeout for a device. On timeout trigger an update. 140 * Rebuild update list to print all lines. 149 * Throw away update list and create a new one, in con3270_rebuild_update() 152 list_for_each_entry_safe(s, n, &cp->update, update) in con3270_rebuild_update() 153 list_del_init(&s->update); in con3270_rebuild_update() [all...] |