Searched defs:target_map (Results 1 - 7 of 7) sorted by relevance

/external/v8/src/
H A Dtransitions.cc297 Handle<Map> target_map) {
306 Handle<WeakCell> target_cell = Map::WeakCellForMap(target_map);
295 PutPrototypeTransition(Handle<Map> map, Handle<Object> prototype, Handle<Map> target_map) argument
/external/freetype/src/smooth/
H A Dftgrays.c1834 const FT_Bitmap* target_map = params->target; local
1876 if ( !target_map )
1880 if ( !target_map->width || !target_map->rows )
1883 if ( !target_map->buffer )
1886 if ( target_map->pitch < 0 )
1887 ras.target.origin = target_map->buffer;
1889 ras.target.origin = target_map->buffer
1890 + ( target_map->rows - 1 ) * (unsigned int)target_map
[all...]
/external/pdfium/third_party/freetype/src/smooth/
H A Dftgrays.c1924 const FT_Bitmap* target_map = params->target; local
1954 if ( !target_map )
1958 if ( !target_map->width || !target_map->rows )
1961 if ( !target_map->buffer )
1975 ras.clip_box.xMax = (FT_Pos)target_map->width;
1976 ras.clip_box.yMax = (FT_Pos)target_map->rows;
2004 ras.target = *target_map;
/external/freetype/src/raster/
H A Dftraster.c3147 const FT_Bitmap* target_map = params->target; local
3178 if ( !target_map )
3182 if ( !target_map->width || !target_map->rows )
3185 if ( !target_map->buffer )
3203 ras.target = *target_map;
/external/pdfium/third_party/freetype/src/raster/
H A Dftraster.c3137 const FT_Bitmap* target_map = params->target; local
3168 if ( !target_map )
3172 if ( !target_map->width || !target_map->rows )
3175 if ( !target_map->buffer )
3179 ras.target = *target_map;
/external/v8/src/compiler/
H A Deffect-control-linearizer.cc2380 Node* target_map = __ HeapConstant(transition.target()); local
2393 // In-place migration of {object}, just store the {target_map}.
2394 __ StoreField(AccessBuilder::ForMap(), object, target_map); local
2402 __ Call(desc, __ CEntryStubConstant(1), object, target_map,
/external/v8/src/ic/
H A Dic.cc819 bool IC::IsTransitionOfMonomorphicTarget(Map* source_map, Map* target_map) { argument
821 if (target_map == NULL) return false;
822 ElementsKind target_elements_kind = target_map->elements_kind();
828 map_list.Add(handle(target_map));
831 return transitioned_map == target_map;

Completed in 591 milliseconds