/third_party/node/deps/v8/src/baseline/ppc/ |
H A D | baseline-assembler-ppc-inl.h | 423 static int Push(BaselineAssembler* basm, interpreter::RegisterList list) { in Push() 424 for (int reg_index = 0; reg_index < list.register_count(); ++reg_index) { in Push() 425 PushAllHelper<interpreter::Register>::Push(basm, list[reg_index]); in Push() 427 return list.register_count(); in Push() 430 interpreter::RegisterList list) { in PushReverse() 431 for (int reg_index = list.register_count() - 1; reg_index >= 0; in PushReverse() 433 PushAllHelper<interpreter::Register>::Push(basm, list[reg_index]); in PushReverse() 435 return list.register_count(); in PushReverse()
|
/third_party/node/deps/v8/src/baseline/x64/ |
H A D | baseline-assembler-x64-inl.h | 285 static int Push(BaselineAssembler* basm, interpreter::RegisterList list) { in Push() 286 for (int reg_index = 0; reg_index < list.register_count(); ++reg_index) { in Push() 287 PushSingle(basm->masm(), list[reg_index]); in Push() 289 return list.register_count(); in Push() 292 interpreter::RegisterList list) { in PushReverse() 293 for (int reg_index = list.register_count() - 1; reg_index >= 0; in PushReverse() 295 PushSingle(basm->masm(), list[reg_index]); in PushReverse() 297 return list.register_count(); in PushReverse()
|
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
H A D | message_test.py | 12 # notice, this list of conditions and the following disclaimer. 14 # copyright notice, this list of conditions and the following disclaimer 387 """Check sorting a repeated composite field using list.sort() arguments.""" 412 """Check sorting a scalar field using list.sort() arguments.""" 420 self.assertEqual(list(message.repeated_int32), [-1, -2, -3]) 422 self.assertEqual(list(message.repeated_int32), [-3, -2, -1]) 424 self.assertEqual(list(message.repeated_int32), [-1, -2, -3]) 426 self.assertEqual(list(message.repeated_int32), [-3, -2, -1]) 433 self.assertEqual(list(message.repeated_string), ['c', 'bb', 'aaa']) 435 self.assertEqual(list(messag [all...] |
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | radeon_pair_schedule.c | 47 /** Next instruction in the linked list of ready instructions. */ 80 /** For TEX instructions a list of readers */ 101 * Unordered linked list of instructions that read from this value. 197 static void remove_inst_from_list(struct schedule_instruction ** list, in remove_inst_from_list() argument 202 for (list_ptr = *list; list_ptr; prev = list_ptr, in remove_inst_from_list() 208 *list = inst->NextReady; in remove_inst_from_list() 216 static void add_inst_to_list(struct schedule_instruction ** list, struct schedule_instruction * inst) in add_inst_to_list() argument 218 inst->NextReady = *list; in add_inst_to_list() 219 *list = inst; in add_inst_to_list() 222 static void add_inst_to_list_score(struct schedule_instruction ** list, in add_inst_to_list_score() argument 1060 update_max_score( struct schedule_state * s, struct schedule_instruction ** list, int * max_score, struct schedule_instruction ** max_inst_out, struct schedule_instruction *** list_out) update_max_score() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | eloop.c | 17 #include "list.h" 65 struct dl_list list; member 885 dl_list_for_each(tmp, &eloop.timeout, struct eloop_timeout, list) { in eloop_register_timeout() 887 dl_list_add(tmp->list.prev, &timeout->list); in eloop_register_timeout() 895 dl_list_add_tail(&eloop.timeout, &timeout->list); in eloop_register_timeout() 910 dl_list_del(&timeout->list); in eloop_remove_timeout() 927 struct eloop_timeout, list) { in eloop_cancel_timeout() 954 struct eloop_timeout, list) { in eloop_cancel_timeout_one() 976 dl_list_for_each(tmp, &eloop.timeout, struct eloop_timeout, list) { in eloop_is_timeout_registered() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | eloop.c | 17 #include "list.h" 65 struct dl_list list; member 884 dl_list_for_each(tmp, &eloop.timeout, struct eloop_timeout, list) { in eloop_register_timeout() 886 dl_list_add(tmp->list.prev, &timeout->list); in eloop_register_timeout() 894 dl_list_add_tail(&eloop.timeout, &timeout->list); in eloop_register_timeout() 920 dl_list_del(&timeout->list); in eloop_remove_timeout() 937 struct eloop_timeout, list) { in eloop_cancel_timeout() 964 struct eloop_timeout, list) { in eloop_cancel_timeout_one() 986 dl_list_for_each(tmp, &eloop.timeout, struct eloop_timeout, list) { in eloop_is_timeout_registered() [all...] |
H A D | common.c | 830 * Comma separated list of frequency ranges. in freq_range_list_parse() 868 int freq_range_list_includes(const struct wpa_freq_range_list *list, in freq_range_list_includes() argument 873 if (list == NULL) in freq_range_list_includes() 876 for (i = 0; i < list->num; i++) { in freq_range_list_includes() 877 if (freq >= list->range[i].min && freq <= list->range[i].max) in freq_range_list_includes() 885 char * freq_range_list_str(const struct wpa_freq_range_list *list) in freq_range_list_str() argument 892 if (list->num == 0) in freq_range_list_str() 895 maxlen = list->num * 30; in freq_range_list_str() 902 for (i = 0; i < list in freq_range_list_str() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | dpp_tcp.c | 23 struct dl_list list; member 52 struct dl_list list; member 112 dl_list_del(&conn->list); in dpp_connection_remove() 136 dl_list_add(&dpp->controllers, &ctrl->list); in dpp_relay_add_controller() 150 list) { in dpp_relay_controller_get() 168 list) { in dpp_relay_controller_get_ctx() 448 dl_list_add(&ctrl->conn, &conn->list); in dpp_relay_new_conn() 513 struct dpp_relay_controller, list) { in dpp_relay_rx_action() 515 struct dpp_connection, list) { in dpp_relay_rx_action() 564 struct dpp_relay_controller, list) { in dpp_relay_rx_gas_req() [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_asm.c | 57 list_inithead(&cf->list); in r600_bytecode_cf() 71 list_inithead(&alu->list); in r600_bytecode_alu() 81 list_inithead(&vtx->list); in r600_bytecode_vtx() 91 list_inithead(&tex->list); in r600_bytecode_tex() 101 list_inithead(&gds->list); in r600_bytecode_gds() 181 list_addtail(&cf->list, &bc->cf); in r600_bytecode_add_cf() 390 for (alu = alu_first; alu; alu = list_entry(alu->list.next, struct r600_bytecode_alu, list)) { in assign_alu_units() 986 list_del(&result[i]->list); in merge_inst_groups() 988 list_addtail(&result[i]->list, in merge_inst_groups() [all...] |
/third_party/selinux/libsepol/src/ |
H A D | module_to_cil.c | 193 struct list { struct 197 /* A linked list of all roles stored in the pdb 201 static struct list *role_list; 203 static void list_destroy(struct list **list) in list_destroy() argument 205 struct list_node *curr = (*list)->head; in list_destroy() 214 free(*list); in list_destroy() 215 *list = NULL; in list_destroy() 236 static void attr_list_destroy(struct list **attr_list) in attr_list_destroy() 261 static int list_init(struct list **lis argument 272 list_prepend(struct list *list, void *data) list_prepend() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | svq1dec.c | 125 list[n++] = list[i]; \ 126 list[n++] = list[i] + (((level & 1) ? pitch : 1) << ((level >> 1) + 1));\ 168 uint8_t *list[63]; in svq1_decode_block_intra() local 178 /* initialize list for breadth first processing of vectors */ in svq1_decode_block_intra() 179 list[0] = pixels; in svq1_decode_block_intra() 186 dst = (uint32_t *)list[i]; in svq1_decode_block_intra() 235 uint8_t *list[63]; in svq1_decode_block_non_intra() local 245 /* initialize list fo in svq1_decode_block_non_intra() [all...] |
/third_party/gn/src/gn/ |
H A D | target.cc | 27 // Merges the public configs from the given target to the given config list. 171 // Check this target against the given list of patterns. in RecursiveCheckAssertNoDeps() 460 // Copy this target's own dependent and public configs to the list of configs in OnResolved() 470 // Copy public configs from all dependencies into the list of configs in OnResolved() 723 if (tool->partial_outputs().list().empty()) in GetOutputFilesForSource() 959 CHECK_GE(tool->outputs().list().size(), 1u); in FillOutputFiles() 963 this, tool, tool->outputs().list()[0]); in FillOutputFiles() 965 if (tool->runtime_outputs().list().empty()) { in FillOutputFiles() 977 CHECK(tool->outputs().list().size() >= 1); in FillOutputFiles() 981 this, tool, tool->outputs().list()[ in FillOutputFiles() [all...] |
H A D | function_foreach.cc | 13 const char kForEach_HelpShort[] = "foreach: Iterate over a list."; 15 R"(foreach: Iterate over a list. 17 foreach(<loop_var>, <list>) { 21 Executes the loop contents block over each item in the list, assigning the 23 to it will not mutate the list. The loop will iterate over a copy of <list> 67 // Extract the list to iterate over. Always copy in case the code changes in RunForEach() 68 // the list variable inside the loop. in RunForEach() 75 const std::vector<Value>& list = list_value.list_value(); in RunForEach() local 91 for (const auto& cur : list) { in RunForEach() [all...] |
/third_party/node/deps/cares/src/lib/ |
H A D | ares__buf.c | 796 static ares_bool_t ares__buf_split_isduplicate(ares__llist_t *list, in ares__buf_split_isduplicate() argument 803 for (node = ares__llist_node_first(list); node != NULL; in ares__buf_split_isduplicate() 829 ares__llist_t **list) in ares__buf_split() 834 if (buf == NULL || delims == NULL || delims_len == 0 || list == NULL) { in ares__buf_split() 838 *list = ares__llist_create(ares__buf_destroy_cb); in ares__buf_split() 839 if (*list == NULL) { in ares__buf_split() 861 !ares__buf_split_isduplicate(*list, ptr, len, flags)) { in ares__buf_split() 875 if (ares__llist_insert_last(*list, data) == NULL) { in ares__buf_split() 894 ares__llist_destroy(*list); in ares__buf_split() 895 *list in ares__buf_split() 827 ares__buf_split(ares__buf_t *buf, const unsigned char *delims, size_t delims_len, ares__buf_split_t flags, ares__llist_t **list) ares__buf_split() argument [all...] |
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_context.c | 239 list_addtail(&entry->node, &st->zombie_sampler_views.list.node); in st_save_zombie_sampler_view() 272 list_addtail(&entry->node, &st->zombie_shaders.list.node); in st_save_zombie_shader() 285 if (list_is_empty(&st->zombie_sampler_views.list.node)) { in free_zombie_sampler_views() 292 &st->zombie_sampler_views.list.node, node) { in free_zombie_sampler_views() 293 list_del(&entry->node); // remove this entry from the list in free_zombie_sampler_views() 301 assert(list_is_empty(&st->zombie_sampler_views.list.node)); in free_zombie_sampler_views() 315 if (list_is_empty(&st->zombie_shaders.list.node)) { in free_zombie_shaders() 322 &st->zombie_shaders.list.node, node) { in free_zombie_shaders() 323 list_del(&entry->node); // remove this entry from the list in free_zombie_shaders() 356 assert(list_is_empty(&st->zombie_shaders.list in free_zombie_shaders() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | InterleavedLoadCombinePass.cpp | 46 #include <list> 99 bool combine(std::list<VectorInfo> &InterleavedLoad, 104 bool findPattern(std::list<VectorInfo> &Candidates, 105 std::list<VectorInfo> &InterleavedLoad, unsigned Factor, 1054 std::list<VectorInfo> &Candidates, std::list<VectorInfo> &InterleavedLoad, in findPattern() 1062 std::vector<std::list<VectorInfo>::iterator> Res(Factor, Candidates.end()); in findPattern() 1116 bool InterleavedLoadCombineImpl::combine(std::list<VectorInfo> &InterleavedLoad, in combine() 1145 // interleaved. This list excludes the instructions necessary for the in combine() 1263 std::list<VectorInf in run() [all...] |
/third_party/python/Lib/test/ |
H A D | test_memoryview.py | 60 self.assertEqual(list(m), [m[i] for i in range(len(m))]) 151 self.assertEqual(l, list(b"abcdef")) 363 aslist = list(reversed(m.tolist())) 364 self.assertEqual(list(reversed(m)), aslist) 365 self.assertEqual(list(reversed(m)), list(m[::-1])) 413 rw_type = lambda self, b: array.array('i', list(b)) 414 getitem_type = lambda self, b: array.array('i', list(b)).tobytes() 577 self.assertEqual(list(m[:MyIndex()]), [255] * 4) 581 self.assertEqual(list( [all...] |
/test/xts/hats/kernel/syscalls/system/setrobustlist/ |
H A D | SetrobustlistApiTest.cpp | 44 int SetRobustList(int tid, void *list, size_t len) in SetRobustList() argument 46 return syscall(__NR_set_robust_list, tid, list, len); in SetRobustList()
|
/third_party/ffmpeg/libavformat/ |
H A D | avc.h | 41 * a NALUList from it. This list can be passed to ff_nal_units_write_list() 44 * @param list A NALUList. The list->nalus and list->nalus_array_size 51 int ff_nal_units_create_list(NALUList *list, const uint8_t *buf, int size); 53 /* Writes a NALUList to the specified AVIOContext. The list must originate 55 void ff_nal_units_write_list(const NALUList *list, AVIOContext *pb,
|
/third_party/node/test/parallel/ |
H A D | test-http2-pack-end-stream-flag.js | 34 common.mustCallAtLeast((list, observer) => { 35 const entries = list.getEntries();
|
H A D | test-performanceobserver.js | 66 function callback(list, obs) { 68 const entries = list.getEntries();
|
/third_party/node/test/common/ |
H A D | cpu-prof.js | 9 const list = fs.readdirSync(dir); 10 return list
|
H A D | prof.js | 8 const list = fs.readdirSync(dir); 9 return list
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfsundelete.h | 29 #include "list.h" 65 struct ntfs_list_head list; /* Previous/Next links */ member 82 struct ntfs_list_head list; /* Previous/Next links */ member 101 struct ntfs_list_head name; /* A list of filenames */ 102 struct ntfs_list_head data; /* A list of data streams */
|
/third_party/mesa3d/src/mesa/main/ |
H A D | dlist.h | 40 * Display list node. 42 * Display list instructions are stored as sequences of "nodes". Nodes 46 * Each instruction in the display list is stored as a sequence of 111 _mesa_lookup_list(struct gl_context *ctx, GLuint list, bool locked); 133 _mesa_get_list(struct gl_context *ctx, GLuint list,
|