Home
last modified time | relevance | path

Searched refs:lists (Results 1 – 25 of 1896) sorted by relevance

12345678910>>...76

/third_party/freetype/builds/meson/
Dparse_modules_cfg.py26 lists = {
44 assert items[0] in lists, (
48 lists[items[0]].append(items[2])
50 return lists
53 def generate_ftmodule(lists): argument
55 for driver in lists["FONT_MODULES"]:
71 for module in lists["HINTING_MODULES"]:
76 for module in lists["RASTER_MODULES"]:
85 for module in lists["AUX_MODULES"]:
95 def generate_main_modules(lists): argument
[all …]
/third_party/skia/third_party/externals/freetype/builds/meson/
Dparse_modules_cfg.py36 lists = {
54 assert items[0] in lists, (
58 lists[items[0]].append(items[2])
60 return lists
63 def generate_ftmodule(lists): argument
65 for driver in lists["FONT_MODULES"]:
81 for module in lists["HINTING_MODULES"]:
86 for module in lists["RASTER_MODULES"]:
95 for module in lists["AUX_MODULES"]:
105 def generate_main_modules(lists): argument
[all …]
/third_party/mindspore/mindspore/lite/java/java/fl_client/src/main/java/com/mindspore/flclient/cipher/
DBaseUtil.java122 List<Integer> lists = new ArrayList<>(); in bigInteger2String() local
126 lists.add(bi.mod(div).intValue()); in bigInteger2String()
129 for (int i = lists.size() - 1; i >= 0; --i) { in bigInteger2String()
130 res.append((char) (int) (lists.get(i))); in bigInteger2String()
142 List<Integer> lists = new ArrayList<>(); in bigInteger2byteArray() local
146 lists.add(bi.mod(div).intValue()); in bigInteger2byteArray()
149 byte[] res = new byte[lists.size()]; in bigInteger2byteArray()
150 for (int i = lists.size() - 1; i >= 0; --i) { in bigInteger2byteArray()
151 res[lists.size() - i - 1] = ((byte) (int) (lists.get(i))); in bigInteger2byteArray()
163 List<Integer> lists = new ArrayList<>(); in integer2byteArray() local
[all …]
/third_party/grpc/src/core/ext/transport/chttp2/transport/
Dstream_lists.cc50 return t->lists[id].head == nullptr; in stream_list_empty()
56 grpc_chttp2_stream* s = t->lists[id].head; in stream_list_pop()
61 t->lists[id].head = new_head; in stream_list_pop()
64 t->lists[id].head = nullptr; in stream_list_pop()
65 t->lists[id].tail = nullptr; in stream_list_pop()
84 GPR_ASSERT(t->lists[id].head == s); in stream_list_remove()
85 t->lists[id].head = s->links[id].next; in stream_list_remove()
90 t->lists[id].tail = s->links[id].prev; in stream_list_remove()
114 old_tail = t->lists[id].tail; in stream_list_add_tail()
120 t->lists[id].head = s; in stream_list_add_tail()
[all …]
/third_party/libpsl/msvc/
Dcreate-lists-msvc.mak9 # if [call create-lists.bat header $(makefile_snippet_file) $(variable_name)]
12 # if [call create-lists.bat file $(makefile_snippet_file) $(file_name)]
15 # if [call create-lists.bat footer $(makefile_snippet_file)]
26 # instead when doing 'if [call create-lists.bat file $(makefile_snippet_file) $(file_name)]'
28 # !if [for %c in ($(source_list)) do @if "%~xc" == ".$(srcext)" @call create-lists.bat file $(makef…
40 !if [call create-lists.bat header libpsl-msvc.mak libpsl_OBJS]
43 !if [for %c in ($(LIBPSL_SRCS)) do @if "%~xc" == ".c" @call create-lists.bat file libpsl-msvc.mak v…
46 !if [call create-lists.bat footer libpsl-msvc.mak]
49 !if [call create-lists.bat header libpsl-msvc.mak psl_OBJS]
52 !if [for %c in (..\tools\*.c) do @call create-lists.bat file libpsl-msvc.mak vs^$(VSVER)\^$(CFG)\^$…
[all …]
/third_party/mesa3d/docs/
Dlists.rst4 These are the primary Mesa 3D / DRI mailing lists:
6 - `mesa-users <https://lists.freedesktop.org/mailman/listinfo/mesa-users>`__
11 - `mesa-dev <https://lists.freedesktop.org/mailman/listinfo/mesa-dev>`__
15 - `mesa-commit <https://lists.freedesktop.org/mailman/listinfo/mesa-commit>`__
19 - `mesa-announce <https://lists.freedesktop.org/mailman/listinfo/mesa-announce>`__
23 - `dri-devel <http://lists.freedesktop.org/mailman/listinfo/dri-devel>`__
27 - `piglit <https://lists.freedesktop.org/mailman/listinfo/piglit>`__ -
32 You **must** subscribe to these lists in order to post to
40 The old Mesa lists hosted at SourceForge are no longer in use. The
Dhelpwanted.rst9 list <https://lists.freedesktop.org/mailman/listinfo/mesa-dev>`__,
21 You can find some further To-do lists here:
23 **Common To-Do lists:**
28 **Legacy Driver specific To-Do lists:**
/third_party/mesa3d/src/mesa/main/
Dglthread_list.c46 uint32_t *lists = alloca(max_list_count * sizeof(uint32_t)); in _mesa_unmarshal_CallList() local
48 lists[0] = cmd->list; in _mesa_unmarshal_CallList()
49 lists[1] = next_callist->list; in _mesa_unmarshal_CallList()
58 lists[count++] = next_callist->list; in _mesa_unmarshal_CallList()
65 CALL_CallLists(ctx->CurrentServerDispatch, (count, GL_UNSIGNED_INT, lists)); in _mesa_unmarshal_CallList()
Dglthread_marshal.h593 const GLvoid *lists) in _mesa_glthread_CallLists() argument
598 if (n <= 0 || !lists) in _mesa_glthread_CallLists()
627 bptr = (GLbyte *) lists; in _mesa_glthread_CallLists()
632 ubptr = (GLubyte *) lists; in _mesa_glthread_CallLists()
637 sptr = (GLshort *) lists; in _mesa_glthread_CallLists()
642 usptr = (GLushort *) lists; in _mesa_glthread_CallLists()
647 iptr = (GLint *) lists; in _mesa_glthread_CallLists()
652 uiptr = (GLuint *) lists; in _mesa_glthread_CallLists()
657 fptr = (GLfloat *) lists; in _mesa_glthread_CallLists()
662 ubptr = (GLubyte *) lists; in _mesa_glthread_CallLists()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DRBNFParseTest.java119 …te void parseList(RuleBasedNumberFormat rbnf_en, RuleBasedNumberFormat rbnf_fr, String[][] lists) { in parseList() argument
120 for (int i = 0; i < lists.length; ++i) { in parseList()
121 String[] list = lists[i]; in parseList()
146 String[][] lists = { in TestLenientParse() local
159 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse()
165 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DRBNFParseTest.java122 …te void parseList(RuleBasedNumberFormat rbnf_en, RuleBasedNumberFormat rbnf_fr, String[][] lists) { in parseList() argument
123 for (int i = 0; i < lists.length; ++i) { in parseList()
124 String[] list = lists[i]; in parseList()
149 String[][] lists = { in TestLenientParse() local
162 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse()
168 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse()
/third_party/ltp/tools/sparse/sparse-src/
Ddominate.c23 struct basic_block_list *lists[0]; member
29 bank = calloc(1, sizeof(*bank) + levels * sizeof(bank->lists[0])); in bank_init()
37 free_ptr_list(&bank->lists[levels]); in bank_free()
45 add_bb(&bank->lists[level], bb); in bank_put()
57 struct basic_block *bb = pop_bb(&bank->lists[level]); in bank_get()
/third_party/boost/tools/build/src/engine/
Dhash.cpp72 } lists[ MAX_LISTS ]; member
243 hp->items.lists[ i ].nel = hp->items.more; in hashrehash()
244 hp->items.lists[ i ].base = hp->items.next; in hashrehash()
257 int nel = hp->items.lists[ i ].nel; in hashrehash()
258 char * next = hp->items.lists[ i ].base; in hashrehash()
283 char * next = hp->items.lists[ i ].base; in hashenumerate()
284 int nel = hp->items.lists[ i ].nel; in hashenumerate()
310 BJAM_FREE( hp->items.lists[ i ].base ); in hash_free()
/third_party/curl/tests/
Ddirectories.pm164 %lists = (
240 $list = $lists{$list_type};
262 $list = $lists{$list_type};
285 $list = $lists{$listname};
/third_party/selinux/libsepol/cil/src/
Dcil_policy.c77 struct cil_list **lists; in __cil_gather_statements_helper() local
80 lists = (struct cil_list **)extra_args; in __cil_gather_statements_helper()
176 cil_list_append(lists[kind], node->flavor, node->data); in __cil_gather_statements_helper()
182 static void cil_gather_statements(struct cil_tree_node *start, struct cil_list *lists[]) in cil_gather_statements() argument
184 cil_tree_walk(start, __cil_gather_statements_helper, NULL, NULL, lists); in cil_gather_statements()
1918 struct cil_list *lists[CIL_LIST_NUM_LISTS]; in cil_gen_policy() local
1921 cil_list_init(&lists[i], CIL_LIST); in cil_gen_policy()
1924 cil_gather_statements(head, lists); in cil_gen_policy()
1930 cil_commons_to_policy(out, lists[CIL_LIST_COMMON]); in cil_gen_policy()
1933 cil_defaults_to_policy(out, lists[CIL_LIST_DEFAULT_USER], "default_user"); in cil_gen_policy()
[all …]
/third_party/boost/boost/preprocessor/list/
Dfor_each_product.hpp46 …_LIST_FOR_EACH_PRODUCT_E(impl, macro, size, lists) impl((BOOST_PP_LIST_FIRST(lists), BOOST_PP_LIST… argument
48 …LIST_FOR_EACH_PRODUCT_E(impl, macro, size, lists) BOOST_PP_LIST_FOR_EACH_PRODUCT_E_D(impl, macro, … argument
49 …IST_FOR_EACH_PRODUCT_E_D(impl, macro, size, lists) impl((BOOST_PP_LIST_FIRST(lists), BOOST_PP_LIST… argument
/third_party/pulseaudio/
DREADME13 http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss
16 http://lists.freedesktop.org/mailman/listinfo/pulseaudio-commits
19 http://lists.freedesktop.org/mailman/listinfo/pulseaudio-bugs
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DDeviceD3D12.cpp239 std::vector<ID3D12CommandList*> lists(commandLists.size() + 1); in ExecuteCommandLists() local
242 lists[0] = mPendingCommands.commandList.Get(); in ExecuteCommandLists()
243 std::copy(commandLists.begin(), commandLists.end(), lists.begin() + 1); in ExecuteCommandLists()
245 lists.data()); in ExecuteCommandLists()
248 std::vector<ID3D12CommandList*> lists(commandLists); in ExecuteCommandLists() local
250 lists.data()); in ExecuteCommandLists()
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/
DSGIX_vertex_array_object.txt53 * Why can't you just use display lists for this?
57 pipeline. If the storage location from which display lists are injected
59 executing display lists cannot modify GL state. In summary, low-end
60 graphics hardware cannot accelerate display lists since they can modify GL
61 state. Note that even "easy" display lists with only vertex and color
63 lists in that they are not required to update the GL state that they
66 Phil: Vertex arrays, unlike display lists, leave behind no "side-effect"
68 vertex array objects are much more "hardware-friendly" than display lists.
71 case of the many that display lists cover, could you add an extension that
75 It pretty much breaks the display list model. In order for display lists
[all …]
/third_party/openGLES/extensions/SGIX/
DSGIX_vertex_array_object.txt53 * Why can't you just use display lists for this?
57 pipeline. If the storage location from which display lists are injected
59 executing display lists cannot modify GL state. In summary, low-end
60 graphics hardware cannot accelerate display lists since they can modify GL
61 state. Note that even "easy" display lists with only vertex and color
63 lists in that they are not required to update the GL state that they
66 Phil: Vertex arrays, unlike display lists, leave behind no "side-effect"
68 vertex array objects are much more "hardware-friendly" than display lists.
71 case of the many that display lists cover, could you add an extension that
75 It pretty much breaks the display list model. In order for display lists
[all …]
/third_party/python/Lib/idlelib/
Dmulticall.py161 def __create_handler(self, lists, mc_type, mc_state): argument
162 def handler(event, lists = lists, argument
171 for l in lists:
207 lists = [self.bindedfuncs[None][i] for i in _state_subsets[s]]
208 handler = self.__create_handler(lists, type, _state_codes[s])
217 lists = [ self.bindedfuncs[detail][i]
220 handler = self.__create_handler(lists, self.type,
/third_party/vk-gl-cts/modules/gles2/scripts/
Dgen-swizzles.py96 self.lists = list(args)
98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1)
99 print(self.lists)
103 return [tuple(map(lambda x: x[0], self.lists))]
/third_party/vk-gl-cts/modules/gles3/scripts/
Dgen-swizzles.py96 self.lists = list(args)
98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1)
99 print(self.lists)
103 return [tuple(map(lambda x: x[0], self.lists))]
/third_party/ffmpeg/doc/
Dmailing-list-faq.texi21 See the @url{https://lists.ffmpeg.org/pipermail/ffmpeg-user/, ffmpeg-user archives}
28 @url{https://lists.ffmpeg.org/mailman/listinfo/ffmpeg-user/, ffmpeg-user}:
33 @url{https://lists.ffmpeg.org/mailman/listinfo/libav-user/, libav-user}:
38 @url{https://lists.ffmpeg.org/mailman/listinfo/ffmpeg-devel/, ffmpeg-devel}:
75 Or visit the @url{https://lists.ffmpeg.org/mailman/listinfo/ffmpeg-user/, ffmpeg-user mailing list …
78 The process is the same for the other mailing lists.
84 Or visit the @url{https://lists.ffmpeg.org/mailman/listinfo/ffmpeg-user/, ffmpeg-user mailing list …
88 The process is the same for the other mailing lists.
146 libav-user mailing lists.
152 @t{site:lists.ffmpeg.org/pipermail/ffmpeg-user/ "search term"}
[all …]
/third_party/libpng/
DANNOUNCE44 Send comments/corrections/commendations to png-mng-implement at lists.sf.net.
46 https://lists.sourceforge.net/lists/listinfo/png-mng-implement

12345678910>>...76