Home
last modified time | relevance | path

Searched refs:error (Results 1276 - 1300 of 8620) sorted by relevance

1...<<51525354555657585960>>...345

/third_party/libsnd/src/
H A Dmat5.c87 { int subformat, error = 0 ; in mat5_open() local
90 { if ((error = mat5_read_header (psf))) in mat5_open()
91 return error ; in mat5_open()
109 if ((error = mat5_write_header (psf, SF_FALSE))) in mat5_open()
110 return error ; in mat5_open()
123 error = pcm_init (psf) ; in mat5_open()
127 error = float32_init (psf) ; in mat5_open()
131 error = double64_init (psf) ; in mat5_open()
137 return error ; in mat5_open()
248 if (psf->error) in mat5_write_header()
[all...]
H A Dvoc.c105 { int subformat, error = 0 ; in voc_open() local
111 { if ((error = voc_read_header (psf))) in voc_open()
112 return error ; in voc_open()
123 if ((error = voc_write_header (psf, SF_FALSE))) in voc_open()
124 return error ; in voc_open()
136 error = pcm_init (psf) ; in voc_open()
140 error = alaw_init (psf) ; in voc_open()
144 error = ulaw_init (psf) ; in voc_open()
150 return error ; in voc_open()
518 if (psf->error) in voc_write_header()
[all...]
H A Dflac.c183 "Nothing to do but to error out.\n" , in flac_buffer_copy()
185 psf->error = SFE_FLAC_CHANNEL_COUNT_CHANGED ; in flac_buffer_copy()
196 psf->error = SFE_INTERNAL ; in flac_buffer_copy()
348 if (*bytes > 0 && psf->error == 0)
359 if (psf->error)
370 if (psf->error)
455 "Nothing to do but to error out.\n" ,
457 psf->error = SFE_FLAC_CHANNEL_COUNT_CHANGED ;
546 psf->error = SFE_FLAC_LOST_SYNC ;
549 psf->error
690 int error = 0 ; flac_open() local
[all...]
/third_party/libsnd/programs/
H A Dsndfile-info.c69 { int error = 0 ; in main() local
72 error += instrument_dump (argv [k]) ; in main()
73 return error ; in main()
77 { int error = 0 ; in main() local
80 error += broadcast_dump (argv [k]) ; in main()
81 return error ; in main()
85 { int error = 0 ; in main() local
88 error += chanmap_dump (argv [k]) ; in main()
89 return error ; in main()
93 { int error in main() local
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dcsrmbcs.cpp118 charValue(0), index(-1), nextIndex(0), error(false), done(false) in IteratedChar()
128 error = false;
159 if (iter.error) { in match_mbcs()
243 it->error = false; in nextChar()
259 // else we'll handle the error later. in nextChar()
263 it->error = true; in nextChar()
296 it->error = false; in nextChar()
313 // else we'll handle the error later. in nextChar()
318 it->error = true; in nextChar()
332 it->error in nextChar()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_constants.cpp432 if (auto error = ValidateConstantBool(_, inst)) return error; in ConstantPass()
436 if (auto error = ValidateConstantComposite(_, inst)) return error; in ConstantPass()
439 if (auto error = ValidateConstantSampler(_, inst)) return error; in ConstantPass()
442 if (auto error = ValidateConstantNull(_, inst)) return error; in ConstantPass()
445 if (auto error = ValidateSpecConstant(_, inst)) return error; in ConstantPass()
[all...]
H A Dvalidate_interfaces.cpp164 if (auto error = NumConsumedLocations( in NumConsumedLocations()
167 return error; in NumConsumedLocations()
207 // This is an error that is validated elsewhere. in NumConsumedComponents()
352 if (auto error = NumConsumedLocations(_, sub_type, &num_locations)) in GetLocationsForVariable()
353 return error; in GetLocationsForVariable()
421 if (auto error = NumConsumedLocations(_, member, &num_locations)) in GetLocationsForVariable()
422 return error; in GetLocationsForVariable()
512 if (auto error = GetLocationsForVariable( in ValidateLocations()
514 return error; in ValidateLocations()
526 if (auto error in ValidateInterfaces()
[all...]
H A Dvalidate_memory.cpp343 if (auto error = ValidateMemoryScope(_, inst, available_scope)) in CheckMemoryAccess()
344 return error; in CheckMemoryAccess()
362 if (auto error = ValidateMemoryScope(_, inst, visible_scope)) return error; in CheckMemoryAccess()
902 if (auto error = CheckMemoryAccess(_, inst, 3)) return error; in ValidateLoad()
1021 if (auto error = CheckMemoryAccess(_, inst, 2)) return error; in ValidateStore()
1044 if (auto error = CheckMemoryAccess(_, inst, first_access_index)) in ValidateCopyMemoryMemoryAccess()
1045 return error; in ValidateCopyMemoryMemoryAccess()
[all...]
H A Dvalidate_cfg.cpp442 /// Constructs an error message for construct validation errors
451 // TODO(umar): Add header block for continue constructs to error message in ConstructErrorString()
558 if (auto error = FindCaseFallThrough(_, target_block, &case_fall_through, in StructuredSwitchChecks()
560 return error; in StructuredSwitchChecks()
659 // Mark the upcoming blocks as seen now, but only error out if this block in ValidateStructuredSelections()
818 if (auto error = in StructuredControlFlowChecks()
820 return error; in StructuredControlFlowChecks()
825 if (auto error = ValidateStructuredSelections(_, postorder)) { in StructuredControlFlowChecks()
826 return error; in StructuredControlFlowChecks()
930 if (auto error in PerformCfgChecks()
[all...]
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/
H A Dspan.go58 ToPosition(offset int) (int, int, error)
60 ToOffset(line, col int) (int, error)
121 func (s *Span) MarshalJSON() ([]byte, error) { return json.Marshal(&s.v) }
122 func (s *Span) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &s.v) }
127 func (p *Point) MarshalJSON() ([]byte, error) { return json.Marshal(&p.v) }
128 func (p *Point) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &p.v) }
230 func (s Span) WithPosition(c Converter) (Span, error) {
237 func (s Span) WithOffset(c Converter) (Span, error) {
244 func (s Span) WithAll(c Converter) (Span, error) {
251 func (s *Span) update(c Converter, withPos, withOffset bool) error {
[all...]
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/export_to_sheets/
H A Dmain.go63 func run() error {
197 func mapToList(indices map[string]int, values map[string]interface{}) ([]interface{}, error) {
213 func countLines(data []byte) (int, error) {
250 func fetchRow(srv *sheets.Service, spreadsheet *sheets.Spreadsheet, sheet *sheets.Sheet, row int) ([]interface{}, error) {
260 func fetchColumn(srv *sheets.Service, spreadsheet *sheets.Spreadsheet, sheet *sheets.Sheet, row int) ([]interface{}, error) {
276 func insertRows(srv *sheets.Service, spreadsheet *sheets.Spreadsheet, sheet *sheets.Sheet, aboveRow, count int) error {
297 func createTestListSheets(srv *sheets.Service, testlists testlist.Lists) error {
345 func createSheetsService(authdir string) (*sheets.Service, error) {
378 func getClient(authdir string, config *oauth2.Config) (*http.Client, error) {
397 func getTokenFromWeb(config *oauth2.Config) (*oauth2.Token, error) {
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_constants.cpp432 if (auto error = ValidateConstantBool(_, inst)) return error; in ConstantPass()
436 if (auto error = ValidateConstantComposite(_, inst)) return error; in ConstantPass()
439 if (auto error = ValidateConstantSampler(_, inst)) return error; in ConstantPass()
442 if (auto error = ValidateConstantNull(_, inst)) return error; in ConstantPass()
445 if (auto error = ValidateSpecConstant(_, inst)) return error; in ConstantPass()
[all...]
H A Dvalidate_interfaces.cpp164 if (auto error = NumConsumedLocations( in NumConsumedLocations()
167 return error; in NumConsumedLocations()
207 // This is an error that is validated elsewhere. in NumConsumedComponents()
352 if (auto error = NumConsumedLocations(_, sub_type, &num_locations)) in GetLocationsForVariable()
353 return error; in GetLocationsForVariable()
421 if (auto error = NumConsumedLocations(_, member, &num_locations)) in GetLocationsForVariable()
422 return error; in GetLocationsForVariable()
512 if (auto error = GetLocationsForVariable( in ValidateLocations()
514 return error; in ValidateLocations()
526 if (auto error in ValidateInterfaces()
[all...]
H A Dvalidate_memory.cpp343 if (auto error = ValidateMemoryScope(_, inst, available_scope)) in CheckMemoryAccess()
344 return error; in CheckMemoryAccess()
362 if (auto error = ValidateMemoryScope(_, inst, visible_scope)) return error; in CheckMemoryAccess()
902 if (auto error = CheckMemoryAccess(_, inst, 3)) return error; in ValidateLoad()
1021 if (auto error = CheckMemoryAccess(_, inst, 2)) return error; in ValidateStore()
1044 if (auto error = CheckMemoryAccess(_, inst, first_access_index)) in ValidateCopyMemoryMemoryAccess()
1045 return error; in ValidateCopyMemoryMemoryAccess()
[all...]
H A Dvalidate_cfg.cpp442 /// Constructs an error message for construct validation errors
451 // TODO(umar): Add header block for continue constructs to error message in ConstructErrorString()
558 if (auto error = FindCaseFallThrough(_, target_block, &case_fall_through, in StructuredSwitchChecks()
560 return error; in StructuredSwitchChecks()
659 // Mark the upcoming blocks as seen now, but only error out if this block in ValidateStructuredSelections()
818 if (auto error = in StructuredControlFlowChecks()
820 return error; in StructuredControlFlowChecks()
825 if (auto error = ValidateStructuredSelections(_, postorder)) { in StructuredControlFlowChecks()
826 return error; in StructuredControlFlowChecks()
930 if (auto error in PerformCfgChecks()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
H A Dspan.go58 ToPosition(offset int) (int, int, error)
60 ToOffset(line, col int) (int, error)
121 func (s *Span) MarshalJSON() ([]byte, error) { return json.Marshal(&s.v) }
122 func (s *Span) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &s.v) }
127 func (p *Point) MarshalJSON() ([]byte, error) { return json.Marshal(&p.v) }
128 func (p *Point) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &p.v) }
230 func (s Span) WithPosition(c Converter) (Span, error) {
237 func (s Span) WithOffset(c Converter) (Span, error) {
244 func (s Span) WithAll(c Converter) (Span, error) {
251 func (s *Span) update(c Converter, withPos, withOffset bool) error {
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcsrmbcs.cpp118 charValue(0), index(-1), nextIndex(0), error(FALSE), done(FALSE) in IteratedChar()
128 error = FALSE;
160 if (iter.error) { in match_mbcs()
246 it->error = FALSE; in nextChar()
262 // else we'll handle the error later. in nextChar()
266 it->error = TRUE; in nextChar()
299 it->error = FALSE; in nextChar()
316 // else we'll handle the error later. in nextChar()
321 it->error = TRUE; in nextChar()
335 it->error in nextChar()
[all...]
/third_party/spirv-tools/source/val/
H A Dvalidate_constants.cpp434 if (auto error = ValidateConstantBool(_, inst)) return error; in ConstantPass()
438 if (auto error = ValidateConstantComposite(_, inst)) return error; in ConstantPass()
441 if (auto error = ValidateConstantSampler(_, inst)) return error; in ConstantPass()
444 if (auto error = ValidateConstantNull(_, inst)) return error; in ConstantPass()
447 if (auto error = ValidateSpecConstant(_, inst)) return error; in ConstantPass()
[all...]
H A Dvalidate_cfg.cpp448 /// Constructs an error message for construct validation errors
457 // TODO(umar): Add header block for continue constructs to error message in ConstructErrorString()
565 if (auto error = FindCaseFallThrough(_, target_block, &case_fall_through, in StructuredSwitchChecks()
567 return error; in StructuredSwitchChecks()
666 // Mark the upcoming blocks as seen now, but only error out if this block in ValidateStructuredSelections()
864 if (auto error = in StructuredControlFlowChecks()
866 return error; in StructuredControlFlowChecks()
871 if (auto error = ValidateStructuredSelections(_, postorder)) { in StructuredControlFlowChecks()
872 return error; in StructuredControlFlowChecks()
997 if (auto error in PerformCfgChecks()
[all...]
/third_party/spirv-tools/utils/vscode/src/lsp/span/
H A Dspan.go58 ToPosition(offset int) (int, int, error)
60 ToOffset(line, col int) (int, error)
121 func (s *Span) MarshalJSON() ([]byte, error) { return json.Marshal(&s.v) }
122 func (s *Span) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &s.v) }
127 func (p *Point) MarshalJSON() ([]byte, error) { return json.Marshal(&p.v) }
128 func (p *Point) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &p.v) }
230 func (s Span) WithPosition(c Converter) (Span, error) {
237 func (s Span) WithOffset(c Converter) (Span, error) {
244 func (s Span) WithAll(c Converter) (Span, error) {
251 func (s *Span) update(c Converter, withPos, withOffset bool) error {
[all...]
/third_party/glslang/glslang/HLSL/
H A DhlslParseHelper.cpp138 infoSink.info << sourceLoc.getFilenameStr() << "(" << sourceLoc.line << "): error at column " << sourceLoc.column in parseShaderStrings()
191 error(loc, "unimplemented: structure type in image or buffer", "", ""); in getLayoutFromTxType()
211 error(loc, "unknown basic type in image format", "", ""); in getLayoutFromTxType()
217 // Both test and if necessary, spit out an error, to see if the node is really
220 // Returns true if there was an error.
231 error(loc, "operator[] on a non-RW texture must be an r-value", "", ""); in lValueErrorCheck()
253 // Most things are passed through unmodified, except for error checking.
430 // For partial writes, an error is generated. in handleLvalue()
440 error(loc, "unimplemented: partial image updates", "", ""); in handleLvalue()
569 // Returns true if there is no error
[all...]
/third_party/python/Python/
H A Dcontext.c221 goto error; in PyContextVar_Get()
252 error: in PyContextVar_Get()
918 goto error; in contextvar_tp_repr()
923 goto error; in contextvar_tp_repr()
927 goto error; in contextvar_tp_repr()
933 goto error; in contextvar_tp_repr()
938 goto error; in contextvar_tp_repr()
942 goto error; in contextvar_tp_repr()
949 goto error; in contextvar_tp_repr()
953 goto error; in contextvar_tp_repr()
[all...]
/third_party/FreeBSD/sys/dev/usb/storage/
H A Dumass.c454 int error; member
813 ret.error = BUS_PROBE_GENERIC; in umass_probe_proto()
845 ret.error = ENXIO; in umass_probe_proto()
850 ret.error = ENXIO; in umass_probe_proto()
907 return (temp.error); in umass_probe()
1211 umass_tr_error(struct usb_xfer *xfer, usb_error_t error) in umass_tr_error() argument
1215 if (error != USB_ERR_CANCELLED) { in umass_tr_error()
1216 DPRINTF_UMASS(sc, UDMASS_GEN, "transfer error, %s -> " in umass_tr_error()
1217 "reset\n", usbd_errstr(error)); in umass_tr_error()
1275 umass_t_bbb_reset1_callback(struct usb_xfer *xfer, usb_error_t error) in umass_t_bbb_reset1_callback() argument
1325 umass_t_bbb_reset2_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_bbb_reset2_callback() argument
1332 umass_t_bbb_reset3_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_bbb_reset3_callback() argument
1339 umass_t_bbb_data_clear_stall_callback(struct usb_xfer *xfer, uint8_t next_xfer, uint8_t stall_xfer, usb_error_t error) umass_t_bbb_data_clear_stall_callback() argument
1363 umass_t_bbb_command_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_bbb_command_callback() argument
1451 umass_t_bbb_data_callback(struct usb_xfer *xfer, usb_error_t error, uint8_t xfer_index) umass_t_bbb_data_callback() argument
1500 umass_t_bbb_data_read_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_bbb_data_read_callback() argument
1506 umass_t_bbb_data_rd_cs_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_bbb_data_rd_cs_callback() argument
1513 umass_t_bbb_data_write_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_bbb_data_write_callback() argument
1519 umass_t_bbb_data_wr_cs_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_bbb_data_wr_cs_callback() argument
1526 umass_t_bbb_status_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_bbb_status_callback() argument
1733 umass_t_cbi_reset1_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_reset1_callback() argument
1804 umass_t_cbi_reset2_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_reset2_callback() argument
1811 umass_t_cbi_reset3_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_reset3_callback() argument
1823 umass_t_cbi_reset4_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_reset4_callback() argument
1830 umass_t_cbi_data_clear_stall_callback(struct usb_xfer *xfer, uint8_t next_xfer, uint8_t stall_xfer, usb_error_t error) umass_t_cbi_data_clear_stall_callback() argument
1858 umass_t_cbi_command_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_command_callback() argument
1938 umass_t_cbi_data_read_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_data_read_callback() argument
1987 umass_t_cbi_data_rd_cs_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_data_rd_cs_callback() argument
1994 umass_t_cbi_data_write_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_data_write_callback() argument
2043 umass_t_cbi_data_wr_cs_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_data_wr_cs_callback() argument
2050 umass_t_cbi_status_callback(struct usb_xfer *xfer, usb_error_t error) umass_t_cbi_status_callback() argument
[all...]
/third_party/cups-filters/filter/pdftopdf/
H A Dpdftopdf.cc29 static void error(const char *fmt,...) // {{{ in error() function
172 error("Unsupported output-order value %s, using 'normal'!",val); in ppdDefaultOrder()
383 error("Bad value (%d) for orientation-requested, using 0 degrees", in getParameters()
476 error("Unsupported sides value %s, using sides=one-sided!",val); in getParameters()
484 error("Unsupported number-up value %d, using number-up=1!",nup); in getParameters()
494 error("Unsupported number-up-layout %s, using number-up-layout=lrtb!",val); in getParameters()
503 error("Unsupported page-border value %s, using page-border=none!",val); in getParameters()
545 error("Unsupported page-set value %s, using page-set=all!",val); in getParameters()
572 error("Unsupported booklet value %s, using booklet=off!",val); in getParameters()
578 error("Unsupporte in getParameters()
[all...]
/base/security/access_token/interfaces/kits/cj/accesstoken/src/
H A Dability_access_ctrl_ffi.cpp39 auto error = AtManagerImpl::GrantUserGrantedPermission(tokenID, cPermissionName, permissionFlags); in FfiOHOSAbilityAccessCtrlGrantUserGrantedPermission() local
40 return error; in FfiOHOSAbilityAccessCtrlGrantUserGrantedPermission()
47 auto error = AtManagerImpl::RevokeUserGrantedPermission(tokenID, cPermissionName, permissionFlags); in FfiOHOSAbilityAccessCtrlRevokeUserGrantedPermission() local
48 return error; in FfiOHOSAbilityAccessCtrlRevokeUserGrantedPermission()

Completed in 30 milliseconds

1...<<51525354555657585960>>...345