Home
last modified time | relevance | path

Searched refs:elt (Results 1 - 25 of 57) sorted by relevance

123

/third_party/mesa3d/src/util/
H A Dslab.c87 slab_free_orphaned(struct slab_element_header *elt) in slab_free_orphaned() argument
91 assert(elt->owner & 1); in slab_free_orphaned()
93 page = (struct slab_page_header *)(elt->owner & ~(intptr_t)1); in slab_free_orphaned()
153 struct slab_element_header *elt = slab_get_element(pool->parent, page, i); in slab_destroy_child() local
154 p_atomic_set(&elt->owner, (intptr_t)page | 1); in slab_destroy_child()
159 struct slab_element_header *elt = pool->migrated; in slab_destroy_child() local
160 pool->migrated = elt->next; in slab_destroy_child()
161 slab_free_orphaned(elt); in slab_destroy_child()
167 struct slab_element_header *elt = pool->free; in slab_destroy_child() local
168 pool->free = elt in slab_destroy_child()
186 struct slab_element_header *elt = slab_get_element(pool->parent, page, i); slab_add_new_page() local
209 struct slab_element_header *elt; slab_alloc() local
257 struct slab_element_header *elt = ((struct slab_element_header*)ptr - 1); slab_free() local
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-bit-page.hh49 void add (hb_codepoint_t g) { elt (g) |= mask (g); } in add()
50 void del (hb_codepoint_t g) { elt (g) &= ~mask (g); } in del()
52 bool get (hb_codepoint_t g) const { return elt (g) & mask (g); } in get()
56 elt_t *la = &elt (a); in add_range()
57 elt_t *lb = &elt (b); in add_range()
72 elt_t *la = &elt (a); in del_range()
73 elt_t *lb = &elt (b); in del_range()
183 static unsigned int elt_get_min (const elt_t &elt) { return hb_ctz (elt); }
184 static unsigned int elt_get_max (const elt_t &elt) { retur
[all...]
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/text-rendering-tests/
H A Dupdate.py33 for elt in html.findall (".//*[@class='expected'][@ft:id]", namespaces):
35 name = elt.get (ns ('ft:id'))
36 text = elt.get (ns ('ft:render'))
37 font = elt.get (ns ('ft:font'))
38 variations = elt.get (ns ('ft:var'), '').replace (':', '=').replace (';', ',')
40 for use in elt.findall (".//use"):
52 for elt in html.findall (".//*[@class='expected-no-crash'][@ft:id]", namespaces):
54 name = elt.get (ns ('ft:id'))
55 text = elt.get (ns ('ft:render'))
56 font = elt
[all...]
/third_party/libcoap/include/coap3/
H A Dcoap_utlist_internal.h86 #define UTLIST_SV(elt,list) _tmp = (char*)(list); {char **_alias = (char**)&(list); *_alias = (elt); }
87 #define UTLIST_NEXT(elt,list,next) ((char*)((list)->next))
88 #define UTLIST_NEXTASGN(elt,list,to,next) { char **_alias = (char**)&((list)->next); *_alias=(char*)(to); }
89 /* #define UTLIST_PREV(elt,list,prev) ((char*)((list)->prev)) */
90 #define UTLIST_PREVASGN(elt,list,to,prev) { char **_alias = (char**)&((list)->prev); *_alias=(char*)(to); }
95 #define UTLIST_SV(elt,list)
96 #define UTLIST_NEXT(elt,list,next) ((elt)->next)
97 #define UTLIST_NEXTASGN(elt,lis
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dutil.py30 for elt in collection:
31 if pred(elt):
32 return elt
57 return findFirstWithPredicate(collection, lambda elt: elt.name == name)
H A Dattributes.py80 return [LengthEntry(elt) for elt in len_str.split(',')]
109 return [ExternSyncEntry(elt) for elt in sync_str.split(',')]
129 return [_parse_optional_elt(elt) for elt in optional_str.split(',')]
/third_party/vulkan-headers/registry/spec_tools/
H A Dutil.py30 for elt in collection:
31 if pred(elt):
32 return elt
57 return findFirstWithPredicate(collection, lambda elt: elt.name == name)
/third_party/libcoap/examples/
H A Dcoap_list.c58 coap_list_t *elt, *tmp; in coap_delete_list() local
63 LL_FOREACH_SAFE(queue, elt, tmp) { in coap_delete_list()
64 coap_delete(elt); in coap_delete_list()
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ra_init.cpp150 unsigned elt = 0;
153 while (elt < size && !dta[elt])
154 ++elt;
156 if (elt >= size)
159 bit = __builtin_ctz(dta[elt]) + (elt << bt_index_shift);
187 unsigned elt = 0;
191 basetype cd = dta[elt];
195 if (++elt < siz
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dxml_consistency.py301 params = [(getElemName(elt), elt) for elt in elem.findall('param')]
303 def is_count_output(name, elt):
308 and (elt.tail is None or 'const' not in elt.tail) \
311 countParams = [elt
312 for name, elt in params
313 if is_count_output(name, elt)]
510 type_elts = [elt
[all...]
/third_party/python/Lib/
H A Ddifflib.py280 for i, elt in enumerate(b):
281 indices = b2j.setdefault(elt, [])
288 for elt in b2j.keys():
289 if isjunk(elt):
290 junk.add(elt)
291 for elt in junk: # separate loop avoids separate list of keys
292 del b2j[elt]
299 for elt, idxs in b2j.items():
301 popular.add(elt)
302 for elt i
[all...]
/third_party/mesa3d/src/mesa/math/
H A Dm_vector.c42 * Given a vector [count][4] of floats, set all the [][elt] values
43 * to 0 (if elt = 0, 1, 2) or 1.0 (if elt = 3).
46 _mesa_vector4f_clean_elem( GLvector4f *vec, GLuint count, GLuint elt ) in _mesa_vector4f_clean_elem()
55 const GLfloat v = clean[elt]; in _mesa_vector4f_clean_elem()
60 data[i][elt] = v; in _mesa_vector4f_clean_elem()
62 vec->flags &= ~elem_bits[elt]; in _mesa_vector4f_clean_elem()
/third_party/node/deps/v8/src/strings/
H A Dstring-builder.cc63 Object elt = fixed_array.get(i); in StringBuilderConcatLength() local
64 if (elt.IsSmi()) { in StringBuilderConcatLength()
66 int smi_value = Smi::ToInt(elt); in StringBuilderConcatLength()
88 } else if (elt.IsString()) { in StringBuilderConcatLength()
89 String element = String::cast(elt); in StringBuilderConcatLength()
/third_party/node/test/parallel/
H A Dtest-http-same-map.js43 for (const elt of list) eval('%DebugPrint(elt)');
45 for (const elt of list) assert(eval('%HaveSameMap(list[0], elt)'));
/third_party/elfutils/libdw/
H A Ddwarf_getaranges.c270 struct arangelist *elt = sortaranges[i]; in dwarf_getaranges() local
271 (*aranges)->info[i] = elt->arange; in dwarf_getaranges()
272 free (elt); in dwarf_getaranges()
/third_party/mesa3d/src/mesa/main/
H A Dapi_arrayelt.c1415 * Return the address of the array attribute array at elt in the
1420 const struct gl_array_attributes *array, GLint elt) in attrib_src()
1431 return src + elt * binding->Stride; in attrib_src()
1436 _mesa_array_element(struct gl_context *ctx, GLint elt) in _mesa_array_element() argument
1446 const void *src = attrib_src(vao, array, elt); in _mesa_array_element()
1455 const void *src = attrib_src(vao, array, elt); in _mesa_array_element()
1463 const void *src = attrib_src(vao, array, elt); in _mesa_array_element()
1468 const void *src = attrib_src(vao, array, elt); in _mesa_array_element()
1477 * for all enabled vertex arrays (for elt-th element).
1481 _mesa_ArrayElement(GLint elt) in _mesa_ArrayElement() argument
1419 attrib_src(const struct gl_vertex_array_object *vao, const struct gl_array_attributes *array, GLint elt) attrib_src() argument
[all...]
H A Dapi_arrayelt.h35 extern void _mesa_array_element(struct gl_context *ctx, GLint elt);
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationRegressionTest.java995 int elt = iter.next(); in Test4179216()
997 while (elt != CollationElementIterator.NULLORDER) { in Test4179216()
999 elt = iter.next(); in Test4179216()
1007 elt = iter.next(); in Test4179216()
1009 while (elt != CollationElementIterator.NULLORDER) { in Test4179216()
1012 elt = iter.next(); in Test4179216()
1018 elt = iter.next(); in Test4179216()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationRegressionTest.java998 int elt = iter.next(); in Test4179216()
1000 while (elt != CollationElementIterator.NULLORDER) { in Test4179216()
1002 elt = iter.next(); in Test4179216()
1010 elt = iter.next(); in Test4179216()
1012 while (elt != CollationElementIterator.NULLORDER) { in Test4179216()
1015 elt = iter.next(); in Test4179216()
1021 elt = iter.next(); in Test4179216()
/third_party/python/Lib/urllib/
H A Dparse.py1008 for elt in v:
1009 if isinstance(elt, bytes):
1010 elt = quote_via(elt, safe)
1012 elt = quote_via(str(elt), safe, encoding, errors)
1013 l.append(k + '=' + elt)
/third_party/python/Python/
H A Dcompile.c434 expr_ty elt, expr_ty val, int type);
440 expr_ty elt, expr_ty val, int type);
1691 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, _i); \
1692 if (!compiler_visit_ ## TYPE((C), elt)) \
1701 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, _i); \
1702 if (!compiler_visit_ ## TYPE((C), elt)) { \
4416 expr_ty elt = asdl_seq_GET(elts, i); in starunpack_helper() local
4417 if (elt->kind == Starred_kind) { in starunpack_helper()
4423 expr_ty elt = asdl_seq_GET(elts, i); in starunpack_helper() local
4424 VISIT(c, expr, elt); in starunpack_helper()
4439 expr_ty elt = asdl_seq_GET(elts, i); starunpack_helper() local
4468 expr_ty elt = asdl_seq_GET(elts, i); unpack_helper() local
4495 expr_ty elt = asdl_seq_GET(elts, i); assignment_helper() local
4876 expr_ty elt = asdl_seq_GET(args, i); maybe_optimize_method_call() local
5118 expr_ty elt = asdl_seq_GET(args, i); compiler_call_helper() local
5132 expr_ty elt = asdl_seq_GET(args, i); compiler_call_helper() local
5219 compiler_comprehension_generator(struct compiler *c, asdl_comprehension_seq *generators, int gen_index, int depth, expr_ty elt, expr_ty val, int type) compiler_comprehension_generator() argument
5236 compiler_sync_comprehension_generator(struct compiler *c, asdl_comprehension_seq *generators, int gen_index, int depth, expr_ty elt, expr_ty val, int type) compiler_sync_comprehension_generator() argument
5280 expr_ty elt = asdl_seq_GET(elts, 0); compiler_sync_comprehension_generator() local
5350 compiler_async_comprehension_generator(struct compiler *c, asdl_comprehension_seq *generators, int gen_index, int depth, expr_ty elt, expr_ty val, int type) compiler_async_comprehension_generator() argument
5449 compiler_comprehension(struct compiler *c, expr_ty e, int type, identifier name, asdl_comprehension_seq *generators, expr_ty elt, expr_ty val) compiler_comprehension() argument
6413 pattern_ty elt = asdl_seq_GET(elts, i); pattern_unpack_helper() local
[all...]
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_urllib.py150 for elt in elts[:-1]:
151 names.extend(handle_name(elt, pref))
/third_party/python/Lib/test/libregrtest/
H A Dutils.py59 print(textwrap.fill(' '.join(str(elt) for elt in sorted(x)), width,
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_reg.h1064 get_element(struct brw_reg reg, unsigned elt)
1066 return vec1(suboffset(reg, elt));
1070 get_element_ud(struct brw_reg reg, unsigned elt)
1072 return vec1(suboffset(retype(reg, BRW_REGISTER_TYPE_UD), elt));
1076 get_element_d(struct brw_reg reg, unsigned elt)
1078 return vec1(suboffset(retype(reg, BRW_REGISTER_TYPE_D), elt));
/third_party/python/Include/internal/
H A Dpycore_ast.h392 expr_ty elt; member
397 expr_ty elt; member
408 expr_ty elt; member
745 expr_ty _PyAST_ListComp(expr_ty elt, asdl_comprehension_seq * generators, int
748 expr_ty _PyAST_SetComp(expr_ty elt, asdl_comprehension_seq * generators, int
754 expr_ty _PyAST_GeneratorExp(expr_ty elt, asdl_comprehension_seq * generators,

Completed in 25 milliseconds

123