/third_party/ffmpeg/tests/ref/fate/ |
D | movenc | 1 write_data len 36, time nopts, type header atom ftyp 2 write_data len 2429, time nopts, type header atom - 3 write_data len 788, time 1000000, type sync atom moof 4 write_data len 110, time nopts, type trailer atom - 6 write_data len 36, time nopts, type header atom ftyp 7 write_data len 2761, time nopts, type header atom - 8 write_data len 908, time 966667, type sync atom moof 9 write_data len 110, time nopts, type trailer atom - 11 write_data len 36, time nopts, type header atom ftyp 12 write_data len 2669, time nopts, type header atom - [all …]
|
/third_party/skia/tools/ |
D | random_parse_path.cpp | 32 static void add_white(SkRandom* rand, SkString* atom) { in add_white() argument 34 atom->append(" "); in add_white() 41 atom->append(&gWhiteSpace[index], 1); in add_white() 46 static void add_comma(SkRandom* rand, SkString* atom) { in add_comma() argument 48 atom->append(","); in add_comma() 51 size_t count = atom->size(); in add_comma() 52 add_white(rand, atom); in add_comma() 54 atom->append(","); in add_comma() 57 add_white(rand, atom); in add_comma() 58 } while (count == atom->size()); in add_comma() [all …]
|
/third_party/flutter/skia/tools/ |
D | random_parse_path.cpp | 32 static void add_white(SkRandom* rand, SkString* atom) { in add_white() argument 34 atom->append(" "); in add_white() 41 atom->append(&gWhiteSpace[index], 1); in add_white() 46 static void add_comma(SkRandom* rand, SkString* atom) { in add_comma() argument 48 atom->append(","); in add_comma() 51 size_t count = atom->size(); in add_comma() 52 add_white(rand, atom); in add_comma() 54 atom->append(","); in add_comma() 57 add_white(rand, atom); in add_comma() 58 } while (count == atom->size()); in add_comma() [all …]
|
/third_party/skia/fuzz/ |
D | FuzzParsePath.cpp | 38 static void add_white(Fuzz* fuzz, SkString* atom) { in add_white() argument 40 atom->append(" "); in add_white() 51 atom->append(&gWhiteSpace[index], 1); in add_white() 56 static void add_some_white(Fuzz* fuzz, SkString* atom) { in add_some_white() argument 58 add_white(fuzz, atom); in add_some_white() 62 static void add_comma(Fuzz* fuzz, SkString* atom) { in add_comma() argument 64 atom->append(","); in add_comma() 67 add_white(fuzz, atom); in add_comma() 71 atom->append(","); in add_comma() 73 add_some_white(fuzz, atom); in add_comma() [all …]
|
/third_party/flutter/skia/fuzz/ |
D | FuzzParsePath.cpp | 38 static void add_white(Fuzz* fuzz, SkString* atom) { in add_white() argument 40 atom->append(" "); in add_white() 51 atom->append(&gWhiteSpace[index], 1); in add_white() 56 static void add_some_white(Fuzz* fuzz, SkString* atom) { in add_some_white() argument 58 add_white(fuzz, atom); in add_some_white() 62 static void add_comma(Fuzz* fuzz, SkString* atom) { in add_comma() argument 64 atom->append(","); in add_comma() 67 add_white(fuzz, atom); in add_comma() 71 atom->append(","); in add_comma() 73 add_some_white(fuzz, atom); in add_comma() [all …]
|
/third_party/ffmpeg/tools/ |
D | qt-faststart.c | 125 typedef int (*parse_atoms_callback_t)(void *context, atom_t *atom); 135 atom_t atom; in parse_atoms() local 139 atom.size = BE_32(pos); in parse_atoms() 140 atom.type = BE_32(pos + 4); in parse_atoms() 142 atom.header_size = ATOM_PREAMBLE_SIZE; in parse_atoms() 144 switch (atom.size) { in parse_atoms() 151 atom.size = BE_64(pos); in parse_atoms() 153 atom.header_size = ATOM_PREAMBLE_SIZE + 8; in parse_atoms() 157 atom.size = ATOM_PREAMBLE_SIZE + end - pos; in parse_atoms() 161 if (atom.size < atom.header_size) { in parse_atoms() [all …]
|
/third_party/libxml2/ |
D | xmlregexp.c | 221 xmlRegAtomPtr atom; member 259 xmlRegAtomPtr atom; member 366 static void xmlRegFreeAtom(xmlRegAtomPtr atom); 368 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint); 609 if ((trans->to == -1) || (trans->atom == NULL)) in xmlRegEpxFromParse() 611 atomno = stringRemap[trans->atom->no]; in xmlRegEpxFromParse() 612 if ((trans->atom->data != NULL) && (transdata == NULL)) { in xmlRegEpxFromParse() 632 i, j, trans->atom->no, trans->to, atomno, targetno); in xmlRegEpxFromParse() 648 i, j, trans->atom->no, trans->to, atomno, targetno); in xmlRegEpxFromParse() 654 trans->atom->data; in xmlRegEpxFromParse() [all …]
|
/third_party/gettext/gnulib-local/lib/libxml/ |
D | xmlregexp.c | 244 xmlRegAtomPtr atom; member 282 xmlRegAtomPtr atom; member 387 static void xmlRegFreeAtom(xmlRegAtomPtr atom); 389 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint); 603 if ((trans->to == -1) || (trans->atom == NULL)) in xmlRegEpxFromParse() 605 atomno = stringRemap[trans->atom->no]; in xmlRegEpxFromParse() 606 if ((trans->atom->data != NULL) && (transdata == NULL)) { in xmlRegEpxFromParse() 629 i, j, trans->atom->no, trans->to, atomno, targetno); in xmlRegEpxFromParse() 645 i, j, trans->atom->no, trans->to, atomno, targetno); in xmlRegEpxFromParse() 651 trans->atom->data; in xmlRegEpxFromParse() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | r3d.c | 41 static int read_atom(AVFormatContext *s, Atom *atom) in read_atom() argument 43 atom->offset = avio_tell(s->pb); in read_atom() 44 atom->size = avio_rb32(s->pb); in read_atom() 45 if (atom->size < 8) in read_atom() 47 atom->tag = avio_rl32(s->pb); in read_atom() 49 atom->size, (char*)&atom->tag, atom->offset); in read_atom() 50 return atom->size; in read_atom() 116 static int r3d_read_rdvo(AVFormatContext *s, Atom *atom) in r3d_read_rdvo() argument 122 r3d->video_offsets_count = (atom->size - 8) / 4; in r3d_read_rdvo() 164 Atom atom; in r3d_read_header() local [all …]
|
/third_party/weston/xwayland/ |
D | window-manager.c | 272 get_atom_name(xcb_connection_t *c, xcb_atom_t atom) in get_atom_name() argument 279 if (atom == XCB_ATOM_NONE) in get_atom_name() 282 cookie = xcb_get_atom_name (c, atom); in get_atom_name() 290 snprintf(buffer, sizeof buffer, "(atom %u)", atom); in get_atom_name() 442 if (reply->type == wm->atom.incr) { in dump_property() 445 } else if (reply->type == wm->atom.utf8_string || in dump_property() 446 reply->type == wm->atom.string) { in dump_property() 510 xcb_atom_t atom; in weston_wm_window_read_properties() member 517 { wm->atom.wm_protocols, TYPE_WM_PROTOCOLS, NULL }, in weston_wm_window_read_properties() 518 { wm->atom.wm_normal_hints, TYPE_WM_NORMAL_HINTS, NULL }, in weston_wm_window_read_properties() [all …]
|
D | dnd.c | 70 client_message.type = wm->atom.xdnd_status; in data_source_accept() 77 client_message.data.data32[4] = wm->atom.xdnd_action_copy; in data_source_accept() 96 wm->atom.xdnd_selection, in data_source_send() 97 wm->atom.utf8_string, in data_source_send() 98 wm->atom.wl_selection, in data_source_send() 142 wm->atom.xdnd_type_list, in handle_enter() 160 if (types[i] == wm->atom.utf8_string || in handle_enter() 161 types[i] == wm->atom.text_plain_utf8 || in handle_enter() 162 types[i] == wm->atom.text_plain) { in handle_enter() 192 if (xfixes_selection_notify->selection != wm->atom.xdnd_selection) in weston_wm_handle_dnd_event() [all …]
|
D | selection.c | 83 wm->atom.wl_selection); in writable_callback() 120 wm->atom.wl_selection, in weston_wm_get_incr_chunk() 131 dump_property(fp, wm, wm->atom.wl_selection, reply); in weston_wm_get_incr_chunk() 170 wm->atom.clipboard, in data_source_send() 171 wm->atom.utf8_string, in data_source_send() 172 wm->atom.wl_selection, in data_source_send() 205 wm->atom.wl_selection, in weston_wm_get_selection_targets() 216 dump_property(fp, wm, wm->atom.wl_selection, reply); in weston_wm_get_selection_targets() 242 if (value[i] == wm->atom.utf8_string) { in weston_wm_get_selection_targets() 268 wm->atom.wl_selection, in weston_wm_get_selection_data() [all …]
|
/third_party/python/Tools/peg_generator/pegen/ |
D | metagrammar.gram | 95 | '&''&' ~ atom {Forced(atom)} 98 | '&' ~ atom {PositiveLookahead(atom)} 99 | '!' ~ atom {NegativeLookahead(atom)} 104 | atom '?' {Opt(atom)} 105 | atom '*' {Repeat0(atom)} 106 | atom '+' {Repeat1(atom)} 107 | sep=atom '.' node=atom '+' {Gather(sep, node)} 108 | atom {atom} 110 atom[Plain]:
|
/third_party/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_state_init.c | 223 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom) \ 227 return (FLAG) ? atom->cmd_size + (ADD) : 0; \ 231 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom) \ 234 …return (!rmesa->radeon.TclFallback && !_mesa_arb_vertex_program_enabled(ctx) && (FLAG)) ? atom->cm… 238 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom ) \ 241 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \ 245 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom ) \ 248 (void) atom; \ 249 …return (!rmesa->radeon.TclFallback && _mesa_arb_vertex_program_enabled(ctx) && (FLAG)) ? atom->cmd… 258 CHECK( texenv, (rmesa->state.envneeded & (1 << (atom->idx)) && !_mesa_ati_fragment_shader_enabled(c… [all …]
|
D | r200_ioctl.h | 105 struct radeon_state_atom *atom ) in R200_DB_STATECHANGE() argument 107 if (memcmp(atom->cmd, atom->lastcmd, atom->cmd_size*4)) { in R200_DB_STATECHANGE() 110 atom->dirty = GL_TRUE; in R200_DB_STATECHANGE() 112 tmp = atom->cmd; in R200_DB_STATECHANGE() 113 atom->cmd = atom->lastcmd; in R200_DB_STATECHANGE() 114 atom->lastcmd = tmp; in R200_DB_STATECHANGE()
|
/third_party/weston/tests/ |
D | xwayland-test.c | 66 Atom atom, type_atom, actual_type; in TEST() local 76 atom = XInternAtom(display, "WL_SURFACE_ID", True); in TEST() 77 assert(atom != None); in TEST() 79 atom = XInternAtom(display, "_NET_SUPPORTING_WM_CHECK", True); in TEST() 80 assert(atom != None); in TEST() 85 status = XGetWindowProperty(display, root, atom, 0L, ~0L, in TEST() 91 atom = XInternAtom(display, "_NET_WM_NAME", True); in TEST() 92 assert(atom != None); in TEST() 94 assert(atom != None); in TEST() 95 status = XGetWindowProperty(display, *support, atom, 0L, BUFSIZ, in TEST()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
D | r600_pipe.h | 132 struct r600_atom atom; member 137 struct r600_atom atom; member 151 struct r600_atom atom; member 165 struct r600_atom atom; member 177 struct r600_atom atom; member 185 struct r600_atom atom; member 193 struct r600_atom atom; member 198 struct r600_atom atom; member 203 struct r600_atom atom; member 210 struct r600_atom atom; member [all …]
|
D | r600_hw_context.c | 351 r600_mark_atom_dirty(ctx, &ctx->alphatest_state.atom); in r600_begin_new_cs() 352 r600_mark_atom_dirty(ctx, &ctx->blend_color.atom); in r600_begin_new_cs() 353 r600_mark_atom_dirty(ctx, &ctx->cb_misc_state.atom); in r600_begin_new_cs() 354 r600_mark_atom_dirty(ctx, &ctx->clip_misc_state.atom); in r600_begin_new_cs() 355 r600_mark_atom_dirty(ctx, &ctx->clip_state.atom); in r600_begin_new_cs() 356 r600_mark_atom_dirty(ctx, &ctx->db_misc_state.atom); in r600_begin_new_cs() 357 r600_mark_atom_dirty(ctx, &ctx->db_state.atom); in r600_begin_new_cs() 358 r600_mark_atom_dirty(ctx, &ctx->framebuffer.atom); in r600_begin_new_cs() 360 r600_mark_atom_dirty(ctx, &ctx->fragment_images.atom); in r600_begin_new_cs() 361 r600_mark_atom_dirty(ctx, &ctx->fragment_buffers.atom); in r600_begin_new_cs() [all …]
|
/third_party/pcre2/pcre2/testdata/ |
D | testinput9 | 20 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... 21 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom 34 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... 35 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom 48 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... 49 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom 61 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... 62 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom 71 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters... 72 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom [all …]
|
/third_party/glslang/glslang/MachineIndependent/preprocessor/ |
D | PpContext.h | 151 int atom = getAtom(s); in getAddAtom() local 152 if (atom == 0) { in getAddAtom() 153 atom = nextAtom++; in getAddAtom() 154 addAtomFixed(s, atom); in getAddAtom() 156 return atom; in getAddAtom() 160 const char* getString(int atom) const { return stringMap[atom]->c_str(); } in getString() argument 177 void addAtomFixed(const char* s, int atom) in addAtomFixed() argument 179 auto it = atomMap.insert(std::pair<TString, int>(s, atom)).first; in addAtomFixed() 180 if (stringMap.size() < (size_t)atom + 1) in addAtomFixed() 181 stringMap.resize(atom + 100, &badToken); in addAtomFixed() [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/src/bdf/ |
D | bdfdrivr.c | 227 prop->value.atom && in bdf_interpret_style() 228 ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' || in bdf_interpret_style() 229 *(prop->value.atom) == 'I' || *(prop->value.atom) == 'i' ) ) in bdf_interpret_style() 232 strings[2] = ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' ) in bdf_interpret_style() 239 prop->value.atom && in bdf_interpret_style() 240 ( *(prop->value.atom) == 'B' || *(prop->value.atom) == 'b' ) ) in bdf_interpret_style() 248 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style() 249 !( *(prop->value.atom) == 'N' || *(prop->value.atom) == 'n' ) ) in bdf_interpret_style() 250 strings[3] = (const char *)(prop->value.atom); in bdf_interpret_style() 254 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style() [all …]
|
/third_party/skia/third_party/externals/freetype/src/bdf/ |
D | bdfdrivr.c | 227 prop->value.atom && in bdf_interpret_style() 228 ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' || in bdf_interpret_style() 229 *(prop->value.atom) == 'I' || *(prop->value.atom) == 'i' ) ) in bdf_interpret_style() 232 strings[2] = ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' ) in bdf_interpret_style() 239 prop->value.atom && in bdf_interpret_style() 240 ( *(prop->value.atom) == 'B' || *(prop->value.atom) == 'b' ) ) in bdf_interpret_style() 248 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style() 249 !( *(prop->value.atom) == 'N' || *(prop->value.atom) == 'n' ) ) in bdf_interpret_style() 250 strings[3] = (const char *)(prop->value.atom); in bdf_interpret_style() 254 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style() [all …]
|
/third_party/freetype/src/bdf/ |
D | bdfdrivr.c | 227 prop->value.atom && in bdf_interpret_style() 228 ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' || in bdf_interpret_style() 229 *(prop->value.atom) == 'I' || *(prop->value.atom) == 'i' ) ) in bdf_interpret_style() 232 strings[2] = ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' ) in bdf_interpret_style() 239 prop->value.atom && in bdf_interpret_style() 240 ( *(prop->value.atom) == 'B' || *(prop->value.atom) == 'b' ) ) in bdf_interpret_style() 248 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style() 249 !( *(prop->value.atom) == 'N' || *(prop->value.atom) == 'n' ) ) in bdf_interpret_style() 250 strings[3] = (const char *)(prop->value.atom); in bdf_interpret_style() 254 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style() [all …]
|
/third_party/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_ioctl.h | 113 struct radeon_state_atom *atom ) in RADEON_DB_STATECHANGE() argument 115 if (memcmp(atom->cmd, atom->lastcmd, atom->cmd_size*4)) { in RADEON_DB_STATECHANGE() 118 atom->dirty = GL_TRUE; in RADEON_DB_STATECHANGE() 120 tmp = atom->cmd; in RADEON_DB_STATECHANGE() 121 atom->cmd = atom->lastcmd; in RADEON_DB_STATECHANGE() 122 atom->lastcmd = tmp; in RADEON_DB_STATECHANGE()
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | compile-i386.c | 74 struct atom; 76 DECLARE_PTR_LIST(str_list, struct atom); 77 DECLARE_PTR_LIST(atom_list, struct atom); 162 struct atom { struct 468 static struct atom *new_atom(enum atom_type type) in new_atom() 470 struct atom *atom; in new_atom() local 472 atom = calloc(1, sizeof(*atom)); /* TODO: chunked alloc */ in new_atom() 473 if (!atom) in new_atom() 476 atom->type = type; in new_atom() 478 return atom; in new_atom() [all …]
|