/third_party/ffmpeg/libavcodec/ |
H A D | error_resilience.c | 380 static av_always_inline void add_blocklist(int (*blocklist)[2], int *blocklist_length, uint8_t *fixed, int mb_x, int mb_y, int mb_xy) in add_blocklist() argument 385 blocklist[ *blocklist_length ][0] = mb_x; in add_blocklist() 386 blocklist[(*blocklist_length)++][1] = mb_y; in add_blocklist() 391 int (*blocklist)[2], (*next_blocklist)[2]; in guess_mv() 406 blocklist = (int (*)[2])s->er_temp_buffer; in guess_mv() 407 next_blocklist = blocklist + s->mb_stride * s->mb_height; in guess_mv() 464 if (mb_x) add_blocklist(blocklist, &blocklist_length, fixed, mb_x - 1, mb_y, mb_xy - 1); in guess_mv() 465 if (mb_y) add_blocklist(blocklist, &blocklist_length, fixed, mb_x, mb_y - 1, mb_xy - mb_stride); in guess_mv() 466 if (mb_x+1 < mb_width) add_blocklist(blocklist, &blocklist_length, fixed, mb_x + 1, mb_y, mb_xy + 1); in guess_mv() 467 if (mb_y+1 < mb_height) add_blocklist(blocklist, in guess_mv() [all...] |
/third_party/toybox/toys/pending/ |
H A D | mke2fs.c | 252 static uint32_t file_blocks_used(uint64_t size, uint32_t *blocklist) in file_blocks_used() argument 259 if (blocklist) { in file_blocks_used() 263 for (i=0; i<13 && i<dblocks; i++) blocklist[i] = i; in file_blocks_used() 265 if (dblocks > 13+idx) blocklist[13] = 13+idx; in file_blocks_used() 268 if (dblocks > idx) blocklist[14] = idx; in file_blocks_used()
|
/third_party/node/src/ |
H A D | node_sockaddr.h | 351 std::shared_ptr<SocketAddressBlockList> blocklist); 363 std::shared_ptr<SocketAddressBlockList> blocklist = 381 std::shared_ptr<SocketAddressBlockList> blocklist) in TransferData() 382 : blocklist_(std::move(blocklist)) {} in TransferData() 380 TransferData( std::shared_ptr<SocketAddressBlockList> blocklist) TransferData() argument
|
H A D | node_sockaddr.cc | 548 std::shared_ptr<SocketAddressBlockList> blocklist) in SocketAddressBlockListWrap() 550 blocklist_(std::move(blocklist)) { in SocketAddressBlockListWrap() 570 std::shared_ptr<SocketAddressBlockList> blocklist) { in New() 581 std::move(blocklist)); in New() 545 SocketAddressBlockListWrap( Environment* env, Local<Object> wrap, std::shared_ptr<SocketAddressBlockList> blocklist) SocketAddressBlockListWrap() argument 568 New( Environment* env, std::shared_ptr<SocketAddressBlockList> blocklist) New() argument
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-evaluate.h | 97 Handle<StringSet> blocklist; member
|
H A D | debug-evaluate.cc | 230 // context have a blocklist attached to implement that. in ContextBuilder() 233 // - Check the blocklist to find out whether to abort further lookup. in ContextBuilder() 249 context_chain_element.blocklist = scope_iterator_.GetLocals(); in ContextBuilder() 263 if (!element.blocklist.is_null()) { in ContextBuilder() 265 element.blocklist); in ContextBuilder()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | value-mirror.cc | 896 PreviewPropertyAccumulator(const std::vector<String16>& blocklist, in PreviewPropertyAccumulator() argument 900 : m_blocklist(blocklist), in PreviewPropertyAccumulator() 945 std::vector<String16> blocklist; in getPropertiesForPreview() local 949 blocklist.push_back("length"); in getPropertiesForPreview() 952 blocklist.push_back("type"); in getPropertiesForPreview() 957 blocklist.push_back("length"); in getPropertiesForPreview() 961 blocklist.push_back("[[Int8Array]]"); in getPropertiesForPreview() 962 blocklist.push_back("[[Uint8Array]]"); in getPropertiesForPreview() 963 blocklist.push_back("[[Int16Array]]"); in getPropertiesForPreview() 964 blocklist in getPropertiesForPreview() [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | contexts.cc | 182 Handle<Object> blocklist; in UnscopableLookup() 184 isolate, blocklist, in UnscopableLookup() 188 return Just(!blocklist->BooleanValue(isolate)); in UnscopableLookup() 396 // Check blocklist. Names that are listed, cannot be resolved further. in Lookup()
|
H A D | scope-info.h | 239 // Returns true if this ScopeInfo has a blocklist attached containing stack 269 // Creates a copy of a {ScopeInfo} but with the provided locals blocklist 271 // for a blocklist reserved. 274 Handle<StringSet> blocklist);
|
H A D | scope-info.cc | 624 Isolate* isolate, Handle<ScopeInfo> original, Handle<StringSet> blocklist) { in RecreateWithBlockList() 632 // blocklist field, so {LocalsBlockListIndex} returns the correct value. in RecreateWithBlockList() 638 // Copy the dynamic part including the provided blocklist: in RecreateWithBlockList() 639 // 1) copy all the fields up to the blocklist index in RecreateWithBlockList() 640 // 2) add the blocklist in RecreateWithBlockList() 646 scope_info->set_locals_block_list(*blocklist); in RecreateWithBlockList() 623 RecreateWithBlockList( Isolate* isolate, Handle<ScopeInfo> original, Handle<StringSet> blocklist) RecreateWithBlockList() argument
|