Searched defs:filler (Results 1 - 25 of 26) sorted by relevance

12

/external/clang/test/CodeGen/
H A D2010-07-14-overconservative-align.c6 int filler __attribute__ ((aligned (8))); member in struct:s::__anon4167
/external/clang/test/CodeGenCXX/
H A Dreference-in-block-args.cpp7 int filler; member in struct:ST
22 INNER_BLOCK(^() { return ref.referrer + ref.filler; });
H A Darray-value-initialize.cpp8 double filler; member in struct:S
16 printf("sbar_[%d].filler = %f\n", i, sbar_[i].filler);
/external/kernel-headers/original/linux/
H A Dpagemap.h97 unsigned long index, filler_t *filler,
100 struct list_head *pages, filler_t *filler, void *data);
105 filler_t *filler = (filler_t *)mapping->a_ops->readpage; local
106 return read_cache_page(mapping, index, filler, data);
/external/libpng/
H A Dpngtrans.c108 /* Add a filler byte on read, or remove a filler or alpha byte on write.
109 * The filler type has changed in v0.95 to allow future 2-byte fillers
114 png_set_filler(png_structp png_ptr, png_uint_32 filler, int filler_loc) argument
122 png_ptr->filler = (png_byte)filler;
124 png_ptr->filler = (png_uint_16)filler;
153 png_set_add_alpha(png_structp png_ptr, png_uint_32 filler, int filler_loc) argument
159 png_set_filler(png_ptr, filler, filler_lo
[all...]
H A Dpngrtran.c1306 /* If adding a true alpha channel not just filler */
1537 (png_uint_32)png_ptr->filler, png_ptr->flags);
2044 /* Add filler channel if we have RGB color */
2047 png_uint_32 filler, png_uint_32 flags)
2052 png_byte hi_filler = (png_byte)((filler>>8) & 0xff);
2053 png_byte lo_filler = (png_byte)(filler & 0xff);
2046 png_do_read_filler(png_row_infop row_info, png_bytep row, png_uint_32 filler, png_uint_32 flags) argument
/external/qemu/distrib/libpng-1.2.19/
H A Dpngtrans.c93 /* Add a filler byte on read, or remove a filler or alpha byte on write.
94 * The filler type has changed in v0.95 to allow future 2-byte fillers
99 png_set_filler(png_structp png_ptr, png_uint_32 filler, int filler_loc) argument
104 png_ptr->filler = (png_byte)filler;
132 png_set_add_alpha(png_structp png_ptr, png_uint_32 filler, int filler_loc) argument
136 png_set_filler(png_ptr, filler, filler_loc);
392 /* remove filler or alpha byte(s) */
H A Dpngrtran.c1224 /* if adding a true alpha channel not just filler */
1450 (png_uint_32)png_ptr->filler, png_ptr->flags);
1944 /* Add filler channel if we have RGB color */
1947 png_uint_32 filler, png_uint_32 flags)
1952 png_byte hi_filler = (png_byte)((filler>>8) & 0xff);
1953 png_byte lo_filler = (png_byte)(filler & 0xff);
1946 png_do_read_filler(png_row_infop row_info, png_bytep row, png_uint_32 filler, png_uint_32 flags) argument
H A Dpng.h1199 png_byte filler; /* filler byte for pixel expansion */ member in struct:png_struct_def
1201 png_uint_16 filler; /* filler bytes for pixel expansion */ member in struct:png_struct_def
1596 /* Add a filler byte to 8-bit Gray or 24-bit RGB images. */
1598 png_uint_32 filler, int flags));
1605 png_uint_32 filler, int flags));
3206 png_bytep row, png_uint_32 filler, png_uint_32 flags));
/external/v8/src/
H A Dcpu-profiler.h103 : filler(1),
105 ASSERT(filler != SamplingCircularQueue::kClear);
112 // forced to use an artificial filler field.
113 int filler; member in class:v8::internal::TickSampleEventRecord
H A Dheap.cc3332 HeapObject* filler = HeapObject::FromAddress(addr);
3334 filler->set_map_no_write_barrier(one_pointer_filler_map());
3336 filler->set_map_no_write_barrier(two_pointer_filler_map());
3338 filler->set_map_no_write_barrier(free_space_map());
3339 FreeSpace::cast(filler)->set_size(size);
3753 Object* filler; local
3765 filler = Heap::one_pointer_filler_map();
3767 filler = Heap::undefined_value();
3769 obj->InitializeBody(map, Heap::undefined_value(), filler);
4135 // Put in filler i
4548 AllocateFixedArrayWithFiller( Heap* heap, int length, PretenureFlag pretenure, Object* filler) argument
[all...]
H A Dprofile-generator.cc1777 SnapshotFillerInterface* filler, V8HeapExplorer* explorer)
1778 : filler_(filler),
1801 void V8HeapExplorer::AddRootEntries(SnapshotFillerInterface* filler) { argument
1802 filler->AddEntry(kInternalRootObject, this);
1803 filler->AddEntry(kGcRootsObject, this);
1804 GcSubrootsEnumerator enumerator(filler, this);
2306 SnapshotFillerInterface* filler) {
2309 filler_ = filler;
2336 bool V8HeapExplorer::IterateAndSetObjectNames(SnapshotFillerInterface* filler) { argument
2338 filler_ = filler;
1776 GcSubrootsEnumerator( SnapshotFillerInterface* filler, V8HeapExplorer* explorer) argument
2305 IterateAndExtractReferences( SnapshotFillerInterface* filler) argument
2794 IterateAndExtractReferences( SnapshotFillerInterface* filler) argument
[all...]
/external/quake/quake/src/WinQuake/
H A Dscreen.cpp538 char filler[58]; member in struct:__anon11847
575 Q_memset (pcx->filler,0,sizeof(pcx->filler));
H A Dgl_warp.cpp417 char filler[58]; member in struct:__anon11715
/external/mksh/src/
H A Djobs.c1438 const char *filler; local
1452 filler = j->job > 10 ? "\n " : "\n ";
1500 shf_puts(filler, shf);
1524 shf_fprintf(shf, "%s%5d %-20s %s%s", filler,
/external/qemu/block/
H A Dvmdk.c57 char filler[1]; member in struct:__anon10350
/external/quake/quake/src/QW/client/
H A Dgl_warp.c368 char filler[58]; member in struct:__anon11354
H A Dclient.h503 char filler[58]; member in struct:__anon11311
/external/clang/lib/Serialization/
H A DASTWriterStmt.cpp622 // Replace them by 0 to indicate that the filler goes in that place.
623 Expr *filler = E->getArrayFiller(); local
625 Writer.AddStmt(E->getInit(I) != filler ? E->getInit(I) : 0);
H A DASTReaderStmt.cpp633 Expr *filler = 0; local
635 filler = Reader.ReadSubExpr();
636 E->ArrayFillerOrUnionFieldInit = filler;
646 E->updateInit(Reader.getContext(), I, init ? init : filler);
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp455 Expr *filler = E->getArrayFiller(); local
457 if (CXXConstructExpr *cons = dyn_cast_or_null<CXXConstructExpr>(filler)) {
463 // using the filler expression. We can skip this if the we're
470 // do { *array++ = filler; } while (array != end);
492 // Emit the actual filler expression.
494 if (filler)
495 EmitInitializationToLValue(filler, elementLV);
/external/icu4c/test/cintltst/
H A Dcapitst.c1685 uint8_t filler = 0xFF; local
1690 memset(sortKey, filler, 256);
1696 if(sortKey[j] != filler) {
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.cc1541 Register filler) {
1545 mov(Operand(start_offset, 0), filler); local
1539 InitializeFieldsWithFiller(Register start_offset, Register end_offset, Register filler) argument
/external/clang/lib/AST/
H A DExpr.cpp1718 void InitListExpr::setArrayFiller(Expr *filler) { argument
1720 ArrayFillerOrUnionFieldInit = filler;
1725 inits[i] = filler;
2729 // FIXME: The children for an InitListExpr doesn't include the array filler.
/external/v8/src/x64/
H A Dmacro-assembler-x64.cc3997 Register filler) {
4001 movq(Operand(start_offset, 0), filler); local
3995 InitializeFieldsWithFiller(Register start_offset, Register end_offset, Register filler) argument

Completed in 1011 milliseconds

12