Home
last modified time | relevance | path

Searched refs:ftr (Results 1 – 6 of 6) sorted by relevance

/third_party/mesa3d/src/util/
Du_debug_memory.c128 struct debug_memory_footer *ftr; in debug_malloc() local
130 hdr = os_malloc(sizeof(*hdr) + size + sizeof(*ftr)); in debug_malloc()
153 ftr = footer_from_header(hdr); in debug_malloc()
154 ftr->magic = DEBUG_MEMORY_MAGIC; in debug_malloc()
168 struct debug_memory_footer *ftr; in debug_free() local
182 ftr = footer_from_header(hdr); in debug_free()
183 if (ftr->magic != DEBUG_MEMORY_MAGIC) { in debug_free()
205 ftr->magic = 0; in debug_free()
311 struct debug_memory_footer *ftr; in debug_memory_end() local
315 ftr = footer_from_header(hdr); in debug_memory_end()
[all …]
/third_party/boost/libs/thread/doc/
Dfutures.qbk301 auto ftr = async( [=]{ return work( arg ); } );
304 use1( ftr.get() );
307 use2( ftr.get() );
309 use3( ftr.get() ); // second use is undefined
316 shared_future<type> ftr = async( [=]{ return work( arg ); } );
319 use1( ftr.get() );
322 use2( ftr.get() );
324 use3( ftr.get() ); // second use is defined
334 auto ftr = async( [=]{ return work( arg ); } ).share();
337 use1( ftr.get() );
[all …]
/third_party/selinux/libsepol/src/
Dwrite.c1937 filename_trans_rule_t *ftr; in filename_trans_rule_write() local
1939 for (ftr = t; ftr; ftr = ftr->next) in filename_trans_rule_write()
1947 for (ftr = t; ftr; ftr = ftr->next) { in filename_trans_rule_write()
1948 len = strlen(ftr->name); in filename_trans_rule_write()
1954 items = put_entry(ftr->name, sizeof(char), len, fp); in filename_trans_rule_write()
1958 if (type_set_write(&ftr->stypes, fp)) in filename_trans_rule_write()
1960 if (type_set_write(&ftr->ttypes, fp)) in filename_trans_rule_write()
1963 buf[0] = cpu_to_le32(ftr->tclass); in filename_trans_rule_write()
1964 buf[1] = cpu_to_le32(ftr->otype); in filename_trans_rule_write()
Dpolicydb.c3817 filename_trans_rule_t *ftr, *lftr; in filename_trans_rule_read() local
3826 ftr = malloc(sizeof(*ftr)); in filename_trans_rule_read()
3827 if (!ftr) in filename_trans_rule_read()
3830 filename_trans_rule_init(ftr); in filename_trans_rule_read()
3833 lftr->next = ftr; in filename_trans_rule_read()
3835 *r = ftr; in filename_trans_rule_read()
3836 lftr = ftr; in filename_trans_rule_read()
3846 ftr->name = malloc(len + 1); in filename_trans_rule_read()
3847 if (!ftr->name) in filename_trans_rule_read()
3850 rc = next_entry(ftr->name, fp, len); in filename_trans_rule_read()
[all …]
/third_party/ffmpeg/libavdevice/
Ddecklink_dec.cpp336 uint16_t hdr, ftr; in vanc_to_cc() local
399 ftr = (cdp[len - 3] << 8) | cdp[len - 2]; in vanc_to_cc()
400 if (ftr != hdr) { in vanc_to_cc()
401 av_log(avctx, AV_LOG_WARNING, "Header 0x%.4x != Footer 0x%.4x\n", hdr, ftr); in vanc_to_cc()
/third_party/selinux/checkpolicy/
Dpolicy_define.c3299 filename_trans_rule_t *ftr; in define_filename_trans() local
3402 ftr = malloc(sizeof(*ftr)); in define_filename_trans()
3403 if (!ftr) { in define_filename_trans()
3407 filename_trans_rule_init(ftr); in define_filename_trans()
3408 append_filename_trans(ftr); in define_filename_trans()
3410 ftr->name = strdup(name); in define_filename_trans()
3411 if (type_set_cpy(&ftr->stypes, &stypes)) { in define_filename_trans()
3415 if (type_set_cpy(&ftr->ttypes, &ttypes)) { in define_filename_trans()
3419 ftr->tclass = c + 1; in define_filename_trans()
3420 ftr->otype = otype; in define_filename_trans()