Searched defs:atom (Results 1 - 25 of 59) sorted by relevance

123

/external/clang/test/CXX/special/class.conv/class.conv.ctor/
H A Dp1.cpp17 struct atom { }; struct in namespace:PR13003
19 void_type v1 = atom();
20 void_type2 v2 = atom();
/external/freetype/include/freetype/
H A Dftbdf.h66 * Property is a string atom.
108 * u.atom ::
109 * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM. May be
122 const char* atom; member in union:BDF_PropertyRec_::__anon6626
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_flush.c39 struct r300_atom *atom; local
51 foreach_atom(r300, atom) {
52 if (atom->state || atom->allow_null_state) {
53 r300_mark_atom_dirty(r300, atom);
/external/pdfium/third_party/freetype/include/freetype/
H A Dftbdf.h66 * Property is a string atom.
108 * u.atom ::
109 * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM. May be
122 const char* atom; member in union:BDF_PropertyRec_::__anon15801
/external/regex-re2/re2/testing/
H A Dsearch_test.cc315 vector<string> atom, alpha, ops; local
316 atom.push_back(StringPiece(t.regexp).as_string());
318 ExhaustiveTest(1, 0, atom, ops, 1, alpha, "", "");
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLookaheadSet.java51 public LookaheadSet(int atom) { argument
52 tokenTypeSet = IntervalSet.of(atom);
H A DLabel.java83 /** Anything at this value or larger can be considered a simple atom int
114 /** The wildcard '.' char atom implies all valid characters==UNICODE */
209 /** return the single atom label or INVALID if not a single atom */
234 public boolean matches(int atom) { argument
235 if ( label==atom ) {
236 return true; // handle the single atom case efficiently
239 return labelSet.member(atom);
275 // TODO: do we care about comparing set {A} with atom A? Doesn't now.
/external/skia/tools/
H A Drandom_parse_path.cpp32 static void add_white(SkRandom* rand, SkString* atom) { argument
34 atom->append(" ");
41 atom->append(&gWhiteSpace[index], 1);
46 static void add_comma(SkRandom* rand, SkString* atom) { argument
48 atom->append(",");
51 size_t count = atom->size();
52 add_white(rand, atom);
54 atom->append(",");
57 add_white(rand, atom);
58 } while (count == atom
61 add_some_white(SkRandom* rand, SkString* atom) argument
69 SkString atom; local
[all...]
/external/mesa3d/src/glsl/
H A Ds_expression.cpp66 return NULL; // no atom
74 // Check if the atom is a number.
101 s_expression *atom = read_atom(ctx, src, symbol_buffer); local
102 if (atom != NULL)
103 return atom;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_queryobj.c194 int radeon_check_query_active(struct gl_context *ctx, struct radeon_state_atom *atom) argument
201 return atom->cmd_size;
204 void radeon_emit_queryobj(struct gl_context *ctx, struct radeon_state_atom *atom) argument
210 dwords = (*atom->check) (ctx, atom);
213 OUT_BATCH_TABLE(atom->cmd, dwords);
H A Dr200_state_init.c222 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom) \
226 return (FLAG) ? atom->cmd_size + (ADD) : 0; \
230 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom) \
233 return (!rmesa->radeon.TclFallback && !ctx->VertexProgram._Enabled && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
237 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom ) \
240 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
244 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom ) \
247 (void) atom; \
248 return (!rmesa->radeon.TclFallback && ctx->VertexProgram._Enabled && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
257 CHECK( texenv, (rmesa->state.envneeded & (1 << (atom
324 check_rrb(struct gl_context *ctx, struct radeon_state_atom *atom) argument
334 check_polygon_stipple(struct gl_context *ctx, struct radeon_state_atom *atom) argument
343 mtl_emit(struct gl_context *ctx, struct radeon_state_atom *atom) argument
355 lit_emit(struct gl_context *ctx, struct radeon_state_atom *atom) argument
367 ptp_emit(struct gl_context *ctx, struct radeon_state_atom *atom) argument
379 veclinear_emit(struct gl_context *ctx, struct radeon_state_atom *atom) argument
388 scl_emit(struct gl_context *ctx, struct radeon_state_atom *atom) argument
400 vec_emit(struct gl_context *ctx, struct radeon_state_atom *atom) argument
411 check_always_ctx( struct gl_context *ctx, struct radeon_state_atom *atom) argument
436 ctx_emit_cs(struct gl_context *ctx, struct radeon_state_atom *atom) argument
523 get_tex_mm_size(struct gl_context* ctx, struct radeon_state_atom *atom) argument
542 check_tex_pair_mm(struct gl_context* ctx, struct radeon_state_atom *atom) argument
552 check_tex_mm(struct gl_context* ctx, struct radeon_state_atom *atom) argument
562 tex_emit_mm(struct gl_context *ctx, struct radeon_state_atom *atom) argument
591 cube_emit_cs(struct gl_context *ctx, struct radeon_state_atom *atom) argument
[all...]
H A Dradeon_common_context.c202 struct radeon_state_atom *atom; local
204 foreach(atom, &radeon->hw.atomlist) {
205 FREE(atom->cmd);
206 if (atom->lastcmd)
207 FREE(atom->lastcmd);
247 /* free atom list */
H A Dradeon_common.c472 struct radeon_state_atom *atom; local
479 foreach(atom, &radeon->hw.atomlist) {
480 if (atom->dirty) {
481 const GLuint atom_size = atom->check(radeon->glCtx, atom);
484 radeon_print_state_atom(radeon, atom);
489 foreach(atom, &radeon->hw.atomlist) {
490 const GLuint atom_size = atom->check(radeon->glCtx, atom);
493 radeon_print_state_atom(radeon, atom);
503 radeon_emit_atom(radeonContextPtr radeon, struct radeon_state_atom *atom) argument
530 struct radeon_state_atom *atom; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_queryobj.c194 int radeon_check_query_active(struct gl_context *ctx, struct radeon_state_atom *atom) argument
201 return atom->cmd_size;
204 void radeon_emit_queryobj(struct gl_context *ctx, struct radeon_state_atom *atom) argument
210 dwords = (*atom->check) (ctx, atom);
213 OUT_BATCH_TABLE(atom->cmd, dwords);
H A Dradeon_common_context.c202 struct radeon_state_atom *atom; local
204 foreach(atom, &radeon->hw.atomlist) {
205 FREE(atom->cmd);
206 if (atom->lastcmd)
207 FREE(atom->lastcmd);
247 /* free atom list */
H A Dradeon_state_init.c189 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom ) \
191 return FLAG ? atom->cmd_size + (ADD) : 0; \
195 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom ) \
198 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
260 static void scl_emit(struct gl_context *ctx, struct radeon_state_atom *atom) argument
264 uint32_t dwords = atom->check(ctx, atom);
267 OUT_SCL(atom->cmd[0], atom->cmd+1);
272 static void vec_emit(struct gl_context *ctx, struct radeon_state_atom *atom) argument
284 lit_emit(struct gl_context *ctx, struct radeon_state_atom *atom) argument
296 check_always_ctx( struct gl_context *ctx, struct radeon_state_atom *atom) argument
318 ctx_emit_cs(struct gl_context *ctx, struct radeon_state_atom *atom) argument
415 cube_emit_cs(struct gl_context *ctx, struct radeon_state_atom *atom) argument
451 tex_emit_cs(struct gl_context *ctx, struct radeon_state_atom *atom) argument
[all...]
H A Dradeon_common.c472 struct radeon_state_atom *atom; local
479 foreach(atom, &radeon->hw.atomlist) {
480 if (atom->dirty) {
481 const GLuint atom_size = atom->check(radeon->glCtx, atom);
484 radeon_print_state_atom(radeon, atom);
489 foreach(atom, &radeon->hw.atomlist) {
490 const GLuint atom_size = atom->check(radeon->glCtx, atom);
493 radeon_print_state_atom(radeon, atom);
503 radeon_emit_atom(radeonContextPtr radeon, struct radeon_state_atom *atom) argument
530 struct radeon_state_atom *atom; local
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom.c191 const struct st_tracked_state *atom = atoms[i]; local
194 /*printf("atom %s %x/%x\n", atom->name, atom->dirty.mesa, atom->dirty.st);*/
196 if (!(atom->dirty.mesa || atom->dirty.st) ||
197 !atom->update) {
198 printf("malformed atom %s\n", atom
[all...]
/external/regex-re2/re2/
H A Dprefilter.h26 ATOM, // The string atom() must match
35 const string& atom() const { return atom_; } function in class:re2::Prefilter
90 // If different prefilters have the same string atom, or if they are
91 // structurally the same (e.g., OR of same atom strings) they are
/external/skia/fuzz/
H A DFuzzParsePath.cpp37 static void add_white(Fuzz* fuzz, SkString* atom) { argument
39 atom->append(" ");
50 atom->append(&gWhiteSpace[index], 1);
55 static void add_some_white(Fuzz* fuzz, SkString* atom) { argument
57 add_white(fuzz, atom);
61 static void add_comma(Fuzz* fuzz, SkString* atom) { argument
63 atom->append(",");
66 add_white(fuzz, atom);
70 atom->append(",");
72 add_some_white(fuzz, atom);
76 SkString atom; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_upload.c40 * list directly except for a single atom, brw_constant_buffer, which
477 const struct brw_tracked_state *atom = brw->atoms[i]; local
480 if (check_state(state, &atom->dirty)) {
481 atom->emit(brw);
484 accumulate_state(&examined, &atom->dirty);
497 const struct brw_tracked_state *atom = brw->atoms[i]; local
499 if (check_state(state, &atom->dirty)) {
500 atom->emit(brw);
/external/vulkan-validation-layers/demos/smoke/
H A DShellXcb.cpp72 xcb_atom_t atom = XCB_ATOM_NONE; local
75 atom = reply->atom;
79 return atom;
/external/elfutils/include/elfutils/
H A Dlibdw.h167 uint8_t atom; /* Operation */ member in struct:__anon6021
/external/elfutils/libdw/
H A Ddwarf_getlocation.c77 uint8_t atom; member in struct:loclist
172 result->atom = DW_OP_plus_uconst;
226 assert ((*llbuf)[*listlen - 1].atom == DW_OP_stack_value);
258 newloc->atom = DW_OP_call_frame_cfa;
274 switch ((newloc->atom = *data++))
521 newloc->atom = DW_OP_stack_value;
550 result[n].atom = loclist->atom;
555 if (result[n].atom == DW_OP_implicit_value)
H A Dlibdw.h167 uint8_t atom; /* Operation */ member in struct:__anon6074

Completed in 490 milliseconds

123