/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/ |
NativeImageSkia.cpp | 414 SkImageInfo info = bitmap.info(); local 415 info.fWidth += spaceWidth; 416 info.fHeight += spaceHeight; 417 info.fAlphaType = kPremul_SkAlphaType; 420 result.allocPixels(info); 549 // between the last requested resize info and m_resizedImage's 550 // resize info.
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
Assertions.cpp | 270 Dl_info info; local 271 if (!dladdr(addr, &info) || !info.dli_sname) 273 const char* mangledName = info.dli_sname;
|
ThreadingWin.cpp | 124 THREADNAME_INFO info; local 125 info.dwType = 0x1000; 126 info.szName = szThreadName; 127 info.dwThreadID = GetCurrentThreadId(); 128 info.dwFlags = 0; 131 RaiseException(MS_VC_EXCEPTION, 0, sizeof(info)/sizeof(ULONG_PTR), reinterpret_cast<ULONG_PTR*>(&info));
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-buffer-private.hh | 64 unsigned int idx; /* Cursor into ->info and ->pos arrays */ 65 unsigned int len; /* Length of ->info and ->pos arrays */ 69 hb_glyph_info_t *info; member in struct:hb_buffer_t 73 inline hb_glyph_info_t &cur (unsigned int i = 0) { return info[idx + i]; } 74 inline hb_glyph_info_t cur (unsigned int i = 0) const { return info[idx + i]; } 80 inline hb_glyph_info_t prev (void) const { return info[out_len - 1]; } 82 inline bool has_separate_output (void) const { return info != out_info; } 146 if (unlikely (out_info != info || out_len != idx)) { 148 out_info[out_len] = info[idx]; 162 info[j].mask = mask [all...] |
hb-graphite2.cc | 249 chars[i] = buffer->info[i].codepoint; 336 hb_glyph_info_t *info = &buffer->info[clusters[i].base_glyph + j]; local 337 info->codepoint = gids[clusters[i].base_glyph + j]; 338 info->cluster = gr_cinfo_base(gr_seg_cinfo(seg, clusters[i].base_char));
|
hb-ot-shape-complex-hangul.cc | 199 hb_glyph_info_t *info = buffer->out_info; local 200 hb_glyph_info_t tone = info[end]; 201 memmove (&info[start + 1], &info[start], (end - start) * sizeof (hb_glyph_info_t)); 202 info[start] = tone; 345 hb_glyph_info_t *info = buffer->out_info; 358 info[i++].hangul_shaping_feature() = LJMO; 359 info[i++].hangul_shaping_feature() = VJMO; 361 info[i++].hangul_shaping_feature() = TJMO; 394 hb_glyph_info_t *info = buffer->info local [all...] |
hb-ot-shape-complex-myanmar.cc | 153 is_one_of (const hb_glyph_info_t &info, unsigned int flags) 156 if (_hb_glyph_info_ligated (&info)) return false; 157 return !!(FLAG (info.myanmar_category()) & flags); 167 is_consonant (const hb_glyph_info_t &info) 169 return is_one_of (info, CONSONANT_FLAGS); 174 set_myanmar_properties (hb_glyph_info_t &info) 176 hb_codepoint_t u = info.codepoint; 270 info.myanmar_category() = (myanmar_category_t) cat; 271 info.myanmar_position() = pos; 289 set_myanmar_properties (buffer->info[i]) 319 hb_glyph_info_t *info = buffer->info; local 492 hb_glyph_info_t info = dottedcircle; local 513 hb_glyph_info_t *info = buffer->info; local 532 hb_glyph_info_t *info = buffer->info; local [all...] |
hb-ot-shape-complex-sea.cc | 138 set_sea_properties (hb_glyph_info_t &info) 140 hb_codepoint_t u = info.codepoint; 160 info.sea_category() = (sea_category_t) cat; 161 info.sea_position() = pos; 178 set_sea_properties (buffer->info[i]); 205 hb_glyph_info_t *info = buffer->info; local 211 info[i].sea_position() = POS_PRE_C; 214 info[i].sea_position() = POS_BASE_C; 219 if (info[i].sea_category() == OT_MR) /* Pre-base reordering * 311 hb_glyph_info_t info = dottedcircle; local 332 hb_glyph_info_t *info = buffer->info; local 351 hb_glyph_info_t *info = buffer->info; local [all...] |
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
toolutil.cpp | 91 static WIN32_FIND_DATAA info; local 92 HANDLE file=FindFirstFileA(pathname, &info); 94 if(info.cAlternateFileName[0]!=0) { 99 uprv_memmove(info.cFileName+(basename-pathname), info.cFileName, uprv_strlen(info.cFileName)+1); 100 uprv_memcpy(info.cFileName, pathname, basename-pathname); 102 pathname=info.cFileName;
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
win32.cc | 440 OSVERSIONINFO info = {0}; local 441 info.dwOSVersionInfoSize = sizeof(info); 442 if (GetVersionEx(&info)) { 443 if (major) *major = info.dwMajorVersion; 444 if (minor) *minor = info.dwMinorVersion; 445 if (build) *build = info.dwBuildNumber;
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/ |
connectivitychecker.cc | 148 NicInfo info; local 149 info.ip = ip; 150 info.proxy_info = GetProxyInfo(); 151 info.stun.start_time_ms = now; 152 nics_.insert(std::pair<NicId, NicInfo>(NicId(ip, proxy_addr), info)); 230 LOG(LS_ERROR) << "No nic info found while receiving response."; 401 LOG(LS_ERROR) << "Failed to find nic info when creating relay ports."; 509 LOG(LS_ERROR) << "Error, no nic info found while registering http start.";
|
connectivitychecker_unittest.cc | 251 void VerifyNic(const NicInfo& info, 254 EXPECT_EQ(kExternalAddr, info.external_address); 257 EXPECT_EQ(kStunAddr, info.stun_server_address); 261 EXPECT_EQ(kRelayAddr.ipaddr(), info.media_server_address.ipaddr()); 264 EXPECT_EQ(local_address.ipaddr(), info.ip); 268 EXPECT_GE(info.stun.rtt, 0); 269 EXPECT_GE(info.udp.rtt, 0); 270 EXPECT_GE(info.tcp.rtt, 0); 271 EXPECT_GE(info.ssltcp.rtt, 0); 274 if (!info.proxy_info.address.IsNil()) 311 NicInfo info = i->second; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
pubsubstateclient.h | 157 // return false if retracted item (no info or state given) 191 StateItemInfo info; local 194 bool retracted = !ParseStateItem(item, &info, &new_state); 203 info = info_by_itemid_[itemid]; 210 info_by_itemid_[itemid] = info; 214 info.publisher_nick, info.published_nick); 232 change.publisher_nick = info.publisher_nick; 234 change.published_nick = info.published_nick;
|
/external/chromium_org/third_party/libvpx/source/libvpx/examples/ |
vpx_temporal_svc_encoder.c | 553 VpxVideoInfo info; local 554 info.codec_fourcc = encoder->fourcc; 555 info.frame_width = cfg.g_w; 556 info.frame_height = cfg.g_h; 557 info.time_base.numerator = cfg.g_timebase.num; 558 info.time_base.denominator = cfg.g_timebase.den; 561 outfile[i] = vpx_video_writer_open(file_name, kContainerIVF, &info);
|
/external/chromium_org/third_party/libxml/src/ |
HTMLtree.c | 780 const htmlElemDesc * info; local 855 * Get specific HTML info for that node. 858 info = htmlTagLookup(cur->name); 860 info = NULL; 873 if ((info != NULL) && (info->empty)) { 875 if ((format) && (!info->isinline) && (cur->next != NULL)) { 887 if ((info != NULL) && (info->saveEndTag != 0) && 888 (xmlStrcmp(BAD_CAST info->name, BAD_CAST "html")) & [all...] |
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/ |
platform_android.c | 575 struct drm_radeon_info info; local 580 memset(&info, 0, sizeof(info)); 581 info.request = RADEON_INFO_DEVICE_ID; 582 info.value = (unsigned long) chip_id; 583 ret = drmCommandWriteRead(fd, DRM_RADEON_INFO, &info, sizeof(info)); 585 _eglLog(_EGL_WARNING, "failed to get info for radeon");
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_context.c | 500 * If a geometry shader is present, return its info, else the vertex shader's 501 * info. 508 return &draw->gs.geometry_shader->info; 510 return &draw->vs.vertex_shader->info; 534 const struct tgsi_shader_info *info = draw_get_shader_info(draw); local 537 for (i = 0; i < info->num_outputs; i++) { 538 if (info->output_semantic_name[i] == semantic_name && 539 info->output_semantic_index[i] == semantic_index) 567 const struct tgsi_shader_info *info = draw_get_shader_info(draw); local 570 count = info->num_outputs [all...] |
draw_pipe_aapoint.c | 70 * Subclass of pipe_shader_state to carry extra fragment shader info. 699 /* update vertex attrib info */ 711 const struct tgsi_shader_info *info = draw_get_shader_info(draw); local 714 for (i = 0; i < info->num_outputs; i++) { 715 if (info->output_semantic_name[i] == TGSI_SEMANTIC_PSIZE) {
|
draw_vs.h | 111 struct tgsi_shader_info info; member in struct:draw_vertex_shader
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_dump.c | 487 const struct tgsi_opcode_info *info = tgsi_get_opcode_info( inst->Instruction.Opcode ); local 494 ctx->indent -= info->pre_dedent; 497 ctx->indent += info->post_indent; 523 TXT( info->mnemonic );
|
tgsi_sanity.c | 314 const struct tgsi_opcode_info *info; local 324 info = tgsi_get_opcode_info( inst->Instruction.Opcode ); 325 if (info == NULL) { 330 if (info->num_dst != inst->Instruction.NumDstRegs) { 331 report_error( ctx, "%s: Invalid number of destination operands, should be %u", info->mnemonic, info->num_dst ); 333 if (info->num_src != inst->Instruction.NumSrcRegs) { 334 report_error( ctx, "%s: Invalid number of source operands, should be %u", info->mnemonic, info->num_src );
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_pstipple.c | 179 struct tgsi_shader_info info; member in struct:pstip_transform_context 424 /* Setup shader transformation info/context. 436 tgsi_scan_shader(fs->tokens, &transform.info); 439 for (i = 0; i < transform.info.num_properties; i++) { 440 if (transform.info.properties[i].name == TGSI_PROPERTY_FS_COORD_ORIGIN) 441 transform.coordOrigin = transform.info.properties[i].data[0];
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_setup_line.c | 61 struct lp_line_info *info, 66 info->a0[slot][i] = value; 67 info->dadx[slot][i] = 0.0f; 68 info->dady[slot][i] = 0.0f; 77 struct lp_line_info *info, 82 float a1 = info->v1[vert_attr][i]; 83 float a2 = info->v2[vert_attr][i]; 86 float dadx = da21 * info->dx * info->oneoverarea; 87 float dady = da21 * info->dy * info->oneoverarea 284 struct lp_line_info info; local [all...] |
lp_setup_point.c | 61 struct point_info *info, 66 info->a0[slot][i] = value; 67 info->dadx[slot][i] = 0.0f; 68 info->dady[slot][i] = 0.0f; 74 const struct point_info *info, 85 float w0 = info->v0[0][3]; 89 info->a0[slot][i] = info->v0[slot][i]*w0; 90 info->dadx[slot][i] = 0.0f; 91 info->dady[slot][i] = 0.0f 326 struct point_info info; local [all...] |
lp_state_fs.h | 113 struct lp_tgsi_info info; member in struct:lp_fragment_shader 125 /** Fragment shader input interpolation info */
|