Home
last modified time | relevance | path

Searched refs:last_component (Results 1 – 7 of 7) sorted by relevance

/third_party/selinux/libselinux/src/
Dmatchpathcon.c389 char *last_component; in realpath_not_final() local
402 last_component = strrchr(tmp_path, '/'); in realpath_not_final()
404 if (last_component == tmp_path) { in realpath_not_final()
405 last_component++; in realpath_not_final()
407 } else if (last_component) { in realpath_not_final()
408 *last_component = '\0'; in realpath_not_final()
409 last_component++; in realpath_not_final()
412 last_component = tmp_path; in realpath_not_final()
424 if (len + strlen(last_component) + 2 > PATH_MAX) { in realpath_not_final()
435 strcpy(resolved_path, last_component); in realpath_not_final()
/third_party/mesa3d/src/compiler/nir/
Dnir_serialize.c658 unsigned last_component:4; member
665 unsigned last_component:4; member
1314 header.load_const.last_component = lc->def.num_components - 1; in write_load_const()
1394 nir_load_const_instr_create(ctx->nir, header.load_const.last_component + 1, in read_load_const()
1472 header.undef.last_component = undef->def.num_components - 1; in write_ssa_undef()
1483 nir_ssa_undef_instr_create(ctx->nir, header.undef.last_component + 1, in read_ssa_undef()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_decorations.cpp1592 const auto last_component = component + vstate.GetDimension(type_id) - 1; in CheckComponentDecoration() local
1593 if (last_component > 3) { in CheckComponentDecoration()
1596 << " and ending with " << last_component in CheckComponentDecoration()
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dvalidate_decorations.cpp1592 const auto last_component = component + vstate.GetDimension(type_id) - 1; in CheckComponentDecoration() local
1593 if (last_component > 3) { in CheckComponentDecoration()
1596 << " and ending with " << last_component in CheckComponentDecoration()
/third_party/spirv-tools/source/val/
Dvalidate_decorations.cpp1688 const auto last_component = component + vstate.GetDimension(type_id) - 1; in CheckComponentDecoration() local
1689 if (last_component > 3) { in CheckComponentDecoration()
1692 << " and ending with " << last_component in CheckComponentDecoration()
/third_party/mesa3d/src/compiler/glsl/
Dgl_nir_link_varyings.c522 const unsigned last_component = xfb_offset + num_components - 1; in xfb_decl_store() local
524 const unsigned end_word = BITSET_BITWORD(last_component); in xfb_decl_store()
526 assert(last_component < max_components); in xfb_decl_store()
542 end_range = last_component % BITSET_WORDBITS; in xfb_decl_store()
/third_party/mesa3d/src/broadcom/compiler/
Dnir_to_vir.c368 uint32_t last_component = first_component; in emit_tmu_general_store_writes() local
369 while (*writemask & BITFIELD_BIT(last_component + 1)) in emit_tmu_general_store_writes()
370 last_component++; in emit_tmu_general_store_writes()
372 assert(first_component <= last_component && in emit_tmu_general_store_writes()
373 last_component < instr->num_components); in emit_tmu_general_store_writes()
375 for (int i = first_component; i <= last_component; i++) { in emit_tmu_general_store_writes()