/third_party/zlib/examples/ |
H A D | gznorm.c | 122 unsigned long long memb; // uncompressed length of member in gzip_normalize() local 160 memb += got; in gzip_normalize() 161 if (memb < got) in gzip_normalize() 185 memb = 0; in gzip_normalize() 392 z_off_t len2 = memb; in gzip_normalize() 393 if (len2 < 0 || (unsigned long long)len2 != memb) in gzip_normalize()
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_reflect.cpp | 428 auto &memb = ir.meta[type.self].members; in emit_type_member_qualifiers() local 429 if (index < memb.size()) in emit_type_member_qualifiers() 431 auto &dec = memb[index]; in emit_type_member_qualifiers() 698 auto &memb = type_meta->members; in to_member_name() local 699 if (index < memb.size() && !memb[index].alias.empty()) in to_member_name() 700 return memb[index].alias; in to_member_name()
|
H A D | spirv_cross_parsed_ir.cpp | 332 for (auto &memb : m.members) in fixup_reserved_names() 333 sanitize_identifier(memb.alias, true, false); in fixup_reserved_names()
|
H A D | spirv_glsl.cpp | 1187 auto &memb = ir.meta[type.self].members; 1188 if (index >= memb.size()) 1190 auto &dec = memb[index]; 2732 for (auto &memb : meta->members) 2733 if (keywords.find(memb.alias) != end(keywords)) 2734 memb.alias = join("_", memb.alias); 12727 auto &memb = ir.meta[type.self].members; 12728 if (index < memb.size() && !memb[inde [all...] |
H A D | spirv_hlsl.cpp | 2068 auto &memb = ir.meta[type.self].members; in emit_struct_member() local 2069 if (index < memb.size()) in emit_struct_member() 2070 memberflags = memb[index].decoration_flags; in emit_struct_member() 2078 uint32_t offset = memb[index].offset - base_offset; in emit_struct_member() 2225 auto &memb = ir.meta[type.self].members; in emit_push_constant_block() local 2236 for (auto i = 0u; i < memb.size(); i++) in emit_push_constant_block() 2238 const auto offset = memb[i].offset; in emit_push_constant_block()
|
H A D | spirv_cross.cpp | 571 auto &memb = type_meta->members; in is_member_builtin() local 572 if (index < memb.size() && memb[index].builtin) in is_member_builtin() 575 *builtin = memb[index].builtin_type; in is_member_builtin()
|
/third_party/elfutils/src/ |
H A D | ar.c | 845 write_member (struct armem *memb, off_t *startp, off_t *lenp, Elf *elf, in write_member() argument 854 bool changed_header = memb->long_name_off != -1; in write_member() 862 (int) sizeof (arhdr.ar_name), memb->long_name_off); in write_member() 868 if (*startp != -1 && !changed_header && *startp + *lenp == memb->old_off) in write_member() 871 *lenp += (memb->next != NULL in write_member() 872 ? memb->next->off : end_off) - memb->off; in write_member() 880 *startp = memb->old_off; in write_member() 881 *lenp = (memb->next != NULL ? memb in write_member() [all...] |
/third_party/mesa3d/src/egl/main/ |
H A D | eglconfig.h | 101 #define ATTRIB_MAP(attr, memb) case attr: return offsetof(_EGLConfig, memb) in _eglOffsetOfConfig()
|
/third_party/python/Modules/ |
H A D | socketmodule.c | 471 #define _BT_L2_MEMB(sa, memb) ((sa)->l2cap_##memb) 472 #define _BT_RC_MEMB(sa, memb) ((sa)->rfcomm_##memb) 473 #define _BT_HCI_MEMB(sa, memb) ((sa)->hci_##memb) 481 #define _BT_L2_MEMB(sa, memb) ((sa)->bt_##memb) 482 #define _BT_RC_MEMB(sa, memb) ((sa)->bt_##memb) [all...] |
/third_party/skia/tests/ |
H A D | DataRefTest.cpp | 31 const void* memb = b->at(i, &sizeb); in test_is_equal() local 33 REPORTER_ASSERT(reporter, !memcmp(mema, memb, sizea)); in test_is_equal()
|
/third_party/python/Objects/ |
H A D | typeobject.c | 3393 for (const PyMemberDef *memb = slot->pfunc; memb->name != NULL; memb++) { in PyType_FromModuleAndSpec() 3395 if (strcmp(memb->name, "__weaklistoffset__") == 0) { in PyType_FromModuleAndSpec() 3397 assert(memb->type == T_PYSSIZET); in PyType_FromModuleAndSpec() 3398 assert(memb->flags == READONLY); in PyType_FromModuleAndSpec() 3399 weaklistoffset = memb->offset; in PyType_FromModuleAndSpec() 3401 if (strcmp(memb->name, "__dictoffset__") == 0) { in PyType_FromModuleAndSpec() 3403 assert(memb->type == T_PYSSIZET); in PyType_FromModuleAndSpec() 3404 assert(memb in PyType_FromModuleAndSpec() 5732 PyMemberDef *memb = type->tp_members; type_add_members() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_firequalizer.c | 413 static int gain_entry_compare(const void *key, const void *memb) in gain_entry_compare() argument 416 const GainEntry *entry = memb; in gain_entry_compare()
|
/third_party/glslang/glslang/HLSL/ |
H A D | hlslParseHelper.cpp | 5641 for (int memb = 0; memb < (int)(*fnCandidate)[i].type->getStruct()->size(); ++memb) in handleFunctionCall() 5885 for (int memb = 0; memb < (int)arg->getType().getStruct()->size(); ++memb) in expandArguments() 5886 memberArgs.push_back(flattenAccess(arg, memb)); in expandArguments()
|