HomeSort by relevance Sort by last modified time
    Searched refs:textp (Results 1 - 25 of 34) sorted by null

1 2

  /external/elfutils/libasm/
asm_abort.c 48 if (likely (! ctx->textp))
asm_begin.c 130 asm_begin (const char *fname, Ebl *ebl, bool textp)
132 if (fname == NULL && ! textp)
174 result->textp = textp;
175 if (textp)
asm_adduleb128.c 52 if (unlikely (asmscn->ctx->textp))
asm_addsleb128.c 52 if (unlikely (asmscn->ctx->textp))
asm_addstrz.c 74 if (unlikely (asmscn->ctx->textp))
asm_newcomsym.c 92 if (unlikely (ctx->textp))
asm_newscn_ingrp.c 64 if (likely (! ctx->textp))
asm_newscngrp.c 73 if (unlikely (ctx->textp))
asm_addint8.c 65 if (unlikely (asmscn->ctx->textp))
asm_newabssym.c 91 if (unlikely (ctx->textp))
asm_newsym.c 89 if (unlikely (asmscn->ctx->textp))
asm_align.c 56 if (unlikely (asmscn->ctx->textp))
libasm.h 70 TEXTP is true the output is an assembler format text file.
75 extern AsmCtx_t *asm_begin (const char *fname, Ebl *ebl, bool textp);
libasmP.h 144 bool textp; member in struct:AsmCtx
asm_newscn.c 195 result = (unlikely (ctx->textp)
asm_end.c 509 result = unlikely (ctx->textp) ? text_end (ctx) : binary_end (ctx);
590 if (unlikely (ctx->textp))
  /external/syslinux/com32/lib/libpng/
pngset.c 708 png_textp textp = &(info_ptr->text[info_ptr->num_text]); local
747 textp->compression = PNG_ITXT_COMPRESSION_NONE;
750 textp->compression = PNG_TEXT_COMPRESSION_NONE;
756 textp->compression = text_ptr[i].compression;
759 textp->key = (png_charp)png_malloc_warn(png_ptr,
762 if (textp->key == NULL)
767 (int)textp->key);
769 png_memcpy(textp->key, text_ptr[i].key,(png_size_t)(key_len));
770 *(textp->key + key_len) = '\0';
774 textp->lang = textp->key + key_len + 1
    [all...]
  /external/libpng/
pngset.c 777 png_textp textp = &(info_ptr->text[info_ptr->num_text]); local
828 textp->compression = PNG_ITXT_COMPRESSION_NONE;
832 textp->compression = PNG_TEXT_COMPRESSION_NONE;
838 textp->compression = text_ptr[i].compression;
841 textp->key = png_voidcast(png_charp,png_malloc_base(png_ptr,
844 if (textp->key == NULL)
855 textp->key);
857 memcpy(textp->key, text_ptr[i].key, key_len);
858 *(textp->key + key_len) = '\0';
862 textp->lang = textp->key + key_len + 1
    [all...]
  /external/pdfium/third_party/libpng16/
pngset.c 789 png_textp textp = &(info_ptr->text[info_ptr->num_text]); local
840 textp->compression = PNG_ITXT_COMPRESSION_NONE;
844 textp->compression = PNG_TEXT_COMPRESSION_NONE;
850 textp->compression = text_ptr[i].compression;
853 textp->key = png_voidcast(png_charp,png_malloc_base(png_ptr,
856 if (textp->key == NULL)
867 textp->key);
869 memcpy(textp->key, text_ptr[i].key, key_len);
870 *(textp->key + key_len) = '\0';
874 textp->lang = textp->key + key_len + 1
    [all...]
  /external/skia/third_party/libpng/
pngset.c 777 png_textp textp = &(info_ptr->text[info_ptr->num_text]); local
828 textp->compression = PNG_ITXT_COMPRESSION_NONE;
832 textp->compression = PNG_TEXT_COMPRESSION_NONE;
838 textp->compression = text_ptr[i].compression;
841 textp->key = png_voidcast(png_charp,png_malloc_base(png_ptr,
844 if (textp->key == NULL)
855 textp->key);
857 memcpy(textp->key, text_ptr[i].key, key_len);
858 *(textp->key + key_len) = '\0';
862 textp->lang = textp->key + key_len + 1
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
deadcode.go 46 // Any unreached text symbols are removed from ctxt.Textp.
121 textp := make([]*Symbol, 0, len(ctxt.Textp))
122 for _, s := range ctxt.Textp {
124 textp = append(textp, s)
127 ctxt.Textp = textp
ldpe.go 359 // Sort outer lists by address, adding to textp.
360 // This keeps textp in increasing address order.
374 ctxt.Textp = append(ctxt.Textp, s)
380 ctxt.Textp = append(ctxt.Textp, s)
objfile.go 412 r.lib.textp = append(r.lib.textp, s)
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
deadcode.go 46 // Any unreached text symbols are removed from ctxt.Textp.
121 textp := make([]*Symbol, 0, len(ctxt.Textp))
122 for _, s := range ctxt.Textp {
124 textp = append(textp, s)
127 ctxt.Textp = textp
ldpe.go 359 // Sort outer lists by address, adding to textp.
360 // This keeps textp in increasing address order.
374 ctxt.Textp = append(ctxt.Textp, s)
380 ctxt.Textp = append(ctxt.Textp, s)

Completed in 712 milliseconds

1 2