HomeSort by relevance Sort by last modified time
    Searched refs:rec (Results 26 - 50 of 198) sorted by null

12 3 4 5 6 7 8

  /system/extras/tests/bionic/libc/glibc/assert/
test-assert.c 14 jmp_buf rec; variable
20 longjmp (rec, 1); /* recover control */
59 if (!setjmp (rec))
64 if (!setjmp (rec))
69 if (!setjmp (rec))
  /external/skia/include/core/
SkTDStack.h 33 Rec* rec = fRec; local
34 while (rec != &fInitialRec)
36 Rec* next = rec->fNext;
37 sk_free(rec);
38 rec = next;
51 Rec* rec = (Rec*)sk_malloc_throw(sizeof(Rec)) local
94 Rec* rec = fRec->fNext; local
    [all...]
  /external/icu4c/layout/
LEInsertionList.cpp 87 for (InsertionRecord *rec = head; rec != NULL; rec = rec->next) {
88 if (callback->applyInsertion(rec->position, rec->count, rec->glyphs)) {
  /external/skia/src/effects/
SkLayerRasterizer.cpp 41 SkLayerRasterizer_Rec* rec; local
43 while ((rec = (SkLayerRasterizer_Rec*)iter.next()) != NULL)
44 rec->fPaint.~SkPaint();
49 SkLayerRasterizer_Rec* rec = (SkLayerRasterizer_Rec*)fLayers.push_back(); local
51 new (&rec->fPaint) SkPaint(paint);
52 rec->fOffset.set(dx, dy);
59 SkLayerRasterizer_Rec* rec; local
63 while ((rec = (SkLayerRasterizer_Rec*)iter.next()) != NULL)
65 const SkPaint& paint = rec->fPaint;
80 m.preTranslate(rec->fOffset.fX, rec->fOffset.fY)
143 SkLayerRasterizer_Rec* rec; local
203 SkLayerRasterizer_Rec* rec = (SkLayerRasterizer_Rec*)fLayers.push_back(); local
223 const SkLayerRasterizer_Rec* rec; local
    [all...]
  /external/srec/srec/crec/
astar_pphash.h 43 srec* rec; member in struct:__anon7572
47 void hash_init(FixedSizeHash* hash, srec* rec);
50 int compare_parp(partial_path* parp1, partial_path* parp2, srec* rec);
astar_pphash.c 40 hash->rec = rec_debug;
46 int compare_parp(partial_path* parp1, partial_path* parp2, srec* rec)
105 if (compare_parp(p_return, parp, hash->rec) == 0)
128 print_path(parp, hash->rec, "problem in astar_pphash hash_set ");
132 else if (compare_parp(*p_insert, parp, hash->rec) == 0)
135 print_path(*p_insert, hash->rec, "key taken in astar_pphash hash_set ");
143 print_path(parp, hash->rec, "");
160 if (compare_parp(*p_insert, parp, hash->rec) == 0)
165 print_path(parp, hash->rec, "deleted ");
srec_stats.c 80 void srec_stats_update(srec* rec, char* msg)
95 st_index = rec->active_fsmarc_tokens;
98 stoken = &rec->fsmarc_token_array[st_index];
105 ft_index = rec->active_fsmnode_tokens;
108 ftoken = &rec->fsmnode_token_array[ft_index];
115 for (i = 0, num = 0; i < rec->current_search_frame; i++)
117 wt_index = rec->word_lattice->words_for_frame[i];
120 wtoken = &rec->word_token_array[wt_index];
128 for (num = 0, awtoken = rec->altword_token_freelist; awtoken; awtoken = awtoken->next_token)
130 num = rec->altword_token_array_size - num
    [all...]
c47mulsp.c 43 if (recm->rec[0].num_model_slots_allocated < model->num_hmmstates)
46 recm->rec[0].num_model_slots_allocated,
72 srec_begin(&recm->rec[i], begin_syn_node);
87 srec_no_more_frames(&recm->rec[i]);
88 /* srec_get_result(rec); */
109 recm->rec[i].context = context;
123 recm->rec[i].context = NULL;
astar.c 52 int astar_draw_tree_as_dotty(const char* file, srec* rec, AstarStack* stack);
243 void print_partial_paths(partial_path** parps, int num_parps, srec* rec, const char* msg);
244 void print_path(partial_path* path, srec* rec, char* msg);
486 wtokenID token_index, srec* rec,
496 wtoken = &rec->word_token_array[token_index];
499 parp->word = rec->word_token_array[ token_index].word;
502 /* wtoken->end_time should be equal to rec->current_search_frame */
503 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0);
504 parp->costsofar = rec->accumulated_cost_offset[ wtoken->end_time];
506 /* BKWD: rec->word_token_array[ wtoken->backtrace].cost + acc[] *
    [all...]
  /external/srec/srec/include/
srec_results.h 31 int srec_has_results(multi_srec* rec);
32 int srec_clear_results(multi_srec* rec);
33 int srec_get_bestcost_recog_id(multi_srec* rec, int* id);
36 void* srec_nbest_prepare_list(multi_srec* rec, int n, asr_int32_t* bestcost);
astar.h 114 int astar_stack_do_backwards_search(psrec rec, int request_nbest_len);
115 int astar_stack_prepare(AstarStack* stack, int request_nbest_len, psrec rec);
116 int astar_stack_prepare_from_active_search(AstarStack* stack, int request_nbest_len, psrec rec);
118 int astar_stack_flag_word_tokens_used(AstarStack* stack, psrec rec);
119 AstarStack* astar_stack_make(psrec rec, int max_nbest_len);
120 int astar_stack_destroy(psrec rec);
123 void print_path(partial_path* parp, psrec rec, char* msg);
srec_eosd.h 61 EOSrc srec_check_end_of_speech(srec_eos_detector_parms* eosd_parms, srec* rec);
62 EOSrc srec_check_end_of_speech_end(srec* rec);
  /frameworks/base/libs/ui/
GraphicBufferAllocator.cpp 65 const alloc_rec_t& rec(list.valueAt(i));
67 list.keyAt(i), rec.size/1024.0f,
68 rec.w, rec.s, rec.h, rec.format, rec.usage);
70 total += rec.size;
99 alloc_rec_t rec; local
100 rec.w = w
    [all...]
  /external/ppp/pppd/
tdb.c 444 static int rec_read(TDB_CONTEXT *tdb, tdb_off offset, struct list_struct *rec)
446 if (tdb_read(tdb, offset, rec, sizeof(*rec),DOCONV()) == -1)
448 if (TDB_BAD_MAGIC(rec)) {
451 TDB_LOG((tdb, 0,"rec_read bad magic 0x%x at offset=%d\n", rec->magic, offset));
454 return tdb_oob(tdb, rec->next+sizeof(*rec), 0);
456 static int rec_write(TDB_CONTEXT *tdb, tdb_off offset, struct list_struct *rec)
458 struct list_struct r = *rec;
463 static int rec_free_read(TDB_CONTEXT *tdb, tdb_off off, struct list_struct *rec)
504 struct list_struct rec; local
565 struct list_struct rec; local
771 struct list_struct rec; local
1045 struct list_struct rec; local
1081 struct list_struct rec; local
1108 struct list_struct rec; local
1268 struct list_struct rec; local
1328 struct list_struct rec; local
1350 struct list_struct rec; local
1405 struct list_struct rec; local
1429 struct list_struct rec; local
1513 struct list_struct rec; local
1544 struct list_struct rec; local
    [all...]
multilink.c 113 TDB_DATA key, pid, rec; local
202 rec = tdb_fetch(pppdb, pid);
203 if (rec.dptr != NULL && rec.dsize > 0) {
205 rec.dptr[rec.dsize-1] = 0;
207 parse_num(rec.dptr, "IFNAME=ppp", &unit);
209 if (!parse_num(rec.dptr, "PPPD_PID=", &pppd_pid)
213 free(rec.dptr);
287 TDB_DATA key, rec; local
327 TDB_DATA key, rec; local
357 TDB_DATA key, rec, pp; local
    [all...]
  /external/skia/src/core/
SkGlyphCache.cpp 122 const CharGlyphRec& rec = fCharToGlyphHash[ID2HashIndex(id)]; local
124 if (rec.fID == id) {
125 return rec.fGlyph->getGlyphID();
140 CharGlyphRec* rec = &fCharToGlyphHash[ID2HashIndex(id)]; local
142 if (rec->fID != id) {
144 rec->fID = id;
147 rec->fGlyph = this->lookupMetrics(id, kJustAdvance_MetricsType);
149 return *rec->fGlyph;
170 CharGlyphRec* rec = &fCharToGlyphHash[ID2HashIndex(id)]; local
172 if (rec->fID != id)
193 CharGlyphRec* rec = &fCharToGlyphHash[ID2HashIndex(id)]; local
336 const AuxProcRec* rec = fAuxProcList; local
354 AuxProcRec* rec = fAuxProcList; local
371 AuxProcRec* rec = fAuxProcList; local
390 AuxProcRec* rec = fAuxProcList; local
444 SkGlyphCache_Globals* rec = SkNEW(SkGlyphCache_Globals); local
    [all...]
  /external/bluetooth/bluez/src/
sdpd-service.c 106 sdp_record_t *rec = (sdp_record_t *) list->data; local
108 if (rec->svclass.type != SDP_UUID16)
111 switch (rec->svclass.value.uuid16) {
225 sdp_record_t *rec = (sdp_record_t *) list->data; local
227 if (rec->svclass.type != SDP_UUID16)
230 if (rec->svclass.value.uuid16 < 0x1100)
233 if (rec->svclass.value.uuid16 == PNP_INFO_SVCLASS_ID)
242 if (uuid[i] == rec->svclass.value.uuid16)
248 uuid[index++] = rec->svclass.value.uuid16;
404 int add_record_to_server(const bdaddr_t *src, sdp_record_t *rec)
449 sdp_record_t *rec; local
475 sdp_record_t *rec = NULL; local
578 sdp_record_t *rec; local
689 sdp_record_t *rec; local
    [all...]
sdpd.h 76 void sdp_svcdb_set_collectable(sdp_record_t *rec, int sock);
77 void sdp_svcdb_collect(sdp_record_t *rec);
79 void sdp_record_add(const bdaddr_t *device, sdp_record_t *rec);
94 int add_record_to_server(const bdaddr_t *src, sdp_record_t *rec);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
dct.h 60 void idct_rowInter(Short *srce, UChar *rec, Int lx);
61 void idct_row0Inter(Short *blk, UChar *rec, Int lx);
62 void idct_row1Inter(Short *blk, UChar *rec, Int lx);
63 void idct_row2Inter(Short *blk, UChar *rec, Int lx);
64 void idct_row3Inter(Short *blk, UChar *rec, Int lx);
65 void idct_row4Inter(Short *blk, UChar *rec, Int lx);
66 void idct_row0x40Inter(Short *blk, UChar *rec, Int lx);
67 void idct_row0x20Inter(Short *blk, UChar *rec, Int lx);
68 void idct_row0x10Inter(Short *blk, UChar *rec, Int lx);
69 void idct_row0xCCInter(Short *blk, UChar *rec, Int lx)
    [all...]
fastidct.cpp 47 tmp = *rec + tmp; \
49 *rec++ = tmp; \
54 *rec++ = tmp; \
313 void idct_row0Inter(Short *srce, UChar *rec, Int lx)
317 OSCL_UNUSED_ARG(rec);
324 void idct_row1Inter(Short *blk, UChar *rec, Int lx)
332 rec -= lx;
340 pred_word = *((uint32*)(rec += lx)); /* read 4 bytes from pred */
352 *((uint32*)rec) = dst_word; /* save 4 bytes to dst */
354 pred_word = *((uint32*)(rec + 4)); /* read 4 bytes from pred *
    [all...]
  /dalvik/vm/hprof/
Hprof.h 194 int hprofFlushRecord(hprof_record_t *rec, FILE *fp);
198 int hprofAddU1ToRecord(hprof_record_t *rec, u1 value);
199 int hprofAddU1ListToRecord(hprof_record_t *rec,
202 int hprofAddUtf8StringToRecord(hprof_record_t *rec, const char *str);
204 int hprofAddU2ToRecord(hprof_record_t *rec, u2 value);
205 int hprofAddU2ListToRecord(hprof_record_t *rec,
208 int hprofAddU4ToRecord(hprof_record_t *rec, u4 value);
209 int hprofAddU4ListToRecord(hprof_record_t *rec,
212 int hprofAddU8ToRecord(hprof_record_t *rec, u8 value);
213 int hprofAddU8ListToRecord(hprof_record_t *rec,
    [all...]
  /build/tools/atree/
files.cpp 99 FileRecord rec; local
100 rec.listFile = listFile;
101 rec.listLine = listLine;
102 rec.sourceName = sourceName;
103 rec.outName = outName;
104 files->push_back(rec);
294 locate(FileRecord* rec, const vector<string>& search)
300 string full = path_append(*it, rec->sourceName);
304 rec->sourceBase = *it;
305 rec->sourcePath = full
    [all...]
files.h 33 int locate(FileRecord* rec, const vector<string>& search);
34 void stat_out(const string& base, FileRecord* rec);
36 int list_dir(const FileRecord& rec, const vector<string>& excludes,
  /external/bluetooth/bluez/cups/
sdp.c 63 sdp_record_t *rec = (sdp_record_t *) rsp->data; local
66 if (!sdp_get_access_protos(rec, &protos)) {
73 if (!sdp_get_add_access_protos(rec, &protos)) {
106 sdp_record_t *rec = (sdp_record_t *) rsp->data; local
109 if (!sdp_get_access_protos(rec, &protos)) {
  /external/e2fsprogs/lib/ext2fs/
tdb.c 269 static int tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
270 static tdb_off_t tdb_allocate(struct tdb_context *tdb, tdb_len_t length, struct list_struct *rec);
275 static int tdb_rec_read(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
276 static int tdb_rec_write(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
277 static int tdb_do_delete(struct tdb_context *tdb, tdb_off_t rec_ptr, struct list_struct *rec);
285 struct list_struct *rec);
289 struct list_struct *rec);
1054 struct list_struct rec; local
1106 memset(&rec,'\0',sizeof(rec));
1796 struct list_struct rec; local
1879 struct list_struct *rec; local
2139 struct list_struct rec; local
2582 struct list_struct rec; local
2757 struct list_struct rec; local
2867 struct list_struct rec; local
2893 struct list_struct rec; local
2953 struct list_struct rec; local
3018 struct list_struct rec; local
3154 struct list_struct rec; local
3189 struct list_struct rec; local
3227 struct list_struct rec; local
3254 struct list_struct rec; local
3307 struct list_struct rec; local
3331 struct list_struct rec; local
3367 struct list_struct rec; local
3458 struct list_struct rec; local
    [all...]

Completed in 158 milliseconds

12 3 4 5 6 7 8